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.11.3
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 <QtGui/QIcon>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QDockWidget>
16 #include <QtWidgets/QListView>
17 #include <QtWidgets/QVBoxLayout>
18 #include <QtWidgets/QWidget>
19 #include "widgets/lineeditclear.h"
20 
21 QT_BEGIN_NAMESPACE
22 
23 class Ui_RecentDock
24 {
25 public:
26  QWidget *dockWidgetContents;
27  QVBoxLayout *verticalLayout;
28  LineEditClear *lineEdit;
29  QListView *listWidget;
30 
31  void setupUi(QDockWidget *RecentDock)
32  {
33  if (RecentDock->objectName().isEmpty())
34  RecentDock->setObjectName(QStringLiteral("RecentDock"));
35  RecentDock->resize(396, 296);
36  RecentDock->setMinimumSize(QSize(150, 112));
37  QIcon icon;
38  QString iconThemeName = QStringLiteral("document-open-recent");
39  if (QIcon::hasThemeIcon(iconThemeName)) {
40  icon = QIcon::fromTheme(iconThemeName);
41  } else {
42  icon.addFile(QStringLiteral(":/icons/oxygen/32x32/actions/document-open-recent.png"), QSize(), QIcon::Normal, QIcon::Off);
43  }
44  RecentDock->setWindowIcon(icon);
45  dockWidgetContents = new QWidget();
46  dockWidgetContents->setObjectName(QStringLiteral("dockWidgetContents"));
47  verticalLayout = new QVBoxLayout(dockWidgetContents);
48  verticalLayout->setSpacing(0);
49  verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
50  verticalLayout->setContentsMargins(0, 0, 0, 0);
51  lineEdit = new LineEditClear(dockWidgetContents);
52  lineEdit->setObjectName(QStringLiteral("lineEdit"));
53 
54  verticalLayout->addWidget(lineEdit);
55 
56  listWidget = new QListView(dockWidgetContents);
57  listWidget->setObjectName(QStringLiteral("listWidget"));
58  listWidget->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
59  listWidget->setEditTriggers(QAbstractItemView::NoEditTriggers);
60  listWidget->setAlternatingRowColors(true);
61  listWidget->setSpacing(2);
62 
63  verticalLayout->addWidget(listWidget);
64 
65  RecentDock->setWidget(dockWidgetContents);
66 
67  retranslateUi(RecentDock);
68 
69  QMetaObject::connectSlotsByName(RecentDock);
70  } // setupUi
71 
72  void retranslateUi(QDockWidget *RecentDock)
73  {
74  RecentDock->setWindowTitle(QApplication::translate("RecentDock", "Recent", nullptr));
75 #ifndef QT_NO_TOOLTIP
76  lineEdit->setToolTip(QApplication::translate("RecentDock", "Show only files with name matching text", nullptr));
77 #endif // QT_NO_TOOLTIP
78  lineEdit->setPlaceholderText(QApplication::translate("RecentDock", "search", nullptr));
79  } // retranslateUi
80 
81 };
82 
83 namespace Ui {
84  class RecentDock: public Ui_RecentDock {};
85 } // namespace Ui
86 
87 QT_END_NAMESPACE
88 
89 #endif // UI_RECENTDOCK_H
Definition: addencodepresetdialog.h:24