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.
|
|
|
#ifndef test_kstatusbar_h
|
|
|
|
#define test_kstatusbar_h
|
|
|
|
|
|
|
|
#include <kmenubar.h>
|
|
|
|
#include <tqpopupmenu.h>
|
|
|
|
#include <kstatusbar.h>
|
|
|
|
#include <kmainwindow.h>
|
|
|
|
|
|
|
|
class TQMultiLineEdit;
|
|
|
|
|
|
|
|
class testWindow : public KMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
testWindow (TQWidget *parent=0, const char *name=0);
|
|
|
|
~testWindow ();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void slotPress(int i);
|
|
|
|
void slotClick(int i);
|
|
|
|
void slotMenu(int i);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
TQPopupMenu *fileMenu;
|
|
|
|
TQPopupMenu *smenu;
|
|
|
|
KMenuBar *menuBar;
|
|
|
|
KStatusBar *statusbar;
|
|
|
|
bool insert;
|
|
|
|
TQMultiLineEdit *widget;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|