~ubuntu-branches/ubuntu/saucy/print-manager/saucy-proposed

« back to all changes in this revision

Viewing changes to build/configure-printer/ui_PrinterOptions.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-08-21 12:30:49 UTC
  • mto: (1.3.2)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: package-import@ubuntu.com-20120821123049-c8uky0a9gmfkck87
Tags: upstream-0.1.0+git20120821
ImportĀ upstreamĀ versionĀ 0.1.0+git20120821

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <kdialog.h>
 
2
#include <klocale.h>
 
3
 
 
4
/********************************************************************************
 
5
** Form generated from reading UI file 'PrinterOptions.ui'
 
6
**
 
7
** Created: Wed Aug 15 18:06:20 2012
 
8
**      by: Qt User Interface Compiler version 4.8.2
 
9
**
 
10
** WARNING! All changes made in this file will be lost when recompiling UI file!
 
11
********************************************************************************/
 
12
 
 
13
#ifndef UI_PRINTEROPTIONS_H
 
14
#define UI_PRINTEROPTIONS_H
 
15
 
 
16
#include <QtCore/QVariant>
 
17
#include <QtGui/QAction>
 
18
#include <QtGui/QApplication>
 
19
#include <QtGui/QButtonGroup>
 
20
#include <QtGui/QGridLayout>
 
21
#include <QtGui/QHeaderView>
 
22
#include <QtGui/QScrollArea>
 
23
#include <QtGui/QVBoxLayout>
 
24
#include <QtGui/QWidget>
 
25
#include "kpushbutton.h"
 
26
 
 
27
QT_BEGIN_NAMESPACE
 
28
 
 
29
class Ui_PrinterOptions
 
30
{
 
31
public:
 
32
    QGridLayout *gridLayout;
 
33
    KPushButton *autoConfigurePB;
 
34
    QScrollArea *scrollArea;
 
35
    QWidget *scrollAreaWidgetContents;
 
36
    QVBoxLayout *verticalLayout_2;
 
37
    QVBoxLayout *verticalLayout;
 
38
 
 
39
    void setupUi(QWidget *PrinterOptions)
 
40
    {
 
41
        if (PrinterOptions->objectName().isEmpty())
 
42
            PrinterOptions->setObjectName(QString::fromUtf8("PrinterOptions"));
 
43
        PrinterOptions->resize(484, 427);
 
44
        gridLayout = new QGridLayout(PrinterOptions);
 
45
        gridLayout->setContentsMargins(0, 0, 0, 0);
 
46
        gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
 
47
        autoConfigurePB = new KPushButton(PrinterOptions);
 
48
        autoConfigurePB->setObjectName(QString::fromUtf8("autoConfigurePB"));
 
49
        QSizePolicy sizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
 
50
        sizePolicy.setHorizontalStretch(0);
 
51
        sizePolicy.setVerticalStretch(0);
 
52
        sizePolicy.setHeightForWidth(autoConfigurePB->sizePolicy().hasHeightForWidth());
 
53
        autoConfigurePB->setSizePolicy(sizePolicy);
 
54
 
 
55
        gridLayout->addWidget(autoConfigurePB, 0, 0, 1, 1);
 
56
 
 
57
        scrollArea = new QScrollArea(PrinterOptions);
 
58
        scrollArea->setObjectName(QString::fromUtf8("scrollArea"));
 
59
        scrollArea->setFrameShape(QFrame::NoFrame);
 
60
        scrollArea->setWidgetResizable(true);
 
61
        scrollArea->setAlignment(Qt::AlignHCenter|Qt::AlignTop);
 
62
        scrollAreaWidgetContents = new QWidget();
 
63
        scrollAreaWidgetContents->setObjectName(QString::fromUtf8("scrollAreaWidgetContents"));
 
64
        scrollAreaWidgetContents->setGeometry(QRect(0, 0, 484, 401));
 
65
        verticalLayout_2 = new QVBoxLayout(scrollAreaWidgetContents);
 
66
        verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2"));
 
67
        verticalLayout = new QVBoxLayout();
 
68
        verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
 
69
 
 
70
        verticalLayout_2->addLayout(verticalLayout);
 
71
 
 
72
        scrollArea->setWidget(scrollAreaWidgetContents);
 
73
 
 
74
        gridLayout->addWidget(scrollArea, 1, 0, 1, 1);
 
75
 
 
76
 
 
77
        retranslateUi(PrinterOptions);
 
78
 
 
79
        QMetaObject::connectSlotsByName(PrinterOptions);
 
80
    } // setupUi
 
81
 
 
82
    void retranslateUi(QWidget *PrinterOptions)
 
83
    {
 
84
        autoConfigurePB->setText(tr2i18n("Query Printer for Default Options", 0));
 
85
        Q_UNUSED(PrinterOptions);
 
86
    } // retranslateUi
 
87
 
 
88
};
 
89
 
 
90
namespace Ui {
 
91
    class PrinterOptions: public Ui_PrinterOptions {};
 
92
} // namespace Ui
 
93
 
 
94
QT_END_NAMESPACE
 
95
 
 
96
#endif // PRINTEROPTIONS_H
 
97