This commit is contained in:
Chenwenxuan
2024-03-06 14:54:30 +08:00
commit edac2715f0
1525 changed files with 809982 additions and 0 deletions

25
ui/lc_centralwidget.h Normal file
View File

@@ -0,0 +1,25 @@
#ifndef LC_CENTRALWIDGET_H
#define LC_CENTRALWIDGET_H
#include <QFrame>
class QMdiArea;
/**
* a QMdiArea in a QFrame (for QMainWindow.setCentralWidget)
*/
class LC_CentralWidget : public QFrame
{
Q_OBJECT
public:
LC_CentralWidget(QWidget* parent);
QMdiArea* getMdiArea();
protected:
QMdiArea* mdi_area;
};
#endif // LC_CENTRALWIDGET_H