|
1 /******************************************************************************** |
|
2 ** Form generated from reading UI file 'dialog.ui' |
|
3 ** |
|
4 ** Created: Fri Sep 4 10:17:13 2009 |
|
5 ** by: Qt User Interface Compiler version 4.6.0 |
|
6 ** |
|
7 ** WARNING! All changes made in this file will be lost when recompiling UI file! |
|
8 ********************************************************************************/ |
|
9 |
|
10 #ifndef DIALOG_H |
|
11 #define DIALOG_H |
|
12 |
|
13 #include <QtCore/QVariant> |
|
14 #include <QtGui/QAction> |
|
15 #include <QtGui/QApplication> |
|
16 #include <QtGui/QButtonGroup> |
|
17 #include <QtGui/QDialog> |
|
18 #include <QtGui/QGridLayout> |
|
19 #include <QtGui/QHeaderView> |
|
20 #include <QtGui/QLabel> |
|
21 #include <QtGui/QPushButton> |
|
22 |
|
23 QT_BEGIN_NAMESPACE |
|
24 |
|
25 class Ui_Dialog |
|
26 { |
|
27 public: |
|
28 QGridLayout *gridLayout; |
|
29 QPushButton *loadFromFileButton; |
|
30 QLabel *label; |
|
31 QPushButton *loadFromSharedMemoryButton; |
|
32 |
|
33 void setupUi(QDialog *Dialog) |
|
34 { |
|
35 if (Dialog->objectName().isEmpty()) |
|
36 Dialog->setObjectName(QString::fromUtf8("Dialog")); |
|
37 Dialog->resize(451, 322); |
|
38 gridLayout = new QGridLayout(Dialog); |
|
39 gridLayout->setObjectName(QString::fromUtf8("gridLayout")); |
|
40 loadFromFileButton = new QPushButton(Dialog); |
|
41 loadFromFileButton->setObjectName(QString::fromUtf8("loadFromFileButton")); |
|
42 |
|
43 gridLayout->addWidget(loadFromFileButton, 0, 0, 1, 1); |
|
44 |
|
45 label = new QLabel(Dialog); |
|
46 label->setObjectName(QString::fromUtf8("label")); |
|
47 label->setAlignment(Qt::AlignCenter); |
|
48 label->setWordWrap(true); |
|
49 |
|
50 gridLayout->addWidget(label, 1, 0, 1, 1); |
|
51 |
|
52 loadFromSharedMemoryButton = new QPushButton(Dialog); |
|
53 loadFromSharedMemoryButton->setObjectName(QString::fromUtf8("loadFromSharedMemoryButton")); |
|
54 |
|
55 gridLayout->addWidget(loadFromSharedMemoryButton, 2, 0, 1, 1); |
|
56 |
|
57 |
|
58 retranslateUi(Dialog); |
|
59 |
|
60 QMetaObject::connectSlotsByName(Dialog); |
|
61 } // setupUi |
|
62 |
|
63 void retranslateUi(QDialog *Dialog) |
|
64 { |
|
65 Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", 0, QApplication::UnicodeUTF8)); |
|
66 loadFromFileButton->setText(QApplication::translate("Dialog", "Load Image From File...", 0, QApplication::UnicodeUTF8)); |
|
67 label->setText(QApplication::translate("Dialog", "Launch two of these dialogs. In the first, press the top button and load an image from a file. In the second, press the bottom button and display the loaded image from shared memory.", 0, QApplication::UnicodeUTF8)); |
|
68 loadFromSharedMemoryButton->setText(QApplication::translate("Dialog", "Display Image From Shared Memory", 0, QApplication::UnicodeUTF8)); |
|
69 } // retranslateUi |
|
70 |
|
71 }; |
|
72 |
|
73 namespace Ui { |
|
74 class Dialog: public Ui_Dialog {}; |
|
75 } // namespace Ui |
|
76 |
|
77 QT_END_NAMESPACE |
|
78 |
|
79 #endif // DIALOG_H |