-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathC_GTK_Window.hpp
51 lines (36 loc) · 1.13 KB
/
C_GTK_Window.hpp
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
49
50
51
//////////////////////////////////////////////////////////////////////////////////
// [ GTK_Window_Class_Header ]
//////////////////////////////////////////////////////////////////////////////////
//
// WINDOW
//
// [::Last modi: 26.10.16 L.ey (µ~)::]
//
//
#ifndef _C_GTK_WINDOW_H_
#define _C_GTK_WINDOW_H_
#include <gtk/gtk.h>
//////////////////////////////////////////////////////////////////////////////////
// CONSTANT
//////////////////////////////////////////////////////////////////////////////////
const int C_GTK_WINDOW_ERROR = 0x00;
const int C_GTK_WINDOW_READY = 0x01;
//////////////////////////////////////////////////////////////////////////////////
// STRUCT
//////////////////////////////////////////////////////////////////////////////////
class C_GTK_Window {
public:
C_GTK_Window();
~C_GTK_Window();
GtkWidget* create();
int setCaption(const gchar *title);
int setSize(int x, int y);
int setBackground(const GdkRGBA *color);
GtkWidget* getWindow();
int max();
int min();
private:
GtkWidget* pwindow;
int status;
};
#endif // _C_WINDOW_H_