Sayonara Player
ui_GUI_MTP.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'GUI_MTP.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.6.2
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_GUI_MTP_H
10 #define UI_GUI_MTP_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QAction>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QButtonGroup>
16 #include <QtWidgets/QComboBox>
17 #include <QtWidgets/QDialog>
18 #include <QtWidgets/QGridLayout>
19 #include <QtWidgets/QHBoxLayout>
20 #include <QtWidgets/QHeaderView>
21 #include <QtWidgets/QProgressBar>
22 #include <QtWidgets/QPushButton>
23 #include <QtWidgets/QSpacerItem>
24 #include "GUI/MTP/MTPTreeView.h"
25 
26 QT_BEGIN_NAMESPACE
27 
29 {
30 public:
31  QGridLayout *gridLayout;
32  QComboBox *combo_storages;
33  QComboBox *combo_devices;
34  QHBoxLayout *horizontalLayout;
35  QProgressBar *pb_progress;
36  QSpacerItem *horizontalSpacer;
37  QPushButton *btn_delete;
38  QPushButton *btn_go;
39  MTPTreeView *tree_view;
40 
41  void setupUi(QDialog *GUI_MTP)
42  {
43  if (GUI_MTP->objectName().isEmpty())
44  GUI_MTP->setObjectName(QStringLiteral("GUI_MTP"));
45  GUI_MTP->resize(412, 348);
46  gridLayout = new QGridLayout(GUI_MTP);
47  gridLayout->setObjectName(QStringLiteral("gridLayout"));
48  combo_storages = new QComboBox(GUI_MTP);
49  combo_storages->setObjectName(QStringLiteral("combo_storages"));
50 
51  gridLayout->addWidget(combo_storages, 1, 0, 1, 1);
52 
53  combo_devices = new QComboBox(GUI_MTP);
54  combo_devices->setObjectName(QStringLiteral("combo_devices"));
55 
56  gridLayout->addWidget(combo_devices, 0, 0, 1, 1);
57 
58  horizontalLayout = new QHBoxLayout();
59  horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
60  horizontalLayout->setContentsMargins(-1, 0, -1, -1);
61  pb_progress = new QProgressBar(GUI_MTP);
62  pb_progress->setObjectName(QStringLiteral("pb_progress"));
63  pb_progress->setValue(0);
64 
65  horizontalLayout->addWidget(pb_progress);
66 
67  horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
68 
69  horizontalLayout->addItem(horizontalSpacer);
70 
71  btn_delete = new QPushButton(GUI_MTP);
72  btn_delete->setObjectName(QStringLiteral("btn_delete"));
73 
74  horizontalLayout->addWidget(btn_delete);
75 
76  btn_go = new QPushButton(GUI_MTP);
77  btn_go->setObjectName(QStringLiteral("btn_go"));
78 
79  horizontalLayout->addWidget(btn_go);
80 
81 
82  gridLayout->addLayout(horizontalLayout, 5, 0, 1, 1);
83 
84  tree_view = new MTPTreeView(GUI_MTP);
85  QTreeWidgetItem *__qtreewidgetitem = new QTreeWidgetItem();
86  __qtreewidgetitem->setText(0, QStringLiteral("1"));
87  tree_view->setHeaderItem(__qtreewidgetitem);
88  tree_view->setObjectName(QStringLiteral("tree_view"));
89  tree_view->header()->setVisible(false);
90 
91  gridLayout->addWidget(tree_view, 2, 0, 1, 1);
92 
93 
94  retranslateUi(GUI_MTP);
95 
96  QMetaObject::connectSlotsByName(GUI_MTP);
97  } // setupUi
98 
99  void retranslateUi(QDialog *GUI_MTP)
100  {
101  GUI_MTP->setWindowTitle(QApplication::translate("GUI_MTP", "Devices", 0));
102  btn_delete->setText(QApplication::translate("GUI_MTP", "Delete", 0));
103  btn_go->setText(QApplication::translate("GUI_MTP", "Refresh", 0));
104  } // retranslateUi
105 
106 };
107 
108 namespace Ui {
109  class GUI_MTP: public Ui_GUI_MTP {};
110 } // namespace Ui
111 
112 QT_END_NAMESPACE
113 
114 #endif // UI_GUI_MTP_H
Definition: ui_GUI_MTP.h:109
Definition: GUI_SomaFM.h:34
Definition: GUI_MTP.h:34
Definition: ui_GUI_MTP.h:28
Definition: MTPTreeView.h:27