/*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * * adymo@kdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library 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 Library General Public * * License along with this program; if not, write to the * * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef DMAINWINDOW_H #define DMAINWINDOW_H #include #include #include "ddockwindow.h" class DTabWidget; namespace Ideal { class DockSplitter; } /**Main window which provides simplified IDEA mode.*/ class DMainWindow: public KParts::MainWindow { Q_OBJECT public: DMainWindow(QWidget *parent = 0, const char *name = 0); virtual ~DMainWindow(); /**@return The tool window in given @p position.*/ DDockWindow *toolWindow(DDockWindow::Position position) const; /**Adds a tabbed widget into the active (focused) tab widget. If @p widget is null then only tab is created.*/ virtual void addWidget(QWidget *widget, const QString &title); virtual void addWidget(DTabWidget *tab, QWidget *widget, const QString &title); /**Removes widget. Does not delete it.*/ virtual void removeWidget(QWidget *widget); /**Moves a widget from an existing dockposition to a new position**/ virtual void moveWidget(DDockWindow::Position newPosition, QWidget *widget, const QString & title); /**Adds a dock widget into given position.*/ virtual void addDockWidget(DDockWindow::Position position, QWidget *view, const QString &title); /**Removes a dock widget.*/ virtual void removeDockWidget(QWidget *view); virtual void saveSettings(); bool hasDockWidget(QWidget *view); DDockWindow::Position dockWidgetPosition(QWidget *view); public slots: DTabWidget *splitHorizontal(); DTabWidget *splitVertical(); protected slots: /**This does nothing. Reimplement in subclass to close the tab when corner close button is pressed.*/ virtual void closeTab(); /**This does nothing. Reimplement in subclass to close the tab when hover close button is pressed.*/ virtual void closeTab(QWidget*); /**This does nothing. Reimplement in subclass to show tab context menu.*/ virtual void tabContext(QWidget*,const QPoint &); void widgetDestroyed(); signals: void widgetChanged(QWidget *); protected: bool eventFilter(QObject *obj, QEvent *ev); virtual void loadSettings(); virtual void createToolWindows(); virtual DTabWidget *createTab(); DDockWindow *m_leftDock; DDockWindow *m_rightDock; DDockWindow *m_bottomDock; QMap m_docks; Ideal::DockSplitter *m_central; DTabWidget *m_activeTabWidget; QValueList m_tabs; bool m_openTabAfterCurrent; bool m_showIconsOnTabs; bool m_firstRemoved; QValueList m_widgets; QMap m_widgetTabs; QWidget *m_currentWidget; private slots: void invalidateActiveTabWidget(); }; #endif