1 | /******************************************************************************** |
2 | ** Form generated from reading UI file 'mainwindowbase.ui' |
3 | ** |
4 | ** Created by: Qt User Interface Compiler version 6.0.0 |
5 | ** |
6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! |
7 | ********************************************************************************/ |
8 | |
9 | #ifndef UI_MAINWINDOWBASE_H |
10 | #define UI_MAINWINDOWBASE_H |
11 | |
12 | #include <QtCore/QVariant> |
13 | #include <QtGui/QAction> |
14 | #include <QtWidgets/QApplication> |
15 | #include <QtWidgets/QDockWidget> |
16 | #include <QtWidgets/QHeaderView> |
17 | #include <QtWidgets/QMainWindow> |
18 | #include <QtWidgets/QMenu> |
19 | #include <QtWidgets/QMenuBar> |
20 | #include <QtWidgets/QStatusBar> |
21 | #include <QtWidgets/QTextEdit> |
22 | #include <QtWidgets/QTreeWidget> |
23 | #include <QtWidgets/QVBoxLayout> |
24 | #include <QtWidgets/QWidget> |
25 | |
26 | QT_BEGIN_NAMESPACE |
27 | |
28 | class Ui_MainWindowBase |
29 | { |
30 | public: |
31 | QAction *printAction; |
32 | QAction *quitAction; |
33 | QAction *markAction; |
34 | QAction *unmarkAction; |
35 | QAction *clearAction; |
36 | QAction *printPreviewAction; |
37 | QWidget *centralwidget; |
38 | QVBoxLayout *vboxLayout; |
39 | QTextEdit *textEdit; |
40 | QMenuBar *menubar; |
41 | QMenu *menu_Selection; |
42 | QMenu *menu_File; |
43 | QStatusBar *statusbar; |
44 | QDockWidget *dockWidget; |
45 | QWidget *dockWidgetContents; |
46 | QVBoxLayout *vboxLayout1; |
47 | QTreeWidget *fontTree; |
48 | |
49 | void setupUi(QMainWindow *MainWindowBase) |
50 | { |
51 | if (MainWindowBase->objectName().isEmpty()) |
52 | MainWindowBase->setObjectName(QString::fromUtf8("MainWindowBase" )); |
53 | MainWindowBase->resize(800, 345); |
54 | printAction = new QAction(MainWindowBase); |
55 | printAction->setObjectName(QString::fromUtf8("printAction" )); |
56 | printAction->setEnabled(false); |
57 | quitAction = new QAction(MainWindowBase); |
58 | quitAction->setObjectName(QString::fromUtf8("quitAction" )); |
59 | markAction = new QAction(MainWindowBase); |
60 | markAction->setObjectName(QString::fromUtf8("markAction" )); |
61 | unmarkAction = new QAction(MainWindowBase); |
62 | unmarkAction->setObjectName(QString::fromUtf8("unmarkAction" )); |
63 | clearAction = new QAction(MainWindowBase); |
64 | clearAction->setObjectName(QString::fromUtf8("clearAction" )); |
65 | printPreviewAction = new QAction(MainWindowBase); |
66 | printPreviewAction->setObjectName(QString::fromUtf8("printPreviewAction" )); |
67 | printPreviewAction->setEnabled(false); |
68 | centralwidget = new QWidget(MainWindowBase); |
69 | centralwidget->setObjectName(QString::fromUtf8("centralwidget" )); |
70 | vboxLayout = new QVBoxLayout(centralwidget); |
71 | #ifndef Q_OS_MAC |
72 | vboxLayout->setSpacing(6); |
73 | #endif |
74 | #ifndef Q_OS_MAC |
75 | vboxLayout->setContentsMargins(9, 9, 9, 9); |
76 | #endif |
77 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout" )); |
78 | textEdit = new QTextEdit(centralwidget); |
79 | textEdit->setObjectName(QString::fromUtf8("textEdit" )); |
80 | |
81 | vboxLayout->addWidget(textEdit); |
82 | |
83 | MainWindowBase->setCentralWidget(centralwidget); |
84 | menubar = new QMenuBar(MainWindowBase); |
85 | menubar->setObjectName(QString::fromUtf8("menubar" )); |
86 | menubar->setGeometry(QRect(0, 0, 800, 18)); |
87 | menu_Selection = new QMenu(menubar); |
88 | menu_Selection->setObjectName(QString::fromUtf8("menu_Selection" )); |
89 | menu_File = new QMenu(menubar); |
90 | menu_File->setObjectName(QString::fromUtf8("menu_File" )); |
91 | MainWindowBase->setMenuBar(menubar); |
92 | statusbar = new QStatusBar(MainWindowBase); |
93 | statusbar->setObjectName(QString::fromUtf8("statusbar" )); |
94 | MainWindowBase->setStatusBar(statusbar); |
95 | dockWidget = new QDockWidget(MainWindowBase); |
96 | dockWidget->setObjectName(QString::fromUtf8("dockWidget" )); |
97 | dockWidget->setFeatures(QDockWidget::DockWidgetFloatable|QDockWidget::DockWidgetMovable); |
98 | dockWidgetContents = new QWidget(); |
99 | dockWidgetContents->setObjectName(QString::fromUtf8("dockWidgetContents" )); |
100 | vboxLayout1 = new QVBoxLayout(dockWidgetContents); |
101 | #ifndef Q_OS_MAC |
102 | vboxLayout1->setSpacing(6); |
103 | #endif |
104 | #ifndef Q_OS_MAC |
105 | vboxLayout1->setContentsMargins(9, 9, 9, 9); |
106 | #endif |
107 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1" )); |
108 | fontTree = new QTreeWidget(dockWidgetContents); |
109 | QTreeWidgetItem *__qtreewidgetitem = new QTreeWidgetItem(); |
110 | __qtreewidgetitem->setText(0, QString::fromUtf8("1" )); |
111 | fontTree->setHeaderItem(__qtreewidgetitem); |
112 | fontTree->setObjectName(QString::fromUtf8("fontTree" )); |
113 | fontTree->setSelectionMode(QAbstractItemView::ExtendedSelection); |
114 | |
115 | vboxLayout1->addWidget(fontTree); |
116 | |
117 | dockWidget->setWidget(dockWidgetContents); |
118 | MainWindowBase->addDockWidget(Qt::LeftDockWidgetArea, dockWidget); |
119 | |
120 | menubar->addAction(menu_File->menuAction()); |
121 | menubar->addAction(menu_Selection->menuAction()); |
122 | menu_Selection->addAction(markAction); |
123 | menu_Selection->addAction(unmarkAction); |
124 | menu_Selection->addAction(clearAction); |
125 | menu_File->addAction(printPreviewAction); |
126 | menu_File->addAction(printAction); |
127 | menu_File->addAction(quitAction); |
128 | |
129 | retranslateUi(MainWindowBase); |
130 | |
131 | QMetaObject::connectSlotsByName(MainWindowBase); |
132 | } // setupUi |
133 | |
134 | void retranslateUi(QMainWindow *MainWindowBase) |
135 | { |
136 | MainWindowBase->setWindowTitle(QCoreApplication::translate("MainWindowBase" , "Font Sampler" , nullptr)); |
137 | printAction->setText(QCoreApplication::translate("MainWindowBase" , "&Print..." , nullptr)); |
138 | #if QT_CONFIG(shortcut) |
139 | printAction->setShortcut(QCoreApplication::translate("MainWindowBase" , "Ctrl+P" , nullptr)); |
140 | #endif // QT_CONFIG(shortcut) |
141 | quitAction->setText(QCoreApplication::translate("MainWindowBase" , "E&xit" , nullptr)); |
142 | #if QT_CONFIG(shortcut) |
143 | quitAction->setShortcut(QCoreApplication::translate("MainWindowBase" , "Ctrl+Q" , nullptr)); |
144 | #endif // QT_CONFIG(shortcut) |
145 | markAction->setText(QCoreApplication::translate("MainWindowBase" , "&Mark" , nullptr)); |
146 | #if QT_CONFIG(shortcut) |
147 | markAction->setShortcut(QCoreApplication::translate("MainWindowBase" , "Ctrl+M" , nullptr)); |
148 | #endif // QT_CONFIG(shortcut) |
149 | unmarkAction->setText(QCoreApplication::translate("MainWindowBase" , "&Unmark" , nullptr)); |
150 | #if QT_CONFIG(shortcut) |
151 | unmarkAction->setShortcut(QCoreApplication::translate("MainWindowBase" , "Ctrl+U" , nullptr)); |
152 | #endif // QT_CONFIG(shortcut) |
153 | clearAction->setText(QCoreApplication::translate("MainWindowBase" , "&Clear" , nullptr)); |
154 | printPreviewAction->setText(QCoreApplication::translate("MainWindowBase" , "Print Preview..." , nullptr)); |
155 | menu_Selection->setTitle(QCoreApplication::translate("MainWindowBase" , "&Selection" , nullptr)); |
156 | menu_File->setTitle(QCoreApplication::translate("MainWindowBase" , "&File" , nullptr)); |
157 | dockWidget->setWindowTitle(QCoreApplication::translate("MainWindowBase" , "Available Fonts" , nullptr)); |
158 | } // retranslateUi |
159 | |
160 | }; |
161 | |
162 | namespace Ui { |
163 | class MainWindowBase: public Ui_MainWindowBase {}; |
164 | } // namespace Ui |
165 | |
166 | QT_END_NAMESPACE |
167 | |
168 | #endif // UI_MAINWINDOWBASE_H |
169 | |