summaryrefslogtreecommitdiffstats
path: root/src/client/gui/OO_FLTK.cpp
blob: 9dc088d4aefea31af092298c74d158218f7f3822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include "OO_FLTK.hpp"
#include "../../const_vars.hpp"

BoxOutline::BoxOutline(int x, int y, int w, int h, const char *lb)
	: Fl_Box(x, y, w, h, lb)
{
	box(FL_FLAT_BOX);
	color(FL_WHITE);
}

ChatInput::ChatInput(int x, int y, int w, int h, const char *lb)
	: Fl_Input(x, y, w, h, lb)
{
	callback(CallbackFunction, 0);
	when(FL_WHEN_ENTER_KEY | FL_WHEN_NOT_CHANGED);

	box(FL_FLAT_BOX);
	color(FL_BLACK);

	cursor_color(FL_WHITE);
	textfont(FL_COURIER);
	textsize(20);
	textcolor(FL_WHITE);

	maximum_size(max_usermsg_len);
}

void ChatInput::SendMessage(void *user)
{
	if(strlen(value()) < 1)
		return;

	printf("SendMessage\n");
	// send message to server
	value("");
	take_focus();
}

ChatBaseOutput::ChatBaseOutput(int x, int y, int w, int h, const char *lb)
	: Fl_Multiline_Output(x, y, w, h, lb)
{
	box(FL_FLAT_BOX);
	color(FL_BLACK);

	textfont(FL_COURIER);
	textsize(20);
	textcolor(FL_WHITE);
}