mirror of https://gitlab.com/cppit/jucipp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
364 B
12 lines
364 B
|
10 years ago
|
#include "terminal.h"
|
||
|
|
|
||
|
|
Terminal::Terminal() {}
|
||
|
|
|
||
|
|
bool Terminal::on_motion_notify_event(GdkEventMotion* motion_event) {return false;}
|
||
|
|
bool Terminal::on_button_press_event(GdkEventButton* button_event) {return false;}
|
||
|
|
bool Terminal::on_key_press_event(GdkEventKey *event) {return false;}
|
||
|
|
|
||
|
|
size_t Terminal::print(const std::string &message, bool bold) {
|
||
|
|
return 0;
|
||
|
|
}
|