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