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
594 B
34 lines
594 B
#ifndef test_kstatusbar_h
|
|
#define test_kstatusbar_h
|
|
|
|
#include <tdemenubar.h>
|
|
#include <tqpopupmenu.h>
|
|
#include <kstatusbar.h>
|
|
#include <tdemainwindow.h>
|
|
|
|
class TQMultiLineEdit;
|
|
|
|
class testWindow : public TDEMainWindow
|
|
{
|
|
TQ_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
|
|
|