// qtoolbar.sip generated by MetaSIP on Fri Sep 28 17:07:47 2007 // // This file is part of the QtGui 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 QToolBar : QWidget { %TypeHeaderCode #include %End public: QToolBar(const QString &title, QWidget *parent /TransferThis/ = 0); explicit QToolBar(QWidget *parent /TransferThis/ = 0); virtual ~QToolBar(); void setMovable(bool movable); bool isMovable() const; void setAllowedAreas(Qt::ToolBarAreas areas); Qt::ToolBarAreas allowedAreas() const; bool isAreaAllowed(Qt::ToolBarArea area) const; void setOrientation(Qt::Orientation orientation); Qt::Orientation orientation() const; void clear(); void addAction(QAction *action); QAction *addAction(const QString &text) /Transfer/; QAction *addAction(const QIcon &icon, const QString &text) /Transfer/; QAction *addAction(const QString &text, SIP_RXOBJ_CON receiver, SIP_SLOT_CON() member) /Transfer/; QAction *addAction(const QIcon &icon, const QString &text, SIP_RXOBJ_CON receiver, SIP_SLOT_CON() member) /Transfer/; QAction *addSeparator() /Transfer/; QAction *insertSeparator(QAction *before) /Transfer/; QAction *addWidget(QWidget *widget /Transfer/) /Transfer/; QAction *insertWidget(QAction *before, QWidget *widget /Transfer/) /Transfer/; QRect actionGeometry(QAction *action) const; QAction *actionAt(const QPoint &p) const; QAction *actionAt(int ax, int ay) const; QAction *toggleViewAction() const; QSize iconSize() const; Qt::ToolButtonStyle toolButtonStyle() const; %If (Qt_4_2_0 -) QWidget *widgetForAction(QAction *action) const; %End public slots: void setIconSize(const QSize &iconSize); void setToolButtonStyle(Qt::ToolButtonStyle toolButtonStyle); signals: void actionTriggered(QAction *action); void movableChanged(bool movable); void allowedAreasChanged(Qt::ToolBarAreas allowedAreas); void orientationChanged(Qt::Orientation orientation); void iconSizeChanged(const QSize &iconSize); void toolButtonStyleChanged(Qt::ToolButtonStyle toolButtonStyle); protected: %If (Qt_4_3_0 -) void initStyleOption(QStyleOptionToolBar *option) const; %End virtual void actionEvent(QActionEvent *event); virtual void changeEvent(QEvent *event); virtual void childEvent(QChildEvent *event); virtual void paintEvent(QPaintEvent *event); virtual void resizeEvent(QResizeEvent *event); virtual bool event(QEvent *event); public: %If (Qt_4_3_0 -) bool isFloatable() const; %End %If (Qt_4_3_0 -) void setFloatable(bool floatable); %End %If (Qt_4_3_0 -) bool isFloating() const; %End private: QToolBar(const QToolBar &); };