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.13.2
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(QString::fromUtf8("RecentDock"));
35  RecentDock->resize(396, 296);
36  RecentDock->setMinimumSize(QSize(150, 112));
37  QIcon icon;
38  QString iconThemeName = QString::fromUtf8("document-open-recent");
39  if (QIcon::hasThemeIcon(iconThemeName)) {
40  icon = QIcon::fromTheme(iconThemeName);
41  } else {
42  icon.addFile(QString::fromUtf8(":/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(QString::fromUtf8("dockWidgetContents"));
47  verticalLayout = new QVBoxLayout(dockWidgetContents);
48  verticalLayout->setSpacing(0);
49  verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
50  verticalLayout->setContentsMargins(0, 0, 0, 0);
51  lineEdit = new LineEditClear(dockWidgetContents);
52  lineEdit->setObjectName(QString::fromUtf8("lineEdit"));
53 
54  verticalLayout->addWidget(lineEdit);
55 
56  listWidget = new QListView(dockWidgetContents);
57  listWidget->setObjectName(QString::fromUtf8("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(QCoreApplication::translate("RecentDock", "Recent", nullptr));
75 #if QT_CONFIG(tooltip)
76  lineEdit->setToolTip(QCoreApplication::translate("RecentDock", "Show only files with name matching text", nullptr));
77 #endif // QT_CONFIG(tooltip)
78  lineEdit->setPlaceholderText(QCoreApplication::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