70 lines
2.4 KiB
C++
70 lines
2.4 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2009 by Stefan Weinzierl *
|
|
* Stefan@Weinzierl-Stefan.de *
|
|
* *
|
|
* 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 program; if not, write to the *
|
|
* Free Software Foundation, Inc., *
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
***************************************************************************/
|
|
#ifndef WINDOWMENU_H
|
|
#define WINDOWMENU_H
|
|
|
|
#include <QMenu>
|
|
|
|
class QMdiArea;
|
|
class QSignalMapper;
|
|
class QTabWidget;
|
|
|
|
/**
|
|
@author Stefan Weinzierl <Stefan@Weinzierl-Stefan.de>
|
|
*/
|
|
class WindowMenu : public QMenu
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
WindowMenu(const QString &title, QWidget *parent=0);
|
|
~WindowMenu();
|
|
|
|
void setMdi(QMdiArea *mdi);
|
|
void setTabWidget(QTabWidget*);
|
|
|
|
protected slots:
|
|
void showMenu();
|
|
void showMoreWindows();
|
|
void setActive(QWidget *w);
|
|
|
|
void tabbedView(bool);
|
|
|
|
void showHideTab(bool);
|
|
|
|
private:
|
|
QList<QAction*> m_actions;
|
|
QMdiArea *m_mdi;
|
|
QTabWidget* m_tab;
|
|
QSignalMapper *m_windowMapper;
|
|
QAction *m_closeAct;
|
|
QAction *m_closeAllAct;
|
|
QAction *m_tabbedAct;
|
|
QAction *m_tileAct;
|
|
QAction *m_cascadeAct;
|
|
QAction *m_nextAct;
|
|
QAction *m_previousAct;
|
|
QAction *m_moreAct;
|
|
QMenu *m_customMenu;
|
|
QMenu *m_toolBars;
|
|
QMenu *m_docks;
|
|
};
|
|
|
|
#endif
|