Sayonara Player
ui_GUI_ProxyPreferences.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'GUI_ProxyPreferences.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.12.4
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_GUI_PROXYPREFERENCES_H
10 #define UI_GUI_PROXYPREFERENCES_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QCheckBox>
15 #include <QtWidgets/QFrame>
16 #include <QtWidgets/QGridLayout>
17 #include <QtWidgets/QLabel>
18 #include <QtWidgets/QLineEdit>
19 #include <QtWidgets/QPushButton>
20 #include <QtWidgets/QSpacerItem>
21 #include <QtWidgets/QSpinBox>
22 #include <QtWidgets/QWidget>
23 
24 QT_BEGIN_NAMESPACE
25 
27 {
28 public:
29  QGridLayout *gridLayout;
30  QLineEdit *le_host;
31  QLabel *lab_port;
32  QCheckBox *cb_save_pw;
33  QSpinBox *sb_port;
34  QLineEdit *le_username;
35  QFrame *line;
36  QCheckBox *cb_active;
37  QSpacerItem *verticalSpacer;
38  QLabel *lab_host;
39  QLabel *lab_password;
40  QLineEdit *le_password;
41  QLabel *lab_username;
42  QPushButton *btn_autosearch;
43 
44  void setupUi(QWidget *GUI_ProxyPreferences)
45  {
46  if (GUI_ProxyPreferences->objectName().isEmpty())
47  GUI_ProxyPreferences->setObjectName(QString::fromUtf8("GUI_ProxyPreferences"));
48  GUI_ProxyPreferences->resize(400, 300);
49  gridLayout = new QGridLayout(GUI_ProxyPreferences);
50  gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
51  le_host = new QLineEdit(GUI_ProxyPreferences);
52  le_host->setObjectName(QString::fromUtf8("le_host"));
53 
54  gridLayout->addWidget(le_host, 2, 1, 1, 1);
55 
56  lab_port = new QLabel(GUI_ProxyPreferences);
57  lab_port->setObjectName(QString::fromUtf8("lab_port"));
58 
59  gridLayout->addWidget(lab_port, 3, 0, 1, 1);
60 
61  cb_save_pw = new QCheckBox(GUI_ProxyPreferences);
62  cb_save_pw->setObjectName(QString::fromUtf8("cb_save_pw"));
63 
64  gridLayout->addWidget(cb_save_pw, 6, 1, 1, 1);
65 
66  sb_port = new QSpinBox(GUI_ProxyPreferences);
67  sb_port->setObjectName(QString::fromUtf8("sb_port"));
68  sb_port->setMaximum(65536);
69  sb_port->setValue(3128);
70 
71  gridLayout->addWidget(sb_port, 3, 1, 1, 1);
72 
73  le_username = new QLineEdit(GUI_ProxyPreferences);
74  le_username->setObjectName(QString::fromUtf8("le_username"));
75 
76  gridLayout->addWidget(le_username, 4, 1, 1, 1);
77 
78  line = new QFrame(GUI_ProxyPreferences);
79  line->setObjectName(QString::fromUtf8("line"));
80  line->setFrameShape(QFrame::HLine);
81  line->setFrameShadow(QFrame::Sunken);
82 
83  gridLayout->addWidget(line, 1, 0, 1, 2);
84 
85  cb_active = new QCheckBox(GUI_ProxyPreferences);
86  cb_active->setObjectName(QString::fromUtf8("cb_active"));
87 
88  gridLayout->addWidget(cb_active, 0, 0, 1, 1);
89 
90  verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
91 
92  gridLayout->addItem(verticalSpacer, 8, 1, 1, 1);
93 
94  lab_host = new QLabel(GUI_ProxyPreferences);
95  lab_host->setObjectName(QString::fromUtf8("lab_host"));
96 
97  gridLayout->addWidget(lab_host, 2, 0, 1, 1);
98 
99  lab_password = new QLabel(GUI_ProxyPreferences);
100  lab_password->setObjectName(QString::fromUtf8("lab_password"));
101 
102  gridLayout->addWidget(lab_password, 5, 0, 1, 1);
103 
104  le_password = new QLineEdit(GUI_ProxyPreferences);
105  le_password->setObjectName(QString::fromUtf8("le_password"));
106  le_password->setEchoMode(QLineEdit::Password);
107 
108  gridLayout->addWidget(le_password, 5, 1, 1, 1);
109 
110  lab_username = new QLabel(GUI_ProxyPreferences);
111  lab_username->setObjectName(QString::fromUtf8("lab_username"));
112 
113  gridLayout->addWidget(lab_username, 4, 0, 1, 1);
114 
115  btn_autosearch = new QPushButton(GUI_ProxyPreferences);
116  btn_autosearch->setObjectName(QString::fromUtf8("btn_autosearch"));
117 
118  gridLayout->addWidget(btn_autosearch, 7, 1, 1, 1);
119 
120  QWidget::setTabOrder(cb_active, le_host);
121  QWidget::setTabOrder(le_host, sb_port);
122  QWidget::setTabOrder(sb_port, le_username);
123  QWidget::setTabOrder(le_username, le_password);
124  QWidget::setTabOrder(le_password, cb_save_pw);
125  QWidget::setTabOrder(cb_save_pw, btn_autosearch);
126 
127  retranslateUi(GUI_ProxyPreferences);
128 
129  QMetaObject::connectSlotsByName(GUI_ProxyPreferences);
130  } // setupUi
131 
132  void retranslateUi(QWidget *GUI_ProxyPreferences)
133  {
134  GUI_ProxyPreferences->setWindowTitle(QString());
135  lab_port->setText(QApplication::translate("GUI_ProxyPreferences", "Port", nullptr));
136  cb_save_pw->setText(QApplication::translate("GUI_ProxyPreferences", "Save username/password", nullptr));
137  cb_active->setText(QApplication::translate("GUI_ProxyPreferences", "Active", nullptr));
138  lab_host->setText(QApplication::translate("GUI_ProxyPreferences", "Host", nullptr));
139  lab_password->setText(QApplication::translate("GUI_ProxyPreferences", "Password", nullptr));
140  lab_username->setText(QApplication::translate("GUI_ProxyPreferences", "Username", nullptr));
141  btn_autosearch->setText(QApplication::translate("GUI_ProxyPreferences", "Automatic search", nullptr));
142  } // retranslateUi
143 
144 };
145 
146 namespace Ui {
148 } // namespace Ui
149 
150 QT_END_NAMESPACE
151 
152 #endif // UI_GUI_PROXYPREFERENCES_H
Definition: GUI_ProxyPreferences.h:28
Definition: ui_GUI_ProxyPreferences.h:147
Definition: ui_GUI_ProxyPreferences.h:26