00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_TICKETSBASE_H
00011 #define UI_TICKETSBASE_H
00012
00013 #include <QtCore/QVariant>
00014 #include <QtGui/QAction>
00015 #include <QtGui/QApplication>
00016 #include <QtGui/QButtonGroup>
00017 #include <QtGui/QFrame>
00018 #include <QtGui/QVBoxLayout>
00019 #include <QtGui/QWidget>
00020
00021 class Ui_TicketsBase
00022 {
00023 public:
00024 QVBoxLayout *vboxLayout;
00025 QFrame *mui_frame;
00026
00027 void setupUi(QWidget *TicketsBase)
00028 {
00029 TicketsBase->setObjectName(QString::fromUtf8("TicketsBase"));
00030 vboxLayout = new QVBoxLayout(TicketsBase);
00031 vboxLayout->setSpacing(6);
00032 vboxLayout->setMargin(9);
00033 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
00034 mui_frame = new QFrame(TicketsBase);
00035 mui_frame->setObjectName(QString::fromUtf8("mui_frame"));
00036 mui_frame->setFrameShape(QFrame::StyledPanel);
00037 mui_frame->setFrameShadow(QFrame::Raised);
00038
00039 vboxLayout->addWidget(mui_frame);
00040
00041
00042 retranslateUi(TicketsBase);
00043
00044 QSize size(312, 174);
00045 size = size.expandedTo(TicketsBase->minimumSizeHint());
00046 TicketsBase->resize(size);
00047
00048
00049 QMetaObject::connectSlotsByName(TicketsBase);
00050 }
00051
00052 void retranslateUi(QWidget *TicketsBase)
00053 {
00054 TicketsBase->setWindowTitle(QApplication::translate("TicketsBase", "Form", 0, QApplication::UnicodeUTF8));
00055 Q_UNUSED(TicketsBase);
00056 }
00057
00058 };
00059
00060 namespace Ui {
00061 class TicketsBase: public Ui_TicketsBase {};
00062 }
00063
00064 #endif // UI_TICKETSBASE_H