Hardware Design: SIE
Sign in or create your account | Project List | Help
Hardware Design: SIE Git Source Tree
Root/
| 1 | /**************************************************************************** |
| 2 | ** |
| 3 | ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 4 | ** All rights reserved. |
| 5 | ** Contact: Nokia Corporation (qt-info@nokia.com) |
| 6 | ** |
| 7 | ** This file is part of the examples of the Qt Toolkit. |
| 8 | ** |
| 9 | ** $QT_BEGIN_LICENSE:LGPL$ |
| 10 | ** Commercial Usage |
| 11 | ** Licensees holding valid Qt Commercial licenses may use this file in |
| 12 | ** accordance with the Qt Commercial License Agreement provided with the |
| 13 | ** Software or, alternatively, in accordance with the terms contained in |
| 14 | ** a written agreement between you and Nokia. |
| 15 | ** |
| 16 | ** GNU Lesser General Public License Usage |
| 17 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
| 18 | ** General Public License version 2.1 as published by the Free Software |
| 19 | ** Foundation and appearing in the file LICENSE.LGPL included in the |
| 20 | ** packaging of this file. Please review the following information to |
| 21 | ** ensure the GNU Lesser General Public License version 2.1 requirements |
| 22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
| 23 | ** |
| 24 | ** In addition, as a special exception, Nokia gives you certain additional |
| 25 | ** rights. These rights are described in the Nokia Qt LGPL Exception |
| 26 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
| 27 | ** |
| 28 | ** GNU General Public License Usage |
| 29 | ** Alternatively, this file may be used under the terms of the GNU |
| 30 | ** General Public License version 3.0 as published by the Free Software |
| 31 | ** Foundation and appearing in the file LICENSE.GPL included in the |
| 32 | ** packaging of this file. Please review the following information to |
| 33 | ** ensure the GNU General Public License version 3.0 requirements will be |
| 34 | ** met: http://www.gnu.org/copyleft/gpl.html. |
| 35 | ** |
| 36 | ** If you have questions regarding the use of this file, please contact |
| 37 | ** Nokia at qt-info@nokia.com. |
| 38 | ** $QT_END_LICENSE$ |
| 39 | ** |
| 40 | ****************************************************************************/ |
| 41 | |
| 42 | #ifndef MAINWINDOW_H |
| 43 | #define MAINWINDOW_H |
| 44 | |
| 45 | #include <QMainWindow> |
| 46 | #include <QDir> |
| 47 | #include <QtXml> |
| 48 | |
| 49 | #include "diagramscene.h" |
| 50 | #include "diagramtextitem.h" |
| 51 | #include "lineitem.h" |
| 52 | #include "arrow.h" |
| 53 | #include <QtGui> |
| 54 | |
| 55 | class DiagramScene; |
| 56 | |
| 57 | QT_BEGIN_NAMESPACE |
| 58 | class QAction; |
| 59 | class QToolBox; |
| 60 | class QSpinBox; |
| 61 | class QComboBox; |
| 62 | class QFontComboBox; |
| 63 | class QButtonGroup; |
| 64 | class QLineEdit; |
| 65 | class QGraphicsTextItem; |
| 66 | class QFont; |
| 67 | class QToolButton; |
| 68 | class QAbstractButton; |
| 69 | class QGraphicsView; |
| 70 | QT_END_NAMESPACE |
| 71 | |
| 72 | class MainWindow : public QMainWindow |
| 73 | { |
| 74 | Q_OBJECT |
| 75 | |
| 76 | public: |
| 77 | MainWindow(); |
| 78 | QString filePath() const |
| 79 | { return myFilePath;} |
| 80 | QString currentDir() const |
| 81 | { return QDir::currentPath();} |
| 82 | |
| 83 | void saveIfNeeded(); |
| 84 | void updateProt(); |
| 85 | |
| 86 | QStatusBar *statusBar; |
| 87 | |
| 88 | QLabel * headerLabel; |
| 89 | QTextEdit * headerTextEdit; |
| 90 | QLabel * initLabel; |
| 91 | QTextEdit * initTextEdit; |
| 92 | QLabel * prototypeLabel; |
| 93 | QTextEdit * blockTextEdit; |
| 94 | QLabel * extraLabel; |
| 95 | QTextEdit * extraTextEdit; |
| 96 | |
| 97 | private slots: |
| 98 | void deleteItem(); |
| 99 | void sceneScaleChanged(const QString &scale); |
| 100 | void about(); |
| 101 | bool newDiagram(QString pathFile=""); |
| 102 | bool openDiagram(); |
| 103 | bool saveDiagram(); |
| 104 | bool saveAsDiagram(); |
| 105 | void buttonGroupClicked(int id); |
| 106 | void textInserted(QGraphicsTextItem*); |
| 107 | |
| 108 | private: |
| 109 | void createToolBox(); |
| 110 | void createActions(); |
| 111 | void createMenus(); |
| 112 | void createToolbars(); |
| 113 | |
| 114 | QWidget *createToolButton(int ID, QString type,QIcon icon); |
| 115 | |
| 116 | DiagramScene *scene; |
| 117 | QGraphicsView *view; |
| 118 | |
| 119 | QAction *newAction; |
| 120 | QAction *saveAction; |
| 121 | QAction *saveAsAction; |
| 122 | QAction *openAction; |
| 123 | |
| 124 | QAction *exitAction; |
| 125 | QAction *addAction; |
| 126 | QAction *deleteAction; |
| 127 | |
| 128 | QAction *aboutAction; |
| 129 | |
| 130 | QMenu *fileMenu; |
| 131 | QMenu *itemMenu; |
| 132 | QMenu *aboutMenu; |
| 133 | |
| 134 | QToolBar *fileToolBar; |
| 135 | QToolBar *editToolBar; |
| 136 | |
| 137 | QToolBox *toolBox; |
| 138 | |
| 139 | QComboBox *sceneScaleCombo; |
| 140 | |
| 141 | QButtonGroup *buttonGroup; |
| 142 | |
| 143 | int selectedButton; |
| 144 | |
| 145 | QString myFilePath; |
| 146 | |
| 147 | }; |
| 148 | |
| 149 | |
| 150 | #endif |
| 151 |
Branches:
master
