CuteLogger
Fast and simple logging solution for Qt based applications
ui_recentdock.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'recentdock.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.9.4
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_RECENTDOCK_H
10 #define UI_RECENTDOCK_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QAction>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QButtonGroup>
16 #include <QtWidgets/QDockWidget>
17 #include <QtWidgets/QHeaderView>
18 #include <QtWidgets/QListView>
19 #include <QtWidgets/QVBoxLayout>
20 #include <QtWidgets/QWidget>
21 #include "widgets/lineeditclear.h"
22 
23 QT_BEGIN_NAMESPACE
24 
25 class Ui_RecentDock
26 {
27 public:
28  QWidget *dockWidgetContents;
29  QVBoxLayout *verticalLayout;
30  LineEditClear *lineEdit;
31  QListView *listWidget;
32 
33  void setupUi(QDockWidget *RecentDock)
34  {
35  if (RecentDock->objectName().isEmpty())
36  RecentDock->setObjectName(QStringLiteral("RecentDock"));
37  RecentDock->resize(396, 296);
38  RecentDock->setMinimumSize(QSize(150, 112));
39  QIcon icon;
40  QString iconThemeName = QStringLiteral("document-open-recent");
41  if (QIcon::hasThemeIcon(iconThemeName)) {
42  icon = QIcon::fromTheme(iconThemeName);
43  } else {
44  icon.addFile(QStringLiteral(":/icons/oxygen/32x32/actions/document-open-recent.png"), QSize(), QIcon::Normal, QIcon::Off);
45  }
46  RecentDock->setWindowIcon(icon);
47  dockWidgetContents = new QWidget();
48  dockWidgetContents->setObjectName(QStringLiteral("dockWidgetContents"));
49  verticalLayout = new QVBoxLayout(dockWidgetContents);
50  verticalLayout->setSpacing(0);
51  verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
52  verticalLayout->setContentsMargins(0, 0, 0, 0);
53  lineEdit = new LineEditClear(dockWidgetContents);
54  lineEdit->setObjectName(QStringLiteral("lineEdit"));
55 
56  verticalLayout->addWidget(lineEdit);
57 
58  listWidget = new QListView(dockWidgetContents);
59  listWidget->setObjectName(QStringLiteral("listWidget"));
60  listWidget->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
61  listWidget->setEditTriggers(QAbstractItemView::NoEditTriggers);
62  listWidget->setAlternatingRowColors(true);
63  listWidget->setSpacing(2);
64 
65  verticalLayout->addWidget(listWidget);
66 
67  RecentDock->setWidget(dockWidgetContents);
68 
69  retranslateUi(RecentDock);
70 
71  QMetaObject::connectSlotsByName(RecentDock);
72  } // setupUi
73 
74  void retranslateUi(QDockWidget *RecentDock)
75  {
76  RecentDock->setWindowTitle(QApplication::translate("RecentDock", "Recent", Q_NULLPTR));
77 #ifndef QT_NO_TOOLTIP
78  lineEdit->setToolTip(QApplication::translate("RecentDock", "Show only files with name matching text", Q_NULLPTR));
79 #endif // QT_NO_TOOLTIP
80  lineEdit->setPlaceholderText(QApplication::translate("RecentDock", "search", Q_NULLPTR));
81  } // retranslateUi
82 
83 };
84 
85 namespace Ui {
86  class RecentDock: public Ui_RecentDock {};
87 } // namespace Ui
88 
89 QT_END_NAMESPACE
90 
91 #endif // UI_RECENTDOCK_H
Definition: addencodepresetdialog.h:24