source: projectionDesigner/trunk/projdesigner/ui_qchannelmanagerwidget.h @ 48

Last change on this file since 48 was 48, checked in by Torben Dannhauer, 14 years ago
File size: 3.8 KB
Line 
1/********************************************************************************
2** Form generated from reading UI file 'qchannelmanagerwidget.ui'
3**
4** Created: Wed 19. May 11:06:38 2010
5**      by: Qt User Interface Compiler version 4.6.2
6**
7** WARNING! All changes made in this file will be lost when recompiling UI file!
8********************************************************************************/
9
10#ifndef UI_QCHANNELMANAGERWIDGET_H
11#define UI_QCHANNELMANAGERWIDGET_H
12
13#include <QtCore/QVariant>
14#include <QtGui/QAction>
15#include <QtGui/QApplication>
16#include <QtGui/QButtonGroup>
17#include <QtGui/QHBoxLayout>
18#include <QtGui/QHeaderView>
19#include <QtGui/QPushButton>
20#include <QtGui/QSpacerItem>
21#include <QtGui/QTableWidget>
22#include <QtGui/QVBoxLayout>
23#include <QtGui/QWidget>
24
25QT_BEGIN_NAMESPACE
26
27class Ui_QChannelManagerWidget
28{
29public:
30    QHBoxLayout *hboxLayout;
31    QVBoxLayout *vboxLayout;
32    QTableWidget *channelTable;
33    QHBoxLayout *hboxLayout1;
34    QSpacerItem *spacerItem;
35    QPushButton *addButton;
36    QPushButton *removeButton;
37
38    void setupUi(QWidget *QChannelManagerWidget)
39    {
40        if (QChannelManagerWidget->objectName().isEmpty())
41            QChannelManagerWidget->setObjectName(QString::fromUtf8("QChannelManagerWidget"));
42        QChannelManagerWidget->resize(223, 236);
43        hboxLayout = new QHBoxLayout(QChannelManagerWidget);
44#ifndef Q_OS_MAC
45        hboxLayout->setSpacing(6);
46#endif
47        hboxLayout->setContentsMargins(0, 0, 0, 0);
48        hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
49        vboxLayout = new QVBoxLayout();
50#ifndef Q_OS_MAC
51        vboxLayout->setSpacing(6);
52#endif
53#ifndef Q_OS_MAC
54        vboxLayout->setContentsMargins(0, 0, 0, 0);
55#endif
56        vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
57        channelTable = new QTableWidget(QChannelManagerWidget);
58        channelTable->setObjectName(QString::fromUtf8("channelTable"));
59        channelTable->setSelectionMode(QAbstractItemView::SingleSelection);
60        channelTable->setSelectionBehavior(QAbstractItemView::SelectRows);
61
62        vboxLayout->addWidget(channelTable);
63
64        hboxLayout1 = new QHBoxLayout();
65#ifndef Q_OS_MAC
66        hboxLayout1->setSpacing(6);
67#endif
68        hboxLayout1->setContentsMargins(0, 0, 0, 0);
69        hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
70        spacerItem = new QSpacerItem(16, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
71
72        hboxLayout1->addItem(spacerItem);
73
74        addButton = new QPushButton(QChannelManagerWidget);
75        addButton->setObjectName(QString::fromUtf8("addButton"));
76        addButton->setFocusPolicy(Qt::NoFocus);
77
78        hboxLayout1->addWidget(addButton);
79
80        removeButton = new QPushButton(QChannelManagerWidget);
81        removeButton->setObjectName(QString::fromUtf8("removeButton"));
82        removeButton->setFocusPolicy(Qt::NoFocus);
83
84        hboxLayout1->addWidget(removeButton);
85
86
87        vboxLayout->addLayout(hboxLayout1);
88
89
90        hboxLayout->addLayout(vboxLayout);
91
92
93        retranslateUi(QChannelManagerWidget);
94
95        QMetaObject::connectSlotsByName(QChannelManagerWidget);
96    } // setupUi
97
98    void retranslateUi(QWidget *QChannelManagerWidget)
99    {
100        QChannelManagerWidget->setWindowTitle(QApplication::translate("QChannelManagerWidget", "Channel Manager", 0, QApplication::UnicodeUTF8));
101        addButton->setText(QApplication::translate("QChannelManagerWidget", "Add", 0, QApplication::UnicodeUTF8));
102        removeButton->setText(QApplication::translate("QChannelManagerWidget", "Remove", 0, QApplication::UnicodeUTF8));
103    } // retranslateUi
104
105};
106
107namespace Ui {
108    class QChannelManagerWidget: public Ui_QChannelManagerWidget {};
109} // namespace Ui
110
111QT_END_NAMESPACE
112
113#endif // UI_QCHANNELMANAGERWIDGET_H
Note: See TracBrowser for help on using the repository browser.