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
99 lines
3.5 KiB
C++
99 lines
3.5 KiB
C++
/********************************************************************************
|
|
** Form generated from reading UI file 'qprintpropertieswidget.ui'
|
|
**
|
|
** Created: Fri Sep 4 10:17:14 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 QPRINTPROPERTIESWIDGET_H
|
|
#define QPRINTPROPERTIESWIDGET_H
|
|
|
|
#include <QtCore/QVariant>
|
|
#include <QtGui/QAction>
|
|
#include <QtGui/QApplication>
|
|
#include <QtGui/QButtonGroup>
|
|
#include <QtGui/QHBoxLayout>
|
|
#include <QtGui/QHeaderView>
|
|
#include <QtGui/QTabWidget>
|
|
#include <QtGui/QTreeView>
|
|
#include <QtGui/QVBoxLayout>
|
|
#include <QtGui/QWidget>
|
|
#include "qpagesetupdialog_unix_p.h"
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class Ui_QPrintPropertiesWidget
|
|
{
|
|
public:
|
|
QVBoxLayout *verticalLayout_4;
|
|
QTabWidget *tabs;
|
|
QWidget *tabPage;
|
|
QHBoxLayout *horizontalLayout;
|
|
QPageSetupWidget *pageSetup;
|
|
QWidget *cupsPropertiesPage;
|
|
QHBoxLayout *horizontalLayout_2;
|
|
QTreeView *treeView;
|
|
|
|
void setupUi(QWidget *QPrintPropertiesWidget)
|
|
{
|
|
if (QPrintPropertiesWidget->objectName().isEmpty())
|
|
QPrintPropertiesWidget->setObjectName(QString::fromUtf8("QPrintPropertiesWidget"));
|
|
QPrintPropertiesWidget->resize(396, 288);
|
|
verticalLayout_4 = new QVBoxLayout(QPrintPropertiesWidget);
|
|
verticalLayout_4->setContentsMargins(0, 0, 0, 0);
|
|
verticalLayout_4->setObjectName(QString::fromUtf8("verticalLayout_4"));
|
|
tabs = new QTabWidget(QPrintPropertiesWidget);
|
|
tabs->setObjectName(QString::fromUtf8("tabs"));
|
|
tabPage = new QWidget();
|
|
tabPage->setObjectName(QString::fromUtf8("tabPage"));
|
|
tabPage->setGeometry(QRect(0, 0, 392, 261));
|
|
horizontalLayout = new QHBoxLayout(tabPage);
|
|
horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
|
|
pageSetup = new QPageSetupWidget(tabPage);
|
|
pageSetup->setObjectName(QString::fromUtf8("pageSetup"));
|
|
|
|
horizontalLayout->addWidget(pageSetup);
|
|
|
|
tabs->addTab(tabPage, QString());
|
|
cupsPropertiesPage = new QWidget();
|
|
cupsPropertiesPage->setObjectName(QString::fromUtf8("cupsPropertiesPage"));
|
|
horizontalLayout_2 = new QHBoxLayout(cupsPropertiesPage);
|
|
horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
|
|
treeView = new QTreeView(cupsPropertiesPage);
|
|
treeView->setObjectName(QString::fromUtf8("treeView"));
|
|
treeView->setAlternatingRowColors(true);
|
|
|
|
horizontalLayout_2->addWidget(treeView);
|
|
|
|
tabs->addTab(cupsPropertiesPage, QString());
|
|
|
|
verticalLayout_4->addWidget(tabs);
|
|
|
|
|
|
retranslateUi(QPrintPropertiesWidget);
|
|
|
|
tabs->setCurrentIndex(0);
|
|
|
|
|
|
QMetaObject::connectSlotsByName(QPrintPropertiesWidget);
|
|
} // setupUi
|
|
|
|
void retranslateUi(QWidget *QPrintPropertiesWidget)
|
|
{
|
|
QPrintPropertiesWidget->setWindowTitle(QApplication::translate("QPrintPropertiesWidget", "Form", 0, QApplication::UnicodeUTF8));
|
|
tabs->setTabText(tabs->indexOf(tabPage), QApplication::translate("QPrintPropertiesWidget", "Page", 0, QApplication::UnicodeUTF8));
|
|
tabs->setTabText(tabs->indexOf(cupsPropertiesPage), QApplication::translate("QPrintPropertiesWidget", "Advanced", 0, QApplication::UnicodeUTF8));
|
|
} // retranslateUi
|
|
|
|
};
|
|
|
|
namespace Ui {
|
|
class QPrintPropertiesWidget: public Ui_QPrintPropertiesWidget {};
|
|
} // namespace Ui
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // QPRINTPROPERTIESWIDGET_H
|