1/********************************************************************************
2** Form generated from reading UI file 'bookmarkdialog.ui'
3**
4** Created by: Qt User Interface Compiler version 5.15.9
5**
6** WARNING! All changes made in this file will be lost when recompiling UI file!
7********************************************************************************/
8
9#ifndef UI_BOOKMARKDIALOG_H
10#define UI_BOOKMARKDIALOG_H
11
12#include <QtCore/QVariant>
13#include <QtWidgets/QApplication>
14#include <QtWidgets/QComboBox>
15#include <QtWidgets/QDialog>
16#include <QtWidgets/QDialogButtonBox>
17#include <QtWidgets/QFrame>
18#include <QtWidgets/QHBoxLayout>
19#include <QtWidgets/QHeaderView>
20#include <QtWidgets/QLabel>
21#include <QtWidgets/QLineEdit>
22#include <QtWidgets/QPushButton>
23#include <QtWidgets/QToolButton>
24#include <QtWidgets/QTreeView>
25#include <QtWidgets/QVBoxLayout>
26
27QT_BEGIN_NAMESPACE
28
29class Ui_BookmarkDialog
30{
31public:
32 QVBoxLayout *verticalLayout_3;
33 QHBoxLayout *horizontalLayout;
34 QVBoxLayout *verticalLayout_2;
35 QLabel *label;
36 QLabel *label_2;
37 QVBoxLayout *verticalLayout;
38 QLineEdit *bookmarkEdit;
39 QComboBox *bookmarkFolders;
40 QHBoxLayout *horizontalLayout_3;
41 QToolButton *toolButton;
42 QFrame *line;
43 QTreeView *treeView;
44 QHBoxLayout *horizontalLayout_4;
45 QPushButton *newFolderButton;
46 QDialogButtonBox *buttonBox;
47
48 void setupUi(QDialog *BookmarkDialog)
49 {
50 if (BookmarkDialog->objectName().isEmpty())
51 BookmarkDialog->setObjectName(QString::fromUtf8(str: "BookmarkDialog"));
52 BookmarkDialog->resize(w: 450, h: 133);
53 QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
54 sizePolicy.setHorizontalStretch(0);
55 sizePolicy.setVerticalStretch(0);
56 sizePolicy.setHeightForWidth(BookmarkDialog->sizePolicy().hasHeightForWidth());
57 BookmarkDialog->setSizePolicy(sizePolicy);
58 verticalLayout_3 = new QVBoxLayout(BookmarkDialog);
59 verticalLayout_3->setObjectName(QString::fromUtf8(str: "verticalLayout_3"));
60 horizontalLayout = new QHBoxLayout();
61 horizontalLayout->setObjectName(QString::fromUtf8(str: "horizontalLayout"));
62 verticalLayout_2 = new QVBoxLayout();
63 verticalLayout_2->setObjectName(QString::fromUtf8(str: "verticalLayout_2"));
64 label = new QLabel(BookmarkDialog);
65 label->setObjectName(QString::fromUtf8(str: "label"));
66
67 verticalLayout_2->addWidget(label);
68
69 label_2 = new QLabel(BookmarkDialog);
70 label_2->setObjectName(QString::fromUtf8(str: "label_2"));
71
72 verticalLayout_2->addWidget(label_2);
73
74
75 horizontalLayout->addLayout(layout: verticalLayout_2);
76
77 verticalLayout = new QVBoxLayout();
78 verticalLayout->setObjectName(QString::fromUtf8(str: "verticalLayout"));
79 bookmarkEdit = new QLineEdit(BookmarkDialog);
80 bookmarkEdit->setObjectName(QString::fromUtf8(str: "bookmarkEdit"));
81
82 verticalLayout->addWidget(bookmarkEdit);
83
84 bookmarkFolders = new QComboBox(BookmarkDialog);
85 bookmarkFolders->setObjectName(QString::fromUtf8(str: "bookmarkFolders"));
86
87 verticalLayout->addWidget(bookmarkFolders);
88
89
90 horizontalLayout->addLayout(layout: verticalLayout);
91
92
93 verticalLayout_3->addLayout(layout: horizontalLayout);
94
95 horizontalLayout_3 = new QHBoxLayout();
96 horizontalLayout_3->setObjectName(QString::fromUtf8(str: "horizontalLayout_3"));
97 toolButton = new QToolButton(BookmarkDialog);
98 toolButton->setObjectName(QString::fromUtf8(str: "toolButton"));
99 toolButton->setMinimumSize(QSize(25, 20));
100
101 horizontalLayout_3->addWidget(toolButton);
102
103 line = new QFrame(BookmarkDialog);
104 line->setObjectName(QString::fromUtf8(str: "line"));
105 line->setFrameShape(QFrame::HLine);
106 line->setFrameShadow(QFrame::Sunken);
107
108 horizontalLayout_3->addWidget(line);
109
110
111 verticalLayout_3->addLayout(layout: horizontalLayout_3);
112
113 treeView = new QTreeView(BookmarkDialog);
114 treeView->setObjectName(QString::fromUtf8(str: "treeView"));
115 QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Ignored);
116 sizePolicy1.setHorizontalStretch(0);
117 sizePolicy1.setVerticalStretch(0);
118 sizePolicy1.setHeightForWidth(treeView->sizePolicy().hasHeightForWidth());
119 treeView->setSizePolicy(sizePolicy1);
120 treeView->setUniformRowHeights(true);
121 treeView->setAllColumnsShowFocus(true);
122 treeView->setHeaderHidden(true);
123
124 verticalLayout_3->addWidget(treeView);
125
126 horizontalLayout_4 = new QHBoxLayout();
127 horizontalLayout_4->setObjectName(QString::fromUtf8(str: "horizontalLayout_4"));
128 newFolderButton = new QPushButton(BookmarkDialog);
129 newFolderButton->setObjectName(QString::fromUtf8(str: "newFolderButton"));
130
131 horizontalLayout_4->addWidget(newFolderButton);
132
133 buttonBox = new QDialogButtonBox(BookmarkDialog);
134 buttonBox->setObjectName(QString::fromUtf8(str: "buttonBox"));
135 buttonBox->setOrientation(Qt::Horizontal);
136 buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
137
138 horizontalLayout_4->addWidget(buttonBox);
139
140
141 verticalLayout_3->addLayout(layout: horizontalLayout_4);
142
143
144 retranslateUi(BookmarkDialog);
145 QObject::connect(sender: buttonBox, SIGNAL(accepted()), receiver: BookmarkDialog, SLOT(accept()));
146 QObject::connect(sender: buttonBox, SIGNAL(rejected()), receiver: BookmarkDialog, SLOT(reject()));
147
148 QMetaObject::connectSlotsByName(o: BookmarkDialog);
149 } // setupUi
150
151 void retranslateUi(QDialog *BookmarkDialog)
152 {
153 BookmarkDialog->setWindowTitle(QCoreApplication::translate(context: "BookmarkDialog", key: "Add Bookmark", disambiguation: nullptr));
154 label->setText(QCoreApplication::translate(context: "BookmarkDialog", key: "Bookmark:", disambiguation: nullptr));
155 label_2->setText(QCoreApplication::translate(context: "BookmarkDialog", key: "Add in Folder:", disambiguation: nullptr));
156 toolButton->setText(QCoreApplication::translate(context: "BookmarkDialog", key: "+", disambiguation: nullptr));
157 newFolderButton->setText(QCoreApplication::translate(context: "BookmarkDialog", key: "New Folder", disambiguation: nullptr));
158 } // retranslateUi
159
160};
161
162namespace Ui {
163 class BookmarkDialog: public Ui_BookmarkDialog {};
164} // namespace Ui
165
166QT_END_NAMESPACE
167
168#endif // UI_BOOKMARKDIALOG_H
169

source code of qttools/src/assistant/assistant/.uic/ui_bookmarkdialog.h