/* * psitoolbar.h - the Psi toolbar class * Copyright (C) 2003 Michail Pishchagin * * This program 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 2 * of the License, or (at your option) any later version. * * This program 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. * * You should have received a copy of the GNU General Public License * along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #ifndef PSITOOLBAR_H #define PSITOOLBAR_H #include #include "common.h" #include "psiactionlist.h" class PsiCon; class PsiToolBar : public QToolBar { Q_OBJECT public: PsiToolBar(const QString &label, QMainWindow *mainWindow, QWidget *parent, bool newLine = FALSE, const char *name = 0, WFlags f = 0); PsiToolBar(QMainWindow *parent = 0, const char *name = 0); ~PsiToolBar(); void setPsiCon( PsiCon *psi ); PsiActionList::ActionsType type() const; void setType( PsiActionList::ActionsType ); void initialize( Options::ToolbarPrefs &, bool createUniqueActions ); QString group() const; int groupIndex() const; void setGroup( QString group, int index ); bool isCustomizeable() const; void setCustomizeable( bool ); bool isMoveable() const; void setMoveable( bool ); signals: void registerAction( IconAction * ); protected: void contextMenuEvent(QContextMenuEvent *e); private: class Private; Private *d; }; #endif