blob: c6e2774f118acad30f5658f8b46d6c2a2247fdd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Example for use of GNU gettext.
// Copyright (C) 2003, 2015 Free Software Foundation, Inc.
// This file is published under the GNU General Public License.
/* Declare KMainWindow. */
#include <kmainwindow.h>
/* Declare QPushButton. */
#include <qpushbutton.h>
// The main window widget.
class HelloMainWindow : public KMainWindow
{
Q_OBJECT
public:
HelloMainWindow (QWidget * parent = NULL, const char * name = NULL);
~HelloMainWindow ();
public:
QPushButton *button;
};
|