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