You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
587 B
34 lines
587 B
15 years ago
|
#ifndef test_kstatusbar_h
|
||
|
#define test_kstatusbar_h
|
||
|
|
||
|
#include <kmenubar.h>
|
||
14 years ago
|
#include <tqpopupmenu.h>
|
||
15 years ago
|
#include <kstatusbar.h>
|
||
|
#include <kmainwindow.h>
|
||
|
|
||
14 years ago
|
class TQMultiLineEdit;
|
||
15 years ago
|
|
||
|
class testWindow : public KMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
14 years ago
|
testWindow (TQWidget *parent=0, const char *name=0);
|
||
15 years ago
|
~testWindow ();
|
||
|
|
||
|
public slots:
|
||
|
void slotPress(int i);
|
||
|
void slotClick(int i);
|
||
|
void slotMenu(int i);
|
||
|
|
||
|
protected:
|
||
14 years ago
|
TQPopupMenu *fileMenu;
|
||
|
TQPopupMenu *smenu;
|
||
15 years ago
|
KMenuBar *menuBar;
|
||
|
KStatusBar *statusbar;
|
||
|
bool insert;
|
||
14 years ago
|
TQMultiLineEdit *widget;
|
||
15 years ago
|
};
|
||
|
#endif
|
||
|
|