Changed the old code to work as a daemon
[googlelatitude] / src / settings / ui_settings.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'settings.ui'
3 **
4 ** Created: Thu Jan 6 21:00:12 2011
5 **      by: Qt User Interface Compiler version 4.7.0
6 **
7 ** WARNING! All changes made in this file will be lost when recompiling UI file!
8 ********************************************************************************/
9
10 #ifndef UI_SETTINGS_H
11 #define UI_SETTINGS_H
12
13 #include <QtCore/QVariant>
14 #include <QtGui/QAction>
15 #include <QtGui/QApplication>
16 #include <QtGui/QButtonGroup>
17 #include <QtGui/QCheckBox>
18 #include <QtGui/QFormLayout>
19 #include <QtGui/QGroupBox>
20 #include <QtGui/QHBoxLayout>
21 #include <QtGui/QHeaderView>
22 #include <QtGui/QLabel>
23 #include <QtGui/QLineEdit>
24 #include <QtGui/QPushButton>
25 #include <QtGui/QRadioButton>
26 #include <QtGui/QScrollArea>
27 #include <QtGui/QVBoxLayout>
28 #include <QtGui/QWidget>
29
30 QT_BEGIN_NAMESPACE
31
32 class Ui_Settings
33 {
34 public:
35     QVBoxLayout *verticalLayout;
36     QScrollArea *scrollArea;
37     QWidget *widget;
38     QVBoxLayout *verticalLayout_2;
39     QGroupBox *groupBox;
40     QHBoxLayout *horizontalLayout;
41     QRadioButton *status_on;
42     QRadioButton *status_off;
43     QRadioButton *status_hide;
44     QGroupBox *groupBox_2;
45     QHBoxLayout *horizontalLayout_2;
46     QRadioButton *location_gps;
47     QRadioButton *location_gps_network;
48     QRadioButton *location_network;
49     QCheckBox *launchOnPowerOn;
50     QCheckBox *connectIfNecessary;
51     QGroupBox *groupBox_3;
52     QFormLayout *formLayout;
53     QLabel *label;
54     QLineEdit *login_user;
55     QLabel *label_2;
56     QLineEdit *login_pass;
57     QWidget *widget_2;
58     QHBoxLayout *horizontalLayout_3;
59     QPushButton *about_button;
60     QPushButton *ok_button;
61
62     void setupUi(QWidget *Settings)
63     {
64         if (Settings->objectName().isEmpty())
65             Settings->setObjectName(QString::fromUtf8("Settings"));
66         Settings->resize(640, 480);
67         verticalLayout = new QVBoxLayout(Settings);
68         verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
69         scrollArea = new QScrollArea(Settings);
70         scrollArea->setObjectName(QString::fromUtf8("scrollArea"));
71         scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
72         scrollArea->setWidgetResizable(true);
73         widget = new QWidget();
74         widget->setObjectName(QString::fromUtf8("widget"));
75         widget->setGeometry(QRect(0, 0, 618, 458));
76         verticalLayout_2 = new QVBoxLayout(widget);
77         verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2"));
78         groupBox = new QGroupBox(widget);
79         groupBox->setObjectName(QString::fromUtf8("groupBox"));
80         horizontalLayout = new QHBoxLayout(groupBox);
81         horizontalLayout->setSpacing(0);
82         horizontalLayout->setContentsMargins(0, 0, 0, 0);
83         horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
84         status_on = new QRadioButton(groupBox);
85         status_on->setObjectName(QString::fromUtf8("status_on"));
86
87         horizontalLayout->addWidget(status_on);
88
89         status_off = new QRadioButton(groupBox);
90         status_off->setObjectName(QString::fromUtf8("status_off"));
91
92         horizontalLayout->addWidget(status_off);
93
94         status_hide = new QRadioButton(groupBox);
95         status_hide->setObjectName(QString::fromUtf8("status_hide"));
96         status_hide->setEnabled(false);
97
98         horizontalLayout->addWidget(status_hide);
99
100
101         verticalLayout_2->addWidget(groupBox);
102
103         groupBox_2 = new QGroupBox(widget);
104         groupBox_2->setObjectName(QString::fromUtf8("groupBox_2"));
105         horizontalLayout_2 = new QHBoxLayout(groupBox_2);
106         horizontalLayout_2->setSpacing(0);
107         horizontalLayout_2->setContentsMargins(0, 0, 0, 0);
108         horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
109         location_gps = new QRadioButton(groupBox_2);
110         location_gps->setObjectName(QString::fromUtf8("location_gps"));
111
112         horizontalLayout_2->addWidget(location_gps);
113
114         location_gps_network = new QRadioButton(groupBox_2);
115         location_gps_network->setObjectName(QString::fromUtf8("location_gps_network"));
116
117         horizontalLayout_2->addWidget(location_gps_network);
118
119         location_network = new QRadioButton(groupBox_2);
120         location_network->setObjectName(QString::fromUtf8("location_network"));
121
122         horizontalLayout_2->addWidget(location_network);
123
124
125         verticalLayout_2->addWidget(groupBox_2);
126
127         launchOnPowerOn = new QCheckBox(widget);
128         launchOnPowerOn->setObjectName(QString::fromUtf8("launchOnPowerOn"));
129
130         verticalLayout_2->addWidget(launchOnPowerOn);
131
132         connectIfNecessary = new QCheckBox(widget);
133         connectIfNecessary->setObjectName(QString::fromUtf8("connectIfNecessary"));
134         connectIfNecessary->setEnabled(false);
135
136         verticalLayout_2->addWidget(connectIfNecessary);
137
138         groupBox_3 = new QGroupBox(widget);
139         groupBox_3->setObjectName(QString::fromUtf8("groupBox_3"));
140         QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum);
141         sizePolicy.setHorizontalStretch(0);
142         sizePolicy.setVerticalStretch(0);
143         sizePolicy.setHeightForWidth(groupBox_3->sizePolicy().hasHeightForWidth());
144         groupBox_3->setSizePolicy(sizePolicy);
145         formLayout = new QFormLayout(groupBox_3);
146         formLayout->setObjectName(QString::fromUtf8("formLayout"));
147         formLayout->setFieldGrowthPolicy(QFormLayout::ExpandingFieldsGrow);
148         label = new QLabel(groupBox_3);
149         label->setObjectName(QString::fromUtf8("label"));
150
151         formLayout->setWidget(0, QFormLayout::LabelRole, label);
152
153         login_user = new QLineEdit(groupBox_3);
154         login_user->setObjectName(QString::fromUtf8("login_user"));
155
156         formLayout->setWidget(0, QFormLayout::FieldRole, login_user);
157
158         label_2 = new QLabel(groupBox_3);
159         label_2->setObjectName(QString::fromUtf8("label_2"));
160
161         formLayout->setWidget(2, QFormLayout::LabelRole, label_2);
162
163         login_pass = new QLineEdit(groupBox_3);
164         login_pass->setObjectName(QString::fromUtf8("login_pass"));
165         login_pass->setEchoMode(QLineEdit::Password);
166
167         formLayout->setWidget(2, QFormLayout::FieldRole, login_pass);
168
169
170         verticalLayout_2->addWidget(groupBox_3);
171
172         widget_2 = new QWidget(widget);
173         widget_2->setObjectName(QString::fromUtf8("widget_2"));
174         sizePolicy.setHeightForWidth(widget_2->sizePolicy().hasHeightForWidth());
175         widget_2->setSizePolicy(sizePolicy);
176         horizontalLayout_3 = new QHBoxLayout(widget_2);
177         horizontalLayout_3->setObjectName(QString::fromUtf8("horizontalLayout_3"));
178         about_button = new QPushButton(widget_2);
179         about_button->setObjectName(QString::fromUtf8("about_button"));
180         about_button->setEnabled(false);
181
182         horizontalLayout_3->addWidget(about_button);
183
184         ok_button = new QPushButton(widget_2);
185         ok_button->setObjectName(QString::fromUtf8("ok_button"));
186
187         horizontalLayout_3->addWidget(ok_button);
188
189
190         verticalLayout_2->addWidget(widget_2);
191
192         scrollArea->setWidget(widget);
193
194         verticalLayout->addWidget(scrollArea);
195
196
197         retranslateUi(Settings);
198
199         QMetaObject::connectSlotsByName(Settings);
200     } // setupUi
201
202     void retranslateUi(QWidget *Settings)
203     {
204         Settings->setWindowTitle(QApplication::translate("Settings", "Settings", 0, QApplication::UnicodeUTF8));
205         groupBox->setTitle(QApplication::translate("Settings", "Latitude Status", 0, QApplication::UnicodeUTF8));
206         status_on->setText(QApplication::translate("Settings", "On", 0, QApplication::UnicodeUTF8));
207         status_off->setText(QApplication::translate("Settings", "Off", 0, QApplication::UnicodeUTF8));
208         status_hide->setText(QApplication::translate("Settings", "Hide", 0, QApplication::UnicodeUTF8));
209         groupBox_2->setTitle(QApplication::translate("Settings", "Location Mode", 0, QApplication::UnicodeUTF8));
210         location_gps->setText(QApplication::translate("Settings", "GPS Only", 0, QApplication::UnicodeUTF8));
211         location_gps_network->setText(QApplication::translate("Settings", "GPS + Mobile Network", 0, QApplication::UnicodeUTF8));
212         location_network->setText(QApplication::translate("Settings", "Mobile Network", 0, QApplication::UnicodeUTF8));
213         launchOnPowerOn->setText(QApplication::translate("Settings", "Launch on power on", 0, QApplication::UnicodeUTF8));
214         connectIfNecessary->setText(QApplication::translate("Settings", "Connect to network if necessary", 0, QApplication::UnicodeUTF8));
215         groupBox_3->setTitle(QApplication::translate("Settings", "Google Login", 0, QApplication::UnicodeUTF8));
216         label->setText(QApplication::translate("Settings", "Login", 0, QApplication::UnicodeUTF8));
217         label_2->setText(QApplication::translate("Settings", "Password", 0, QApplication::UnicodeUTF8));
218         about_button->setText(QApplication::translate("Settings", "About...", 0, QApplication::UnicodeUTF8));
219         ok_button->setText(QApplication::translate("Settings", "Ok", 0, QApplication::UnicodeUTF8));
220     } // retranslateUi
221
222 };
223
224 namespace Ui {
225     class Settings: public Ui_Settings {};
226 } // namespace Ui
227
228 QT_END_NAMESPACE
229
230 #endif // UI_SETTINGS_H