]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - libs/gtkutil/widget.h
Merge commit '2de8ee725b2a6e54e21d5e217ae453ee115b913a' into garux-merge
[xonotic/netradiant.git] / libs / gtkutil / widget.h
1 /*
2    Copyright (C) 2001-2006, William Joseph.
3    All Rights Reserved.
4
5    This file is part of GtkRadiant.
6
7    GtkRadiant is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    GtkRadiant is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GtkRadiant; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21
22 #if !defined( INCLUDED_GTKUTIL_WIDGET_H )
23 #define INCLUDED_GTKUTIL_WIDGET_H
24
25 #include <list>
26 #include <uilib/uilib.h>
27 #include <gdk/gdk.h>
28 #include "generic/callback.h"
29 #include "warnings.h"
30 #include "debugging/debugging.h"
31 #include "property.h"
32
33 inline bool widget_is_visible( GtkWidget* widget ){
34         return GTK_WIDGET_VISIBLE( widget ) != FALSE;
35 }
36
37 inline void widget_set_visible( GtkWidget* widget, bool show ){
38         if ( show ) {
39                 /* workaround for gtk 2.24 issue: not displayed glwidget after toggle */
40                 GtkWidget* glwidget = GTK_WIDGET( g_object_get_data( G_OBJECT( widget ), "glwidget" ) );
41                 if ( glwidget ){
42                         //if ( widget_is_visible( glwidget ) )
43                                 //globalOutputStream() << "glwidget have been already visible :0\n"; /* is not hidden aswell, according to this */
44                         gtk_widget_hide( glwidget );
45                         gtk_widget_show( glwidget );
46                 }
47                 gtk_widget_show( widget );
48         }
49         else
50         {
51                 gtk_widget_hide( widget );
52         }
53 }
54
55 class ToggleItem {
56     Callback<void(const Callback<void(bool)> &)> m_exportCallback;
57     typedef std::list<Callback<void(bool)>> ImportCallbacks;
58     ImportCallbacks m_importCallbacks;
59 public:
60     ToggleItem(const Callback<void(const Callback<void(bool)> &)> &exportCallback) : m_exportCallback(exportCallback)
61     {
62     }
63
64     void update()
65     {
66         for (ImportCallbacks::iterator i = m_importCallbacks.begin(); i != m_importCallbacks.end(); ++i) {
67             m_exportCallback(*i);
68         }
69     }
70
71     void addCallback(const Callback<void(bool)> &callback)
72     {
73         m_importCallbacks.push_back(callback);
74         m_exportCallback(callback);
75     }
76
77     typedef MemberCaller<ToggleItem, void(const Callback<void(bool)> &), &ToggleItem::addCallback> AddCallbackCaller;
78 };
79
80 class ToggleShown {
81     bool m_shownDeferred;
82
83     ToggleShown(const ToggleShown &other); // NOT COPYABLE
84     ToggleShown &operator=(const ToggleShown &other); // NOT ASSIGNABLE
85
86     static gboolean notify_visible(ui::Widget widget, gpointer dummy, ToggleShown *self);
87
88     static gboolean destroy(ui::Widget widget, ToggleShown *self);
89
90 public:
91     ui::Widget m_widget;
92     ToggleItem m_item;
93
94     ToggleShown(bool shown)
95             : m_shownDeferred(shown), m_widget(ui::null), m_item(ActiveCaller(*this))
96     {
97     }
98
99     void update();
100
101     bool active() const;
102
103     void exportActive(const Callback<void(bool)> &importCallback);
104
105     typedef MemberCaller<ToggleShown, void(const Callback<void(bool)> &), &ToggleShown::exportActive> ActiveCaller;
106
107     void set(bool shown);
108
109     void toggle();
110
111     typedef MemberCaller<ToggleShown, void(), &ToggleShown::toggle> ToggleCaller;
112
113     void connect(ui::Widget widget);
114 };
115
116
117 void widget_queue_draw(ui::Widget &widget);
118
119 typedef ReferenceCaller<ui::Widget, void(), widget_queue_draw> WidgetQueueDrawCaller;
120
121
122 void widget_make_default(ui::Widget widget);
123
124 class WidgetFocusPrinter {
125     const char *m_name;
126
127     static gboolean focus_in(ui::Widget widget, GdkEventFocus *event, WidgetFocusPrinter *self);
128
129     static gboolean focus_out(ui::Widget widget, GdkEventFocus *event, WidgetFocusPrinter *self);
130
131 public:
132     WidgetFocusPrinter(const char *name) : m_name(name)
133     {
134     }
135
136     void connect(ui::Widget widget);
137 };
138
139 #endif