/**************************************************************************** ** ** Copyright (C) 2021 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt Designer of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** $QT_END_LICENSE$ ** ** ** ** ** ** ** ** ****************************************************************************/ #ifndef ABSTRACTFORMWINDOWMANAGER_H #define ABSTRACTFORMWINDOWMANAGER_H #include #include #include #include QT_BEGIN_NAMESPACE class QDesignerFormEditorInterface; class QDesignerDnDItemInterface; class QWidget; class QPixmap; class QAction; class QActionGroup; class QDESIGNER_SDK_EXPORT QDesignerFormWindowManagerInterface: public QObject { Q_OBJECT public: explicit QDesignerFormWindowManagerInterface(QObject *parent = nullptr); virtual ~QDesignerFormWindowManagerInterface(); enum Action { #if QT_CONFIG(clipboard) CutAction = 100, CopyAction, PasteAction, #endif DeleteAction = 103, SelectAllAction, LowerAction = 200, RaiseAction, UndoAction = 300, RedoAction, HorizontalLayoutAction = 400, VerticalLayoutAction, SplitHorizontalAction, SplitVerticalAction, GridLayoutAction, FormLayoutAction, BreakLayoutAction, AdjustSizeAction, SimplifyLayoutAction, DefaultPreviewAction = 500, FormWindowSettingsDialogAction = 600 }; enum ActionGroup { StyledPreviewActionGroup = 100 }; virtual QAction *action(Action action) const = 0; virtual QActionGroup *actionGroup(ActionGroup actionGroup) const = 0; #if QT_CONFIG(clipboard) QAction *actionCut() const; QAction *actionCopy() const; QAction *actionPaste() const; #endif QAction *actionDelete() const; QAction *actionSelectAll() const; QAction *actionLower() const; QAction *actionRaise() const; QAction *actionUndo() const; QAction *actionRedo() const; QAction *actionHorizontalLayout() const; QAction *actionVerticalLayout() const; QAction *actionSplitHorizontal() const; QAction *actionSplitVertical() const; QAction *actionGridLayout() const; QAction *actionFormLayout() const; QAction *actionBreakLayout() const; QAction *actionAdjustSize() const; QAction *actionSimplifyLayout() const; virtual QDesignerFormWindowInterface *activeFormWindow() const = 0; virtual int formWindowCount() const = 0; virtual QDesignerFormWindowInterface *formWindow(int index) const = 0; virtual QDesignerFormWindowInterface *createFormWindow(QWidget *parentWidget = nullptr, Qt::WindowFlags flags = Qt::WindowFlags()) = 0; virtual QDesignerFormEditorInterface *core() const = 0; virtual void dragItems(const QList &item_list) = 0; virtual QPixmap createPreviewPixmap() const = 0; Q_SIGNALS: void formWindowAdded(QDesignerFormWindowInterface *formWindow); void formWindowRemoved(QDesignerFormWindowInterface *formWindow); void activeFormWindowChanged(QDesignerFormWindowInterface *formWindow); void formWindowSettingsChanged(QDesignerFormWindowInterface *fw); public Q_SLOTS: virtual void addFormWindow(QDesignerFormWindowInterface *formWindow) = 0; virtual void removeFormWindow(QDesignerFormWindowInterface *formWindow) = 0; virtual void setActiveFormWindow(QDesignerFormWindowInterface *formWindow) = 0; virtual void showPreview() = 0; virtual void closeAllPreviews() = 0; virtual void showPluginDialog() = 0; private: QScopedPointer d; }; QT_END_NAMESPACE #endif // ABSTRACTFORMWINDOWMANAGER_H