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