xref: /netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-kde/hellowindow.h (revision 946379e7b37692fc43f68eb0d1c10daa0a7f3b6c)
1*946379e7Schristos // Example for use of GNU gettext.
2*946379e7Schristos // Copyright (C) 2003 Free Software Foundation, Inc.
3*946379e7Schristos // This file is published under the GNU General Public License.
4*946379e7Schristos 
5*946379e7Schristos /* Declare KMainWindow.  */
6*946379e7Schristos #include <kmainwindow.h>
7*946379e7Schristos /* Declare QPushButton.  */
8*946379e7Schristos #include <qpushbutton.h>
9*946379e7Schristos 
10*946379e7Schristos // The main window widget.
11*946379e7Schristos 
12*946379e7Schristos class HelloMainWindow : public KMainWindow
13*946379e7Schristos {
14*946379e7Schristos   Q_OBJECT
15*946379e7Schristos public:
16*946379e7Schristos   HelloMainWindow (QWidget * parent = NULL, const char * name = NULL);
17*946379e7Schristos   ~HelloMainWindow ();
18*946379e7Schristos public:
19*946379e7Schristos   QPushButton *button;
20*946379e7Schristos };
21