Initial Commit.
[onlineservices] / ui_filelistdialog.h
1 /********************************************************************************
2 ** Form generated from reading UI file 'filelistdialog.ui'
3 **
4 ** Created: Wed Jul 14 11:23:20 2010
5 **      by: Qt User Interface Compiler version 4.6.3
6 **
7 ** WARNING! All changes made in this file will be lost when recompiling UI file!
8 ********************************************************************************/
9
10 #ifndef UI_FILELISTDIALOG_H
11 #define UI_FILELISTDIALOG_H
12
13 #include <QtCore/QVariant>
14 #include <QtGui/QAction>
15 #include <QtGui/QApplication>
16 #include <QtGui/QButtonGroup>
17 #include <QtGui/QDialog>
18 #include <QtGui/QHBoxLayout>
19 #include <QtGui/QHeaderView>
20 #include <QtGui/QListWidget>
21 #include <QtGui/QProgressBar>
22 #include <QtGui/QPushButton>
23 #include <QtGui/QTabWidget>
24 #include <QtGui/QVBoxLayout>
25 #include <QtGui/QWidget>
26
27 QT_BEGIN_NAMESPACE
28
29 class Ui_fileListDialog
30 {
31 public:
32     QVBoxLayout *verticalLayout_4;
33     QTabWidget *listTab;
34     QWidget *documentTab;
35     QVBoxLayout *verticalLayout;
36     QListWidget *documentList;
37     QWidget *presentationTab;
38     QVBoxLayout *verticalLayout_2;
39     QListWidget *presentationList;
40     QWidget *spreadsheetTab;
41     QVBoxLayout *verticalLayout_3;
42     QListWidget *spreadsheetList;
43     QWidget *othersTab;
44     QVBoxLayout *verticalLayout_5;
45     QListWidget *othersList;
46     QProgressBar *downloadProgressBar;
47     QHBoxLayout *horizontalLayout;
48     QPushButton *uploadButton;
49     QPushButton *refreshButton;
50     QPushButton *downloadButton;
51
52     void setupUi(QDialog *fileListDialog)
53     {
54         if (fileListDialog->objectName().isEmpty())
55             fileListDialog->setObjectName(QString::fromUtf8("fileListDialog"));
56         fileListDialog->resize(640, 480);
57         verticalLayout_4 = new QVBoxLayout(fileListDialog);
58         verticalLayout_4->setObjectName(QString::fromUtf8("verticalLayout_4"));
59         listTab = new QTabWidget(fileListDialog);
60         listTab->setObjectName(QString::fromUtf8("listTab"));
61         listTab->setTabShape(QTabWidget::Rounded);
62         documentTab = new QWidget();
63         documentTab->setObjectName(QString::fromUtf8("documentTab"));
64         verticalLayout = new QVBoxLayout(documentTab);
65         verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
66         documentList = new QListWidget(documentTab);
67         documentList->setObjectName(QString::fromUtf8("documentList"));
68
69         verticalLayout->addWidget(documentList);
70
71         listTab->addTab(documentTab, QString());
72         presentationTab = new QWidget();
73         presentationTab->setObjectName(QString::fromUtf8("presentationTab"));
74         verticalLayout_2 = new QVBoxLayout(presentationTab);
75         verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2"));
76         presentationList = new QListWidget(presentationTab);
77         presentationList->setObjectName(QString::fromUtf8("presentationList"));
78
79         verticalLayout_2->addWidget(presentationList);
80
81         listTab->addTab(presentationTab, QString());
82         spreadsheetTab = new QWidget();
83         spreadsheetTab->setObjectName(QString::fromUtf8("spreadsheetTab"));
84         verticalLayout_3 = new QVBoxLayout(spreadsheetTab);
85         verticalLayout_3->setObjectName(QString::fromUtf8("verticalLayout_3"));
86         spreadsheetList = new QListWidget(spreadsheetTab);
87         spreadsheetList->setObjectName(QString::fromUtf8("spreadsheetList"));
88
89         verticalLayout_3->addWidget(spreadsheetList);
90
91         listTab->addTab(spreadsheetTab, QString());
92         othersTab = new QWidget();
93         othersTab->setObjectName(QString::fromUtf8("othersTab"));
94         verticalLayout_5 = new QVBoxLayout(othersTab);
95         verticalLayout_5->setObjectName(QString::fromUtf8("verticalLayout_5"));
96         othersList = new QListWidget(othersTab);
97         othersList->setObjectName(QString::fromUtf8("othersList"));
98
99         verticalLayout_5->addWidget(othersList);
100
101         listTab->addTab(othersTab, QString());
102
103         verticalLayout_4->addWidget(listTab);
104
105         downloadProgressBar = new QProgressBar(fileListDialog);
106         downloadProgressBar->setObjectName(QString::fromUtf8("downloadProgressBar"));
107         downloadProgressBar->setValue(0);
108         downloadProgressBar->setTextVisible(false);
109
110         verticalLayout_4->addWidget(downloadProgressBar);
111
112         horizontalLayout = new QHBoxLayout();
113         horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
114         uploadButton = new QPushButton(fileListDialog);
115         uploadButton->setObjectName(QString::fromUtf8("uploadButton"));
116
117         horizontalLayout->addWidget(uploadButton);
118
119         refreshButton = new QPushButton(fileListDialog);
120         refreshButton->setObjectName(QString::fromUtf8("refreshButton"));
121
122         horizontalLayout->addWidget(refreshButton);
123
124         downloadButton = new QPushButton(fileListDialog);
125         downloadButton->setObjectName(QString::fromUtf8("downloadButton"));
126
127         horizontalLayout->addWidget(downloadButton);
128
129
130         verticalLayout_4->addLayout(horizontalLayout);
131
132
133         retranslateUi(fileListDialog);
134
135         listTab->setCurrentIndex(1);
136
137
138         QMetaObject::connectSlotsByName(fileListDialog);
139     } // setupUi
140
141     void retranslateUi(QDialog *fileListDialog)
142     {
143         fileListDialog->setWindowTitle(QApplication::translate("fileListDialog", "FileList", 0, QApplication::UnicodeUTF8));
144         listTab->setTabText(listTab->indexOf(documentTab), QApplication::translate("fileListDialog", "Documents", 0, QApplication::UnicodeUTF8));
145         listTab->setTabText(listTab->indexOf(presentationTab), QApplication::translate("fileListDialog", "Presentations", 0, QApplication::UnicodeUTF8));
146         listTab->setTabText(listTab->indexOf(spreadsheetTab), QApplication::translate("fileListDialog", "Spreadsheets", 0, QApplication::UnicodeUTF8));
147         listTab->setTabText(listTab->indexOf(othersTab), QApplication::translate("fileListDialog", "Others", 0, QApplication::UnicodeUTF8));
148         uploadButton->setText(QApplication::translate("fileListDialog", "&Upload", 0, QApplication::UnicodeUTF8));
149         refreshButton->setText(QApplication::translate("fileListDialog", "&Refresh List", 0, QApplication::UnicodeUTF8));
150         downloadButton->setText(QApplication::translate("fileListDialog", "&Download", 0, QApplication::UnicodeUTF8));
151     } // retranslateUi
152
153 };
154
155 namespace Ui {
156     class fileListDialog: public Ui_fileListDialog {};
157 } // namespace Ui
158
159 QT_END_NAMESPACE
160
161 #endif // UI_FILELISTDIALOG_H