libt3widget
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups
dummywidget.h
1 /* Copyright (C) 2011 G.P. Halkes
2  This program is free software: you can redistribute it and/or modify
3  it under the terms of the GNU General Public License version 3, as
4  published by the Free Software Foundation.
5 
6  This program is distributed in the hope that it will be useful,
7  but WITHOUT ANY WARRANTY; without even the implied warranty of
8  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9  GNU General Public License for more details.
10 
11  You should have received a copy of the GNU General Public License
12  along with this program. If not, see <http://www.gnu.org/licenses/>.
13 */
14 #ifndef T3_WIDGET_DUMMYWIDGET_H
15 #define T3_WIDGET_DUMMYWIDGET_H
16 
17 #include <t3widget/widgets/widget.h>
18 
19 namespace t3_widget {
20 
26 class T3_WIDGET_API dummy_widget_t : public widget_t {
27  public:
28  virtual bool process_key(key_t key);
29  virtual bool resize(optint height, optint width, optint top, optint left);
30  virtual void update_contents(void);
31  virtual void show(void);
32  virtual void hide(void);
33  virtual void set_position(optint top, optint left);
34  virtual bool set_size(optint height, optint width);
35 
36  virtual t3_window_t *get_base_window(void);
37 };
38 
39 }; // namespace
40 #endif
A widget that does not actually show anything on screen.
Definition: dummywidget.h:26
long key_t
Integer type holding a single key symbol.
Definition: key.h:24
Base class for widgets.
Definition: widget.h:24
Class defining values with a separate validity check.
Definition: util.h:29