mirror of
https://gitlab.com/eql/EQL5.git
synced 2025-12-06 02:30:31 -08:00
24 lines
297 B
C++
24 lines
297 B
C++
#ifndef QT_APPLICATION_H
|
|
#define QT_APPLICATION_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainWindow();
|
|
|
|
QDockWidget* pluginWidget;
|
|
|
|
public slots:
|
|
void showPlugin();
|
|
void hidePlugin();
|
|
};
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif
|