Qmmp
ui_addurldialog.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'addurldialog.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 4.8.7
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_ADDURLDIALOG_H
10 #define UI_ADDURLDIALOG_H
11 
12 #include <QtCore/QVariant>
13 #include <QtGui/QAction>
14 #include <QtGui/QApplication>
15 #include <QtGui/QButtonGroup>
16 #include <QtGui/QComboBox>
17 #include <QtGui/QDialog>
18 #include <QtGui/QGridLayout>
19 #include <QtGui/QHeaderView>
20 #include <QtGui/QPushButton>
21 #include <QtGui/QSpacerItem>
22 
23 QT_BEGIN_NAMESPACE
24 
25 class Ui_AddUrlDialog
26 {
27 public:
28  QGridLayout *gridLayout;
29  QComboBox *urlComboBox;
30  QSpacerItem *spacerItem;
31  QPushButton *addButton;
32  QPushButton *cancelButton;
33 
34  void setupUi(QDialog *AddUrlDialog)
35  {
36  if (AddUrlDialog->objectName().isEmpty())
37  AddUrlDialog->setObjectName(QString::fromUtf8("AddUrlDialog"));
38  AddUrlDialog->resize(389, 72);
39  gridLayout = new QGridLayout(AddUrlDialog);
40  gridLayout->setContentsMargins(5, 5, 5, 5);
41  gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
42  urlComboBox = new QComboBox(AddUrlDialog);
43  urlComboBox->setObjectName(QString::fromUtf8("urlComboBox"));
44  urlComboBox->setEditable(true);
45  urlComboBox->setSizeAdjustPolicy(QComboBox::AdjustToMinimumContentsLength);
46 
47  gridLayout->addWidget(urlComboBox, 0, 0, 1, 3);
48 
49  spacerItem = new QSpacerItem(181, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
50 
51  gridLayout->addItem(spacerItem, 1, 0, 1, 1);
52 
53  addButton = new QPushButton(AddUrlDialog);
54  addButton->setObjectName(QString::fromUtf8("addButton"));
55 
56  gridLayout->addWidget(addButton, 1, 1, 1, 1);
57 
58  cancelButton = new QPushButton(AddUrlDialog);
59  cancelButton->setObjectName(QString::fromUtf8("cancelButton"));
60 
61  gridLayout->addWidget(cancelButton, 1, 2, 1, 1);
62 
63 
64  retranslateUi(AddUrlDialog);
65  QObject::connect(addButton, SIGNAL(clicked()), AddUrlDialog, SLOT(accept()));
66  QObject::connect(cancelButton, SIGNAL(clicked()), AddUrlDialog, SLOT(reject()));
67 
68  QMetaObject::connectSlotsByName(AddUrlDialog);
69  } // setupUi
70 
71  void retranslateUi(QDialog *AddUrlDialog)
72  {
73  AddUrlDialog->setWindowTitle(QApplication::translate("AddUrlDialog", "Enter URL to add", 0, QApplication::UnicodeUTF8));
74  addButton->setText(QApplication::translate("AddUrlDialog", "&Add", 0, QApplication::UnicodeUTF8));
75  cancelButton->setText(QApplication::translate("AddUrlDialog", "&Cancel", 0, QApplication::UnicodeUTF8));
76  } // retranslateUi
77 
78 };
79 
80 namespace Ui {
81  class AddUrlDialog: public Ui_AddUrlDialog {};
82 } // namespace Ui
83 
84 QT_END_NAMESPACE
85 
86 #endif // UI_ADDURLDIALOG_H