2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#ifndef MAINWINDOW_H
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
|
|
|
#include "diagramitem.h"
|
|
|
|
|
2012-11-23 08:31:03 +00:00
|
|
|
#include <QMainWindow>
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
class DiagramScene;
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QAction;
|
|
|
|
class QToolBox;
|
|
|
|
class QSpinBox;
|
|
|
|
class QComboBox;
|
|
|
|
class QFontComboBox;
|
|
|
|
class QButtonGroup;
|
|
|
|
class QLineEdit;
|
|
|
|
class QGraphicsTextItem;
|
|
|
|
class QFont;
|
|
|
|
class QToolButton;
|
|
|
|
class QAbstractButton;
|
|
|
|
class QGraphicsView;
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
//! [0]
|
|
|
|
class MainWindow : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
MainWindow();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void backgroundButtonGroupClicked(QAbstractButton *button);
|
2020-01-25 19:43:13 +00:00
|
|
|
void buttonGroupClicked(QAbstractButton *button);
|
2011-04-27 10:05:43 +00:00
|
|
|
void deleteItem();
|
2020-01-25 19:43:13 +00:00
|
|
|
void pointerGroupClicked();
|
2011-04-27 10:05:43 +00:00
|
|
|
void bringToFront();
|
|
|
|
void sendToBack();
|
|
|
|
void itemInserted(DiagramItem *item);
|
|
|
|
void textInserted(QGraphicsTextItem *item);
|
|
|
|
void currentFontChanged(const QFont &font);
|
|
|
|
void fontSizeChanged(const QString &size);
|
|
|
|
void sceneScaleChanged(const QString &scale);
|
|
|
|
void textColorChanged();
|
|
|
|
void itemColorChanged();
|
|
|
|
void lineColorChanged();
|
|
|
|
void textButtonTriggered();
|
|
|
|
void fillButtonTriggered();
|
|
|
|
void lineButtonTriggered();
|
|
|
|
void handleFontChange();
|
|
|
|
void itemSelected(QGraphicsItem *item);
|
|
|
|
void about();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void createToolBox();
|
|
|
|
void createActions();
|
|
|
|
void createMenus();
|
|
|
|
void createToolbars();
|
|
|
|
QWidget *createBackgroundCellWidget(const QString &text,
|
|
|
|
const QString &image);
|
|
|
|
QWidget *createCellWidget(const QString &text,
|
|
|
|
DiagramItem::DiagramType type);
|
2022-11-23 08:24:01 +00:00
|
|
|
|
|
|
|
template<typename PointerToMemberFunction>
|
|
|
|
QMenu *createColorMenu(const PointerToMemberFunction &slot, QColor defaultColor);
|
2011-04-27 10:05:43 +00:00
|
|
|
QIcon createColorToolButtonIcon(const QString &image, QColor color);
|
|
|
|
QIcon createColorIcon(QColor color);
|
|
|
|
|
|
|
|
DiagramScene *scene;
|
|
|
|
QGraphicsView *view;
|
|
|
|
|
|
|
|
QAction *exitAction;
|
|
|
|
QAction *addAction;
|
|
|
|
QAction *deleteAction;
|
|
|
|
|
|
|
|
QAction *toFrontAction;
|
|
|
|
QAction *sendBackAction;
|
|
|
|
QAction *aboutAction;
|
|
|
|
|
|
|
|
QMenu *fileMenu;
|
|
|
|
QMenu *itemMenu;
|
|
|
|
QMenu *aboutMenu;
|
|
|
|
|
|
|
|
QToolBar *textToolBar;
|
|
|
|
QToolBar *editToolBar;
|
|
|
|
QToolBar *colorToolBar;
|
|
|
|
QToolBar *pointerToolbar;
|
|
|
|
|
|
|
|
QComboBox *sceneScaleCombo;
|
|
|
|
QComboBox *itemColorCombo;
|
|
|
|
QComboBox *textColorCombo;
|
|
|
|
QComboBox *fontSizeCombo;
|
|
|
|
QFontComboBox *fontCombo;
|
|
|
|
|
|
|
|
QToolBox *toolBox;
|
|
|
|
QButtonGroup *buttonGroup;
|
|
|
|
QButtonGroup *pointerTypeGroup;
|
|
|
|
QButtonGroup *backgroundButtonGroup;
|
|
|
|
QToolButton *fontColorToolButton;
|
|
|
|
QToolButton *fillColorToolButton;
|
|
|
|
QToolButton *lineColorToolButton;
|
|
|
|
QAction *boldAction;
|
|
|
|
QAction *underlineAction;
|
|
|
|
QAction *italicAction;
|
|
|
|
QAction *textAction;
|
|
|
|
QAction *fillAction;
|
|
|
|
QAction *lineAction;
|
|
|
|
};
|
|
|
|
//! [0]
|
|
|
|
|
2012-11-23 08:31:03 +00:00
|
|
|
#endif // MAINWINDOW_H
|