Go to most recent revision | Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 3 | PointedEar | 1 | /*------------------------------------------------------------------------------------------*\ |
| 2 | This file contains material supporting chapter 1 of the cookbook: |
||
| 3 | Computer Vision Programming using the OpenCV Library. |
||
| 4 | by Robert Laganiere, Packt Publishing, 2011. |
||
| 5 | |||
| 6 | This program is free software; permission is hereby granted to use, copy, modify, |
||
| 7 | and distribute this source code, or portions thereof, for any purpose, without fee, |
||
| 8 | subject to the restriction that the copyright notice may not be removed |
||
| 9 | or altered from any source or altered source distribution. |
||
| 10 | The software is released on an as-is basis and without any warranties of any kind. |
||
| 11 | In particular, the software is not guaranteed to be fault-tolerant or free from failure. |
||
| 12 | The author disclaims all warranties with regard to this software, any use, |
||
| 13 | and any consequent failure, is purely the responsibility of the user. |
||
| 14 | |||
| 15 | Copyright (C) 2010-2011 Robert Laganiere, www.laganiere.name |
||
| 16 | \*------------------------------------------------------------------------------------------*/ |
||
| 17 | |||
| 18 | /******************************************************************************** |
||
| 19 | ** Form generated from reading UI file 'mainwindow.ui' |
||
| 20 | ** |
||
| 21 | ** Created: Tue Jun 29 12:53:36 2010 |
||
| 22 | ** by: Qt User Interface Compiler version 4.6.3 |
||
| 23 | ** |
||
| 24 | ** WARNING! All changes made in this file will be lost when recompiling UI file! |
||
| 25 | ********************************************************************************/ |
||
| 26 | |||
| 27 | #ifndef UI_MAINWINDOW_H |
||
| 28 | #define UI_MAINWINDOW_H |
||
| 29 | |||
| 30 | #include <QtCore/QVariant> |
||
| 31 | #include <QtGui/QAction> |
||
| 32 | #include <QtGui/QApplication> |
||
| 33 | #include <QtGui/QButtonGroup> |
||
| 34 | #include <QtGui/QHeaderView> |
||
| 35 | #include <QtGui/QMainWindow> |
||
| 36 | #include <QtGui/QMenuBar> |
||
| 37 | #include <QtGui/QPushButton> |
||
| 38 | #include <QtGui/QStatusBar> |
||
| 39 | #include <QtGui/QToolBar> |
||
| 40 | #include <QtGui/QWidget> |
||
| 41 | |||
| 42 | QT_BEGIN_NAMESPACE |
||
| 43 | |||
| 44 | class Ui_MainWindow |
||
| 45 | { |
||
| 46 | public: |
||
| 47 | QWidget *centralWidget; |
||
| 48 | QPushButton *pushButton; |
||
| 49 | QPushButton *pushButton_2; |
||
| 50 | QMenuBar *menuBar; |
||
| 51 | QToolBar *mainToolBar; |
||
| 52 | QStatusBar *statusBar; |
||
| 53 | |||
| 54 | void setupUi(QMainWindow *MainWindow) |
||
| 55 | { |
||
| 56 | if (MainWindow->objectName().isEmpty()) |
||
| 57 | MainWindow->setObjectName(QString::fromUtf8("MainWindow")); |
||
| 58 | MainWindow->resize(262, 214); |
||
| 59 | centralWidget = new QWidget(MainWindow); |
||
| 60 | centralWidget->setObjectName(QString::fromUtf8("centralWidget")); |
||
| 61 | pushButton = new QPushButton(centralWidget); |
||
| 62 | pushButton->setObjectName(QString::fromUtf8("pushButton")); |
||
| 63 | pushButton->setGeometry(QRect(60, 20, 141, 51)); |
||
| 64 | pushButton_2 = new QPushButton(centralWidget); |
||
| 65 | pushButton_2->setObjectName(QString::fromUtf8("pushButton_2")); |
||
| 66 | pushButton_2->setGeometry(QRect(60, 90, 141, 51)); |
||
| 67 | MainWindow->setCentralWidget(centralWidget); |
||
| 68 | menuBar = new QMenuBar(MainWindow); |
||
| 69 | menuBar->setObjectName(QString::fromUtf8("menuBar")); |
||
| 70 | menuBar->setGeometry(QRect(0, 0, 262, 25)); |
||
| 71 | MainWindow->setMenuBar(menuBar); |
||
| 72 | mainToolBar = new QToolBar(MainWindow); |
||
| 73 | mainToolBar->setObjectName(QString::fromUtf8("mainToolBar")); |
||
| 74 | MainWindow->addToolBar(Qt::TopToolBarArea, mainToolBar); |
||
| 75 | statusBar = new QStatusBar(MainWindow); |
||
| 76 | statusBar->setObjectName(QString::fromUtf8("statusBar")); |
||
| 77 | MainWindow->setStatusBar(statusBar); |
||
| 78 | |||
| 79 | retranslateUi(MainWindow); |
||
| 80 | |||
| 81 | QMetaObject::connectSlotsByName(MainWindow); |
||
| 82 | } // setupUi |
||
| 83 | |||
| 84 | void retranslateUi(QMainWindow *MainWindow) |
||
| 85 | { |
||
| 86 | MainWindow->setWindowTitle(QApplication::translate("MainWindow", "My Qt Application", 0, QApplication::UnicodeUTF8)); |
||
| 87 | pushButton->setText(QApplication::translate("MainWindow", "Open Image", 0, QApplication::UnicodeUTF8)); |
||
| 88 | pushButton_2->setText(QApplication::translate("MainWindow", "Process", 0, QApplication::UnicodeUTF8)); |
||
| 89 | } // retranslateUi |
||
| 90 | |||
| 91 | }; |
||
| 92 | |||
| 93 | namespace Ui { |
||
| 94 | class MainWindow: public Ui_MainWindow {}; |
||
| 95 | } // namespace Ui |
||
| 96 | |||
| 97 | QT_END_NAMESPACE |
||
| 98 | |||
| 99 | #endif // UI_MAINWINDOW_H |