mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 06:06:00 -06:00
15 lines
352 B
C
15 lines
352 B
C
//$ class TopWindow : Ctrl {
|
|
ImageGdk gdk_icon;
|
|
ImageGdk gdk_largeicon;
|
|
bool topmost;
|
|
|
|
enum { FULLSCREEN = 99 };
|
|
|
|
void CenterRect(Ctrl *owner);
|
|
void SetMode(int mode);
|
|
void SyncTopMost();
|
|
|
|
static gboolean StateEvent(GtkWidget *widget, GdkEventWindowState *event, gpointer user_data);
|
|
|
|
friend class Ctrl;
|
|
//$ };
|