38be0d1383
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
102 lines
3.3 KiB
C++
102 lines
3.3 KiB
C++
/********************************************************************************
|
|
** Form generated from reading UI file 'filespage.ui'
|
|
**
|
|
** Created: Fri Sep 4 10:17:13 2009
|
|
** by: Qt User Interface Compiler version 4.6.0
|
|
**
|
|
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
********************************************************************************/
|
|
|
|
#ifndef FILESPAGE_H
|
|
#define FILESPAGE_H
|
|
|
|
#include <QtCore/QVariant>
|
|
#include <QtGui/QAction>
|
|
#include <QtGui/QApplication>
|
|
#include <QtGui/QButtonGroup>
|
|
#include <QtGui/QGridLayout>
|
|
#include <QtGui/QHeaderView>
|
|
#include <QtGui/QLabel>
|
|
#include <QtGui/QListWidget>
|
|
#include <QtGui/QPushButton>
|
|
#include <QtGui/QSpacerItem>
|
|
#include <QtGui/QWidget>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class Ui_FilesPage
|
|
{
|
|
public:
|
|
QGridLayout *gridLayout;
|
|
QLabel *fileLabel;
|
|
QListWidget *fileListWidget;
|
|
QPushButton *removeButton;
|
|
QPushButton *removeAllButton;
|
|
QSpacerItem *spacerItem;
|
|
QSpacerItem *spacerItem1;
|
|
|
|
void setupUi(QWidget *FilesPage)
|
|
{
|
|
if (FilesPage->objectName().isEmpty())
|
|
FilesPage->setObjectName(QString::fromUtf8("FilesPage"));
|
|
FilesPage->resize(417, 242);
|
|
gridLayout = new QGridLayout(FilesPage);
|
|
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
|
|
fileLabel = new QLabel(FilesPage);
|
|
fileLabel->setObjectName(QString::fromUtf8("fileLabel"));
|
|
fileLabel->setWordWrap(true);
|
|
|
|
gridLayout->addWidget(fileLabel, 0, 0, 1, 2);
|
|
|
|
fileListWidget = new QListWidget(FilesPage);
|
|
fileListWidget->setObjectName(QString::fromUtf8("fileListWidget"));
|
|
|
|
gridLayout->addWidget(fileListWidget, 1, 0, 3, 1);
|
|
|
|
removeButton = new QPushButton(FilesPage);
|
|
removeButton->setObjectName(QString::fromUtf8("removeButton"));
|
|
QSizePolicy sizePolicy(QSizePolicy::Maximum, QSizePolicy::Fixed);
|
|
sizePolicy.setHorizontalStretch(0);
|
|
sizePolicy.setVerticalStretch(0);
|
|
sizePolicy.setHeightForWidth(removeButton->sizePolicy().hasHeightForWidth());
|
|
removeButton->setSizePolicy(sizePolicy);
|
|
|
|
gridLayout->addWidget(removeButton, 1, 1, 1, 1);
|
|
|
|
removeAllButton = new QPushButton(FilesPage);
|
|
removeAllButton->setObjectName(QString::fromUtf8("removeAllButton"));
|
|
|
|
gridLayout->addWidget(removeAllButton, 2, 1, 1, 1);
|
|
|
|
spacerItem = new QSpacerItem(75, 16, QSizePolicy::Minimum, QSizePolicy::Expanding);
|
|
|
|
gridLayout->addItem(spacerItem, 3, 1, 1, 1);
|
|
|
|
spacerItem1 = new QSpacerItem(20, 31, QSizePolicy::Minimum, QSizePolicy::Expanding);
|
|
|
|
gridLayout->addItem(spacerItem1, 4, 0, 1, 1);
|
|
|
|
|
|
retranslateUi(FilesPage);
|
|
|
|
QMetaObject::connectSlotsByName(FilesPage);
|
|
} // setupUi
|
|
|
|
void retranslateUi(QWidget *FilesPage)
|
|
{
|
|
FilesPage->setWindowTitle(QApplication::translate("FilesPage", "Form", 0, QApplication::UnicodeUTF8));
|
|
fileLabel->setText(QApplication::translate("FilesPage", "Files:", 0, QApplication::UnicodeUTF8));
|
|
removeButton->setText(QApplication::translate("FilesPage", "Remove", 0, QApplication::UnicodeUTF8));
|
|
removeAllButton->setText(QApplication::translate("FilesPage", "Remove All", 0, QApplication::UnicodeUTF8));
|
|
} // retranslateUi
|
|
|
|
};
|
|
|
|
namespace Ui {
|
|
class FilesPage: public Ui_FilesPage {};
|
|
} // namespace Ui
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // FILESPAGE_H
|