LimeReport/limereport/lrreportdesignwidget.h

286 lines
10 KiB
C
Raw Permalink Normal View History

2016-02-17 10:11:00 +03:00
/***************************************************************************
* This file is part of the Lime Report project *
2021-08-18 20:21:36 +03:00
* Copyright (C) 2021 by Alexander Arin *
2016-02-17 10:11:00 +03:00
* arin_a@bk.ru *
* *
** GNU General Public License Usage **
* *
* This library is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* *
** GNU Lesser General Public License **
* *
* This library is free software: you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as *
* published by the Free Software Foundation, either version 3 of the *
* License, or (at your option) any later version. *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library. *
* If not, see <http://www.gnu.org/licenses/>. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
****************************************************************************/
#ifndef LRREPORTDESIGNWIDGET_H
#define LRREPORTDESIGNWIDGET_H
#include <QObject>
#include <QGraphicsView>
#include <QMainWindow>
2016-06-10 18:05:18 +03:00
#include <QTextEdit>
2016-02-17 10:11:00 +03:00
#include "lrpagedesignintf.h"
#include "lrdatadesignintf.h"
#include "lrdatasourcemanager.h"
#include "lrcollection.h"
#include "lrreportengine_p.h"
#include "lrgraphicsviewzoom.h"
2016-02-17 10:11:00 +03:00
2021-08-23 08:07:08 +03:00
#if QT_VERSION < 0x050000
2017-10-26 12:11:33 +03:00
QT_BEGIN_NAMESPACE
class LimeReportTabWidget: public QTabWidget{
2017-10-26 12:24:06 +03:00
Q_OBJECT
2017-10-26 12:11:33 +03:00
public:
explicit LimeReportTabWidget(QWidget *parent = 0):QTabWidget(parent){}
QTabBar* tabBar() const{ return QTabWidget::tabBar();}
};
QT_END_NAMESPACE
#endif
2016-02-17 10:11:00 +03:00
namespace LimeReport {
class ReportEnginePrivate;
class DataBrowser;
class ReportDesignWindow;
class DialogDesignerManager;
class DialogDesigner;
2017-08-05 01:38:19 +03:00
class TranslationEditor;
2017-09-13 17:16:54 +03:00
class ScriptEditor;
2016-02-17 10:11:00 +03:00
class Ruler: public QWidget{
public:
enum RulerType{Horizontal, Vertical};
Ruler(RulerType type, QWidget* parent = 0): QWidget(parent), m_page(0), m_type(type){}
void setPage(PageItemDesignIntf* page);
void setMousePos(QPoint mousePos){ m_mousePos = mousePos;}
protected:
void paintEvent(QPaintEvent* event);
void drawItemWithChildren(QPainter *painter, BaseDesignIntf* item);
void drawItem(QPainter *painter, BaseDesignIntf* item);
private:
PageItemDesignIntf* m_page;
RulerType m_type;
QPoint m_mousePos;
};
class PageView: public QGraphicsView{
public:
PageView(QWidget *parent = NULL): QGraphicsView(parent),
m_horizontalRuller(0), m_verticalRuller(0)
{
setViewportMargins(20,20,0,0);
}
PageView(QGraphicsScene *scene, QWidget *parent = NULL):
QGraphicsView(scene, parent),
m_horizontalRuller(0), m_verticalRuller(0)
{
setViewportMargins(20,20,0,0);
}
void setPageItem(PageItemDesignIntf* pageItem);
protected:
bool viewportEvent(QEvent *event);
private:
PageItemDesignIntf* m_pageItem;
Ruler* m_horizontalRuller;
Ruler* m_verticalRuller;
};
2016-02-17 10:11:00 +03:00
class ReportDesignWidget : public QWidget
{
Q_OBJECT
2021-08-18 05:32:45 +03:00
Q_PROPERTY(QObject* datasourcesManager READ dataManager)
2016-02-17 10:11:00 +03:00
public:
enum ToolWindowType{
WidgetBox = 1,
ObjectInspector = 2,
ActionEditor = 3,
SignalSlotEditor = 4,
PropertyEditor = 5,
ResourceEditor = 6
};
enum EditorTabType{
Page,
Dialog,
2017-08-05 01:38:19 +03:00
Script,
Translations,
TabTypeCount
};
2019-01-29 23:18:24 +03:00
ReportDesignWidget(ReportEnginePrivateInterface* report, QSettings* settings,
QMainWindow *mainWindow, QWidget *parent = 0);
2016-02-17 10:11:00 +03:00
~ReportDesignWidget();
PageDesignIntf *createStartPage();
void createTabs();
2016-02-17 10:11:00 +03:00
void clear();
DataSourceManager* dataManager();
2016-06-10 18:05:18 +03:00
ScriptEngineManager* scriptManager();
ScriptEngineContext* scriptContext();
2016-02-17 10:11:00 +03:00
void removeDatasource(const QString& datasourceName);
void addBand(const QString& bandType);
void addBand(BandDesignIntf::BandsType bandType);
void startInsertMode(const QString& itemType);
void startEditMode();
void updateSize();
bool isCanUndo();
bool isCanRedo();
void deleteItem(QGraphicsItem *item);
PageDesignIntf* activePage();
2016-06-10 18:05:18 +03:00
QGraphicsView* activeView();
2016-02-17 10:11:00 +03:00
QList<QGraphicsItem *> selectedItems();
QStringList datasourcesNames();
void scale( qreal sx, qreal sy);
2017-11-24 00:13:47 +03:00
ReportEnginePrivateInterface* report(){return m_report;}
2016-02-17 10:11:00 +03:00
QString reportFileName();
bool isNeedToSave();
bool emitSaveReport();
bool emitSaveReportAs();
2016-02-17 10:39:17 +03:00
bool emitLoadReport();
void saveState();
2019-01-29 23:18:24 +03:00
void loadState();
void applySettings();
void applyUseGrid();
bool useGrid(){ return m_useGrid;}
2016-02-21 01:08:54 +03:00
bool useMagnet() const;
void setUseMagnet(bool useMagnet);
EditorTabType activeTabType();
#ifdef HAVE_QTDESIGNER_INTEGRATION
void initDialogDesignerToolBar(QToolBar* toolBar);
void updateDialogs();
DialogDesignerManager *dialogDesignerManager() const;
QString activeDialogName();
DialogDesigner* activeDialogPage();
QWidget* toolWindow(ToolWindowType windowType);
#endif
2016-02-17 10:11:00 +03:00
public slots:
bool saveToFile(const QString&);
2016-02-17 10:11:00 +03:00
bool save();
bool loadFromFile(const QString&);
2016-02-17 10:11:00 +03:00
void deleteSelectedItems();
2016-06-10 18:05:18 +03:00
void connectPage(PageDesignIntf* page);
2016-02-17 10:11:00 +03:00
void undo();
void redo();
void copy();
void paste();
void cut();
2018-12-23 11:41:24 +03:00
void bringToFront();
2016-02-17 10:11:00 +03:00
void sendToBack();
void alignToLeft();
void alignToRight();
void alignToVCenter();
void alignToTop();
void alignToBottom();
void alignToHCenter();
void sameHeight();
void sameWidth();
void editLayoutMode(bool value);
void addHLayout();
2018-06-21 14:29:00 +03:00
void addVLayout();
2016-02-17 10:11:00 +03:00
void setFont(const QFont &font);
2016-02-17 10:39:17 +03:00
void setTextAlign(const bool &horizontalAlign, const Qt::AlignmentFlag &alignment);
2016-02-17 10:11:00 +03:00
void setBorders(const BaseDesignIntf::BorderLines& borders);
2022-10-31 21:20:24 +03:00
void setBordersExt(const BaseDesignIntf::BorderLines &border, const double borderWidth,
const LimeReport::BaseDesignIntf::BorderStyle style, const QString color);
void editSetting();
void setUseGrid(bool value);
2016-06-10 18:05:18 +03:00
void previewReport();
void printReport();
void addPage();
void deleteCurrentPage();
void slotPagesLoadFinished();
void slotDialogDeleted(QString dialogName);
void lockSelectedItems();
void unlockSelectedItems();
void selectOneLevelItems();
#ifdef HAVE_QTDESIGNER_INTEGRATION
void addNewDialog();
#endif
2016-02-17 10:11:00 +03:00
private slots:
void slotItemSelected(LimeReport::BaseDesignIntf *item);
void slotSelectionChanged();
void slotDatasourceCollectionLoaded(const QString&);
void slotSceneRectChanged(QRectF);
2016-06-10 18:05:18 +03:00
void slotCurrentTabChanged(int index);
2018-05-08 10:58:43 +03:00
void slotReportLoaded();
2019-02-05 21:51:46 +03:00
void slotScriptTextChanged();
2019-07-24 03:13:23 +03:00
void slotItemPropertyObjectNameChanged(const QString& oldName, const QString& newName);
#ifdef HAVE_QTDESIGNER_INTEGRATION
void slotDialogChanged(QString);
void slotDialogNameChanged(QString oldName, QString newName);
#endif
2017-08-19 00:16:55 +03:00
void slotPagePropertyObjectNameChanged(const QString& oldValue, const QString& newValue);
void slotTabMoved(int from, int to);
2016-02-17 10:11:00 +03:00
signals:
void insertModeStarted();
void itemInserted(LimeReport::PageDesignIntf*,QPointF,const QString&);
void itemInsertCanceled(const QString&);
void itemSelected(LimeReport::BaseDesignIntf *item);
void itemPropertyChanged(const QString& objectName, const QString& propertyName, const QVariant& oldValue, const QVariant& newValue);
void multiItemSelected();
void commandHistoryChanged();
void cleared();
2018-05-31 18:49:57 +03:00
void loadFinished();
2016-02-17 10:11:00 +03:00
void activePageChanged();
void activePageUpdated(LimeReport::PageDesignIntf*);
2016-02-17 10:11:00 +03:00
void bandAdded(LimeReport::PageDesignIntf*, LimeReport::BandDesignIntf*);
void bandDeleted(LimeReport::PageDesignIntf*, LimeReport::BandDesignIntf*);
void itemAdded(LimeReport::PageDesignIntf*, LimeReport::BaseDesignIntf*);
void itemDeleted(LimeReport::PageDesignIntf*, LimeReport::BaseDesignIntf*);
2016-06-10 18:05:18 +03:00
void pageAdded(PageDesignIntf* page);
void pageDeleted();
protected:
2019-07-23 17:06:07 +03:00
PageView *createPageView(PageDesignIntf *page);
#ifdef HAVE_QTDESIGNER_INTEGRATION
void createNewDialogTab(const QString& dialogName,const QByteArray& description);
#endif
2016-02-17 10:11:00 +03:00
private:
2016-02-17 10:19:50 +03:00
bool eventFilter(QObject *target, QEvent *event);
2017-12-11 16:48:00 +03:00
void prepareReport();
2019-05-26 15:15:06 +03:00
void initThemeIfExist(const QString& themeName, const QString& path);
2016-02-17 10:11:00 +03:00
private:
2017-11-24 00:13:47 +03:00
ReportEnginePrivateInterface* m_report;
2016-02-17 10:11:00 +03:00
QGraphicsView *m_view;
2017-09-20 00:51:17 +03:00
ScriptEditor* m_scriptEditor;
2017-08-05 01:38:19 +03:00
TranslationEditor* m_traslationEditor;
#ifdef HAVE_QTDESIGNER_INTEGRATION
DialogDesignerManager* m_dialogDesignerManager;
#endif
2016-02-17 10:11:00 +03:00
QMainWindow *m_mainWindow;
2021-08-23 08:07:08 +03:00
#if QT_VERSION < 0x050000
2017-10-26 12:11:33 +03:00
LimeReportTabWidget* m_tabWidget;
2021-08-23 08:07:08 +03:00
#else
2017-10-26 12:24:06 +03:00
QTabWidget* m_tabWidget;
2017-10-26 12:11:33 +03:00
#endif
GraphicsViewZoomer* m_zoomer;
QFont m_defaultFont;
int m_verticalGridStep;
int m_horizontalGridStep;
bool m_useGrid;
2016-02-21 01:08:54 +03:00
bool m_useMagnet;
bool m_dialogChanged;
2019-05-26 15:15:06 +03:00
QString m_theme;
2019-01-29 23:18:24 +03:00
QSettings* m_settings;
2019-05-26 15:15:06 +03:00
QMap<QString, QString> m_themes;
QMap<QString, QString> m_localToEng;
BaseDesignIntf::UnitType m_defaultUnits;
2019-07-23 17:06:07 +03:00
2016-02-17 10:11:00 +03:00
};
2017-09-13 17:16:54 +03:00
} // namespace LimeReport
2016-02-17 10:11:00 +03:00
#endif // LRREPORTDESIGNWIDGET_H