]> vaikene.ee Git - evaf/blob - src/libs/Gui/window.h
15c426a9864b287b984035a7962e8f15ecc396cb
[evaf] / src / libs / Gui / window.h
1 /**
2 * @file Gui/window.h
3 * @brief Version information for eVaf modules
4 * @author Enar Vaikene
5 *
6 * Copyright (c) 2011 Enar Vaikene
7 *
8 * This file is part of the eVaf C++ cross-platform application development framework.
9 *
10 * This file can be used under the terms of the GNU General Public License
11 * version 3.0 as published by the Free Software Foundation and appearing in
12 * the file LICENSE included in the packaging of this file. Please review the
13 * the following information to ensure the GNU General Public License version
14 * 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
15 *
16 * Alternatively, this file may be used in accordance with the Commercial License
17 * Agreement provided with the Software.
18 */
19
20 #ifndef __GUI_WINDOW_H
21 # define __GUI_WINDOW_H
22
23 #include "libgui.h"
24
25 #include <QWidget>
26
27 namespace eVaf {
28
29 /**
30 * Common eVaf GUI library.
31 *
32 * This library contains common Graphical User Interface functions and classes for eVaf applications.
33 * This library is a required dependency for all the eVaf modules that implement elements of the GUI.
34 */
35 namespace Gui {
36
37 /**
38 * eVaf GUI window class.
39 * @code#include <Gui/Window>@endcode
40 *
41 * The Gui::Window class is a common ancestor for all the eVaf windows. eVaf applications can have different window managers
42 * that manage Gui::Window objects.
43 */
44 class GUI_EXPORT Window : public QWidget
45 {
46 Q_OBJECT
47
48 public:
49
50 Window(QWidget * parent = 0);
51
52 virtual ~Window();
53
54 };
55
56 } // namespace eVaf::Gui
57 } // namespace eVaf
58
59
60 #endif // window.h