qdesigner_command_p.h
来自「奇趣公司比较新的qt/emd版本」· C头文件 代码 · 共 954 行 · 第 1/2 页
H
954 行
/******************************************************************************** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.**** This file is part of the Qt Designer of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file. Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://trolltech.com/products/qt/licenses/licensing/opensource/**** If you are unsure which license is appropriate for your use, please** review the following information:** http://trolltech.com/products/qt/licenses/licensing/licensingoverview** or contact the sales department at sales@trolltech.com.**** In addition, as a special exception, Trolltech gives you certain** additional rights. These rights are described in the Trolltech GPL** Exception version 1.0, which can be found at** http://www.trolltech.com/products/qt/gplexception/ and in the file** GPL_EXCEPTION.txt in this package.**** In addition, as a special exception, Trolltech, as the sole copyright** holder for Qt Designer, grants users of the Qt/Eclipse Integration** plug-in the right for the Qt/Eclipse Integration to link to** functionality provided by Qt Designer and its related libraries.**** Trolltech reserves all rights not expressly granted herein.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************///// W A R N I N G// -------------//// This file is not part of the Qt API. It exists for the convenience// of Qt Designer. This header// file may change from version to version without notice, or even be removed.//// We mean it.//#ifndef QDESIGNER_COMMAND_H#define QDESIGNER_COMMAND_H#include "shared_global_p.h"#include "layoutinfo_p.h"#include "qdesigner_formwindowcommand_p.h"#include "qdesigner_formeditorcommand_p.h"#include <QtDesigner/layoutdecoration.h>#include <QtGui/QIcon>#include <QtCore/QObject>#include <QtCore/QPair>#include <QtCore/QMap>#include <QtCore/QPoint>class QDesignerContainerExtension;class QDesignerMetaDataBaseItemInterface;class QDesignerMenu;class QMenuBar;class QStatusBar;class QToolBar;class QToolBox;class QTabWidget;class QTableWidget;class QTreeWidget;class QTreeWidgetItem;class QListWidget;class QComboBox;class QStackedWidget;class QDockWidget;class QMainWindow;namespace qdesigner_internal {class Layout;class QDESIGNER_SHARED_EXPORT InsertWidgetCommand: public QDesignerFormWindowCommand{public: InsertWidgetCommand(QDesignerFormWindowInterface *formWindow); void init(QWidget *widget, bool already_in_form = false); virtual void redo(); virtual void undo();private: void refreshBuddyLabels(); QPointer<QWidget> m_widget; QDesignerLayoutDecorationExtension::InsertMode m_insertMode; QPair<int, int> m_cell; bool m_widgetWasManaged;};class QDESIGNER_SHARED_EXPORT RaiseWidgetCommand: public QDesignerFormWindowCommand{public: RaiseWidgetCommand(QDesignerFormWindowInterface *formWindow); void init(QWidget *widget); virtual void redo(); virtual void undo();private: QPointer<QWidget> m_widget;};class QDESIGNER_SHARED_EXPORT LowerWidgetCommand: public QDesignerFormWindowCommand{public: LowerWidgetCommand(QDesignerFormWindowInterface *formWindow); void init(QWidget *widget); virtual void redo(); virtual void undo();private: QPointer<QWidget> m_widget;};class QDESIGNER_SHARED_EXPORT AdjustWidgetSizeCommand: public QDesignerFormWindowCommand{public: AdjustWidgetSizeCommand(QDesignerFormWindowInterface *formWindow); void init(QWidget *widget); virtual void redo(); virtual void undo();private: QPointer<QWidget> m_widget; QRect m_geometry;};class QDESIGNER_SHARED_EXPORT DeleteWidgetCommand: public QDesignerFormWindowCommand{public: DeleteWidgetCommand(QDesignerFormWindowInterface *formWindow); void init(QWidget *widget); virtual void redo(); virtual void undo();private: QPointer<QWidget> m_widget; QPointer<QWidget> m_parentWidget; QRect m_geometry; LayoutInfo::Type m_layoutType; int m_index; int m_row, m_col; int m_rowspan, m_colspan; QDesignerMetaDataBaseItemInterface *m_formItem; int m_tabOrderIndex; QList<QPointer<QWidget> > m_managedChildren;};class QDESIGNER_SHARED_EXPORT ReparentWidgetCommand: public QDesignerFormWindowCommand{public: ReparentWidgetCommand(QDesignerFormWindowInterface *formWindow); void init(QWidget *widget, QWidget *parentWidget); virtual void redo(); virtual void undo();private: QPointer<QWidget> m_widget; QPoint m_oldPos; QPoint m_newPos; QPointer<QWidget> m_oldParentWidget; QPointer<QWidget> m_newParentWidget; QList<QWidget *> m_oldParentList;};class QDESIGNER_SHARED_EXPORT ChangeLayoutItemGeometry: public QDesignerFormWindowCommand{public: ChangeLayoutItemGeometry(QDesignerFormWindowInterface *formWindow); void init(QWidget *widget, int row, int column, int rowspan, int colspan); virtual void redo(); virtual void undo();protected: void changeItemPosition(const QRect &g);private: QPointer<QWidget> m_widget; QRect m_oldInfo; QRect m_newInfo;};class QDESIGNER_SHARED_EXPORT InsertRowCommand: public QDesignerFormWindowCommand{public: InsertRowCommand(QDesignerFormWindowInterface *formWindow); void init(QWidget *widget, int row); virtual void redo(); virtual void undo();private: QPointer<QWidget> m_widget; int m_row;};class QDESIGNER_SHARED_EXPORT TabOrderCommand: public QDesignerFormWindowCommand{public: TabOrderCommand(QDesignerFormWindowInterface *formWindow); void init(const QList<QWidget*> &newTabOrder); inline QList<QWidget*> oldTabOrder() const { return m_oldTabOrder; } inline QList<QWidget*> newTabOrder() const { return m_newTabOrder; } virtual void redo(); virtual void undo();private: QDesignerMetaDataBaseItemInterface *m_widgetItem; QList<QWidget*> m_oldTabOrder; QList<QWidget*> m_newTabOrder;};class QDESIGNER_SHARED_EXPORT PromoteToCustomWidgetCommand : public QDesignerFormWindowCommand{public: typedef QList<QPointer<QWidget> > WidgetList; PromoteToCustomWidgetCommand(QDesignerFormWindowInterface *formWindow); void init(const WidgetList &widgets, const QString &customClassName); virtual void redo(); virtual void undo();private: void updateSelection(); WidgetList m_widgets; QString m_customClassName;};class QDESIGNER_SHARED_EXPORT DemoteFromCustomWidgetCommand : public QDesignerFormWindowCommand{public: typedef PromoteToCustomWidgetCommand::WidgetList WidgetList; DemoteFromCustomWidgetCommand(QDesignerFormWindowInterface *formWindow); void init(const WidgetList &promoted); virtual void redo(); virtual void undo();private: PromoteToCustomWidgetCommand m_promote_cmd;};class QDESIGNER_SHARED_EXPORT LayoutCommand: public QDesignerFormWindowCommand{public: LayoutCommand(QDesignerFormWindowInterface *formWindow); virtual ~LayoutCommand(); inline QList<QWidget*> widgets() const { return m_widgets; } void init(QWidget *parentWidget, const QList<QWidget*> &widgets, LayoutInfo::Type layoutType, QWidget *layoutBase = 0, bool splitter = false); virtual void redo(); virtual void undo();private: QPointer<QWidget> m_parentWidget; QList<QWidget*> m_widgets; QPointer<QWidget> m_layoutBase; QPointer<Layout> m_layout;};class QDESIGNER_SHARED_EXPORT BreakLayoutCommand: public QDesignerFormWindowCommand{public: BreakLayoutCommand(QDesignerFormWindowInterface *formWindow); virtual ~BreakLayoutCommand(); inline QList<QWidget*> widgets() const { return m_widgets; } void init(const QList<QWidget*> &widgets, QWidget *layoutBase); virtual void redo(); virtual void undo();private: QList<QWidget*> m_widgets; QPointer<QWidget> m_layoutBase; QPointer<Layout> m_layout; int m_leftMargin; int m_topMargin; int m_rightMargin; int m_bottomMargin; int m_spacing; int m_horizSpacing; int m_vertSpacing; bool m_leftMarginChanged; bool m_topMarginChanged; bool m_rightMarginChanged; bool m_bottomMarginChanged; bool m_spacingChanged; bool m_horizSpacingChanged; bool m_vertSpacingChanged;};class QDESIGNER_SHARED_EXPORT ToolBoxCommand: public QDesignerFormWindowCommand{public: ToolBoxCommand(QDesignerFormWindowInterface *formWindow); virtual ~ToolBoxCommand(); void init(QToolBox *toolBox); virtual void removePage(); virtual void addPage();protected: QPointer<QToolBox> m_toolBox; QPointer<QWidget> m_widget; int m_index; QString m_itemText; QIcon m_itemIcon;};class QDESIGNER_SHARED_EXPORT MoveToolBoxPageCommand: public ToolBoxCommand{public: MoveToolBoxPageCommand(QDesignerFormWindowInterface *formWindow); virtual ~MoveToolBoxPageCommand(); void init(QToolBox *toolBox, QWidget *page, int newIndex); virtual void redo(); virtual void undo();private: int m_newIndex; int m_oldIndex;};class QDESIGNER_SHARED_EXPORT DeleteToolBoxPageCommand: public ToolBoxCommand{public: DeleteToolBoxPageCommand(QDesignerFormWindowInterface *formWindow); virtual ~DeleteToolBoxPageCommand(); void init(QToolBox *toolBox); virtual void redo(); virtual void undo();};class QDESIGNER_SHARED_EXPORT AddToolBoxPageCommand: public ToolBoxCommand{public: enum InsertionMode { InsertBefore, InsertAfter }; AddToolBoxPageCommand(QDesignerFormWindowInterface *formWindow); virtual ~AddToolBoxPageCommand(); void init(QToolBox *toolBox); void init(QToolBox *toolBox, InsertionMode mode); virtual void redo(); virtual void undo();};class QDESIGNER_SHARED_EXPORT TabWidgetCommand: public QDesignerFormWindowCommand{public: TabWidgetCommand(QDesignerFormWindowInterface *formWindow); virtual ~TabWidgetCommand(); void init(QTabWidget *tabWidget); virtual void removePage(); virtual void addPage();protected: QPointer<QTabWidget> m_tabWidget; QPointer<QWidget> m_widget; int m_index; QString m_itemText; QIcon m_itemIcon;};class QDESIGNER_SHARED_EXPORT DeleteTabPageCommand: public TabWidgetCommand{public: DeleteTabPageCommand(QDesignerFormWindowInterface *formWindow); virtual ~DeleteTabPageCommand(); void init(QTabWidget *tabWidget); virtual void redo(); virtual void undo();};class QDESIGNER_SHARED_EXPORT AddTabPageCommand: public TabWidgetCommand{public: enum InsertionMode { InsertBefore, InsertAfter }; AddTabPageCommand(QDesignerFormWindowInterface *formWindow); virtual ~AddTabPageCommand(); void init(QTabWidget *tabWidget); void init(QTabWidget *tabWidget, InsertionMode mode); virtual void redo(); virtual void undo();};class QDESIGNER_SHARED_EXPORT MoveTabPageCommand: public TabWidgetCommand{public: MoveTabPageCommand(QDesignerFormWindowInterface *formWindow); virtual ~MoveTabPageCommand(); void init(QTabWidget *tabWidget, QWidget *page, const QIcon &icon, const QString &label, int index, int newIndex); virtual void redo(); virtual void undo();
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?