Subversion Repositories OpenCV2-Cookbook

Rev

Rev 3 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5 PointedEar 1
/********************************************************************************
2
** Form generated from reading UI file 'mainwindow.ui'
3
**
4
** Created by: Qt User Interface Compiler version 4.8.6
5
**
6
** WARNING! All changes made in this file will be lost when recompiling UI file!
7
********************************************************************************/
8
 
9
#ifndef UI_MAINWINDOW_H
10
#define UI_MAINWINDOW_H
11
 
12
#include <QtCore/QVariant>
13
#include <QtGui/QAction>
14
#include <QtGui/QApplication>
15
#include <QtGui/QButtonGroup>
16
#include <QtGui/QHeaderView>
17
#include <QtGui/QLabel>
18
#include <QtGui/QMainWindow>
19
#include <QtGui/QMenuBar>
20
#include <QtGui/QPushButton>
21
#include <QtGui/QStatusBar>
22
#include <QtGui/QToolBar>
23
#include <QtGui/QWidget>
24
 
25
QT_BEGIN_NAMESPACE
26
 
27
class Ui_MainWindow
28
{
29
public:
30
    QWidget *centralWidget;
31
    QPushButton *pushButton;
32
    QPushButton *pushButton_2;
33
    QLabel *label;
34
    QMenuBar *menuBar;
35
    QToolBar *mainToolBar;
36
    QStatusBar *statusBar;
37
 
38
    void setupUi(QMainWindow *MainWindow)
39
    {
40
        if (MainWindow->objectName().isEmpty())
41
            MainWindow->setObjectName(QString::fromUtf8("MainWindow"));
42
        MainWindow->resize(572, 326);
43
        centralWidget = new QWidget(MainWindow);
44
        centralWidget->setObjectName(QString::fromUtf8("centralWidget"));
45
        pushButton = new QPushButton(centralWidget);
46
        pushButton->setObjectName(QString::fromUtf8("pushButton"));
47
        pushButton->setGeometry(QRect(10, 10, 111, 51));
48
        pushButton_2 = new QPushButton(centralWidget);
49
        pushButton_2->setObjectName(QString::fromUtf8("pushButton_2"));
50
        pushButton_2->setGeometry(QRect(10, 70, 111, 51));
51
        label = new QLabel(centralWidget);
52
        label->setObjectName(QString::fromUtf8("label"));
53
        label->setGeometry(QRect(160, 10, 391, 261));
54
        MainWindow->setCentralWidget(centralWidget);
55
        menuBar = new QMenuBar(MainWindow);
56
        menuBar->setObjectName(QString::fromUtf8("menuBar"));
57
        menuBar->setGeometry(QRect(0, 0, 572, 25));
58
        MainWindow->setMenuBar(menuBar);
59
        mainToolBar = new QToolBar(MainWindow);
60
        mainToolBar->setObjectName(QString::fromUtf8("mainToolBar"));
61
        MainWindow->addToolBar(Qt::TopToolBarArea, mainToolBar);
62
        statusBar = new QStatusBar(MainWindow);
63
        statusBar->setObjectName(QString::fromUtf8("statusBar"));
64
        MainWindow->setStatusBar(statusBar);
65
 
66
        retranslateUi(MainWindow);
67
 
68
        QMetaObject::connectSlotsByName(MainWindow);
69
    } // setupUi
70
 
71
    void retranslateUi(QMainWindow *MainWindow)
72
    {
73
        MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MainWindow", 0, QApplication::UnicodeUTF8));
74
        pushButton->setText(QApplication::translate("MainWindow", "Open Image", 0, QApplication::UnicodeUTF8));
75
        pushButton_2->setText(QApplication::translate("MainWindow", "Process", 0, QApplication::UnicodeUTF8));
76
        label->setText(QApplication::translate("MainWindow", "Image", 0, QApplication::UnicodeUTF8));
77
    } // retranslateUi
78
 
79
};
80
 
81
namespace Ui {
82
    class MainWindow: public Ui_MainWindow {};
83
} // namespace Ui
84
 
85
QT_END_NAMESPACE
86
 
87
#endif // UI_MAINWINDOW_H