1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
---|---|
2 | // |
3 | // SPDX-License-Identifier: GPL-3.0-or-later |
4 | |
5 | #ifndef ABSTRACTMAINWINDOW_H |
6 | #define ABSTRACTMAINWINDOW_H |
7 | |
8 | #include <string> |
9 | #include <list> |
10 | class AbstractNav; |
11 | class AbstractNavAction; |
12 | class AbstractMenuBar; |
13 | class AbstractMainWindowPrivate; |
14 | namespace WindowContainer { |
15 | |
16 | } // namespace Container |
17 | |
18 | class AbstractMainWindow |
19 | { |
20 | AbstractMainWindowPrivate *const d; |
21 | public: |
22 | explicit AbstractMainWindow(void *qMainWindow); |
23 | virtual ~AbstractMainWindow(); |
24 | void *qMainWindow(); |
25 | }; |
26 | |
27 | #endif // ABSTRACTMAINWINDOW_H |
28 |