mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 02:42:48 +00:00
31 lines
517 B
C++
31 lines
517 B
C++
#ifndef test_kstatusbar_h
|
|
#define test_kstatusbar_h
|
|
|
|
#include <kmenubar.h>
|
|
#include <kstatusbar.h>
|
|
#include <kxmlguiwindow.h>
|
|
|
|
class QTextEdit;
|
|
|
|
class testWindow : public KXmlGuiWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
testWindow (QWidget *parent=0);
|
|
~testWindow ();
|
|
|
|
public Q_SLOTS:
|
|
void slotPress(int i);
|
|
void slotClick(int i);
|
|
void slotMenu(QAction*);
|
|
|
|
protected:
|
|
QMenu *fileMenu;
|
|
QMenu *smenu;
|
|
KMenuBar *menuBar;
|
|
KStatusBar *statusbar;
|
|
bool insert;
|
|
QTextEdit *widget;
|
|
};
|
|
#endif
|