// abstractformwindow.sip generated by MetaSIP on Fri Sep 28 17:07:47 2007 // // This file is part of the QtDesigner Python extension module. // // Copyright (c) 2007 // Phil Thompson // // This file is part of PyQt. // // This copy of PyQt is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License version 2 as published by // the Free Software Foundation and appearing in the file LICENSE included in the // packaging of this file. // // PyQt is supplied 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. // // You should have received a copy of the GNU General Public License along with // PyQt; see the file LICENSE. If not, write to the Free Software Foundation, // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. class QDesignerFormWindowInterface : QWidget /Abstract/ { %TypeHeaderCode #include %End public: enum FeatureFlag { EditFeature, GridFeature, TabOrderFeature, DefaultFeature, }; typedef QFlags Feature; QDesignerFormWindowInterface(QWidget *parent /TransferThis/ = 0, Qt::WindowFlags flags = 0); virtual ~QDesignerFormWindowInterface(); virtual QString fileName() const = 0; virtual QDir absoluteDir() const = 0; virtual QString contents() const = 0; virtual void setContents(QIODevice *dev) = 0; virtual QFlags features() const = 0; virtual bool hasFeature(QFlags f) const = 0; virtual QString author() const = 0; virtual void setAuthor(const QString &author) = 0; virtual QString comment() const = 0; virtual void setComment(const QString &comment) = 0; virtual void layoutDefault(int *margin, int *spacing) = 0; virtual void setLayoutDefault(int margin, int spacing) = 0; virtual void layoutFunction(QString *margin /Out/, QString *spacing /Out/) = 0; virtual void setLayoutFunction(const QString &margin, const QString &spacing) = 0; virtual QString pixmapFunction() const = 0; virtual void setPixmapFunction(const QString &pixmapFunction) = 0; virtual QString exportMacro() const = 0; virtual void setExportMacro(const QString &exportMacro) = 0; virtual QStringList includeHints() const = 0; virtual void setIncludeHints(const QStringList &includeHints) = 0; virtual QDesignerFormEditorInterface *core() const; virtual QDesignerFormWindowCursorInterface *cursor() const = 0; virtual QPoint grid() const = 0; virtual QWidget *mainContainer() const = 0; virtual void setMainContainer(QWidget *mainContainer) = 0; virtual bool isManaged(QWidget *widget) const = 0; virtual bool isDirty() const = 0; static QDesignerFormWindowInterface *findFormWindow(QWidget *w); virtual void emitSelectionChanged() = 0; virtual QStringList resourceFiles() const = 0; virtual void addResourceFile(const QString &path) = 0; virtual void removeResourceFile(const QString &path) = 0; public slots: virtual void manageWidget(QWidget *widget) = 0; virtual void unmanageWidget(QWidget *widget) = 0; virtual void setFeatures(QFlags f) = 0; virtual void setDirty(bool dirty) = 0; virtual void clearSelection(bool changePropertyDisplay = true) = 0; virtual void selectWidget(QWidget *w, bool select = true) = 0; virtual void setGrid(const QPoint &grid) = 0; virtual void setFileName(const QString &fileName) = 0; virtual void setContents(const QString &contents) = 0; signals: void mainContainerChanged(QWidget *mainContainer); void fileNameChanged(const QString &fileName); void featureChanged(QFlags f); void selectionChanged(); void geometryChanged(); void resourceFilesChanged(); void widgetManaged(QWidget *widget); void widgetUnmanaged(QWidget *widget); void aboutToUnmanageWidget(QWidget *widget); void activated(QWidget *widget); void changed(); void widgetRemoved(QWidget *w); };