You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdelibs/tdeui/kdockwidget.h

1554 lines
46 KiB

/* This file is part of the KDE libraries
Copyright (C) 2000 Max Judin <novaprint@mtu-net.ru>
Copyright (C) 2000 Falk Brettschneider <falk@kdevelop.org>
Copyright (C) 2002,2003 Joseph Wenninger <jowenn@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
/*
activities:
-----------
05/2001 - : useful patches, bugfixes by Christoph Cullmann <crossfire@babylon2k.de>,
Joseph Wenninger <jowenn@bigfoot.com> and Falk Brettschneider
03/2001 - 05/2001 : maintained and enhanced by Falk Brettschneider <falk@kdevelop.org>
03/2000 : class documentation added by Falk Brettschneider <gigafalk@yahoo.com>
10/1999 - 03/2000 : programmed by Max Judin <novaprint@mtu-net.ru>
C++ classes in this file:
-------------------------
- KDockWidgetAbstractHeader - minor helper class
- KDockWidgetAbstractHeaderDrag - minor helper class
- KDockWidgetHeaderDrag - drag panel in a dockwidget title bar
- KDockWidgetHeader - dockwidget title bar containing the drag panel
- KDockTabGroup - minor helper class
- KDockWidget - IMPORTANT CLASS: the one and only dockwidget class
- KDockManager - helper class
- KDockMainWindow - IMPORTANT CLASS: a special TDEMainWindow that can have dockwidgets
- KDockArea - like KDockMainWindow but inherits just TQWidget
IMPORTANT Note: This file compiles also in Qt-only mode by using the NO_KDE2 precompiler definition!
*/
#ifndef KDOCKWIDGET_H
#define KDOCKWIDGET_H
#define _KDOCKWIDGET_2_2_
#include <tqpoint.h>
#include <tqptrlist.h>
#include <tqframe.h>
#include <tqdom.h>
#include <tqtabwidget.h>
#ifndef NO_KDE2
#include <tdemainwindow.h>
#include <netwm_def.h>
#else
#include <tqmainwindow.h>
#include "exportdockclass.h"
#include "dummytdemainwindow.h"
#endif
class KDockSplitter;
class KDockManager;
class KDockMoveManager;
class KDockWidget;
class KDockButton_Private;
class KDockWidgetPrivate;
class KDockWidgetHeaderPrivate;
class KDockArea;
class TQObjectList;
class TQPopupMenu;
class TQVBoxLayout;
class TQHBoxLayout;
class TQPixmap;
#ifndef NO_KDE2
class TDEToolBar;
class TDEConfig;
#else
class TQToolBar;
#endif
class KDockContainer;
namespace KMDI
{
class MainWindow;
}
/**
* An abstract base clase for all dockwidget headers (and member of the dockwidget class set).
* See the class description of KDockWidgetHeader!
* More or less a minor helper class for the dockwidget class set.
*
* @author Max Judin (documentation: Falk Brettschneider).
*/
class TDEUI_EXPORT KDockWidgetAbstractHeader : public TQFrame
{
TQ_OBJECT
public:
/**
* Constructs this.
*
* @param parent the parent widget (usually a dockwidget)
* @param name the object instance name
*/
KDockWidgetAbstractHeader( KDockWidget* parent, const char* name = 0L );
/**
* Destructs this.
*/
virtual ~KDockWidgetAbstractHeader(){}
/**
* Provides things concerning to switching to toplevel mode. Must be overridden by an inheriting class.
*/
virtual void setTopLevel( bool ){}
#ifndef NO_KDE2
/**
* Provides saving the current configuration. Must be overridden by an inheriting class.
*/
virtual void saveConfig( TDEConfig* ){}
/**
* Provides loading the current configuration. Must be overridden by an inheriting class
*/
virtual void loadConfig( TDEConfig* ){}
#endif
protected:
virtual void virtual_hook( int id, void* data );
private:
class KDockWidgetAbstractHeaderPrivate;
KDockWidgetAbstractHeaderPrivate *d;
};
/**
* An abstract class for all dockwidget drag-panels of a dockwidgets (and member of the dockwidget class set).
* See the class description of KDockWidgetHeaderDrag!
* More or less a minor helper class for the dockwidget class set.
*
* @author Max Judin (documentation: Falk Brettschneider).
*/
class TDEUI_EXPORT KDockWidgetAbstractHeaderDrag : public TQFrame
{
TQ_OBJECT
public:
/**
* Constructs this.
*
* @param parent the parent widget (usually a dockwidget header)
* @param dock the dockwidget where it belongs to
* @param name the object instance name
*/
KDockWidgetAbstractHeaderDrag( KDockWidgetAbstractHeader* parent,
KDockWidget* dock, const char* name = 0L );
/**
* Destructs this.
*/
virtual ~KDockWidgetAbstractHeaderDrag(){}
/**
* @return the dockwidget where this belongs to
*/
KDockWidget* dockWidget() const { return dw; }
private:
/**
* the dockwidget where this belongs to
*/
KDockWidget* dw;
protected:
virtual void virtual_hook( int id, void* data );
private:
class KDockWidgetAbstractHeaderDragPrivate;
KDockWidgetAbstractHeaderDragPrivate *d;
};
/**
* This special widget is the panel one can grip with the mouses (and member of the dockwidget class set).
* The widget for dragging, so to speak.
* Usually it is located in the KDockWidgetHeader.
* More or less a minor helper class for the dockwidget class set.
*
* @author Max Judin (documentation: Falk Brettschneider).
*/
class TDEUI_EXPORT KDockWidgetHeaderDrag : public KDockWidgetAbstractHeaderDrag
{
TQ_OBJECT
public:
/**
* Constructs this.
*
* @param parent the parent widget (usually a dockwidget header)
* @param dock the dockwidget where it belongs to
* @param name the object instance name
*/
KDockWidgetHeaderDrag( KDockWidgetAbstractHeader* parent, KDockWidget* dock,
const char* name = 0L );
/**
* Destructs this.
*/
virtual ~KDockWidgetHeaderDrag(){}
protected:
/**
* Draws the drag panel (a double line)
*/
virtual void paintEvent( TQPaintEvent* );
protected:
virtual void virtual_hook( int id, void* data );
private:
class KDockWidgetHeaderDragPrivate;
KDockWidgetHeaderDragPrivate *d;
};
/**
* The header (additional bar) for a KDockWidget s (and member of the dockwidget class set).
* It have got the buttons located there. And it is for recording and reading the button states.
* More or less a minor helper class for the dockwidget class set.
*
* @author Max Judin (documentation: Falk Brettschneider).
*/
class TDEUI_EXPORT KDockWidgetHeader : public KDockWidgetAbstractHeader
{
TQ_OBJECT
public:
/**
* Constructs this.
*
* @param parent the parent widget (usually a dockwidget)
* @param name the object instance name
*/
KDockWidgetHeader( KDockWidget* parent, const char* name = 0L );
/**
* Destructs this.
*/
virtual ~KDockWidgetHeader(){}
/**
* Hides the close button and stay button when switching to toplevel or vice versa shows them.
*
* @param t toplevel or not
*/
virtual void setTopLevel( bool t);
/**
* Sets the drag panel of this header.
*
* @param nd A pointer to the new drag panel
*/
void setDragPanel( KDockWidgetHeaderDrag* nd );
/**
* Get the drag panel of this header.
*
* @since 3.4
*/
KDockWidgetHeaderDrag *dragPanel();
bool dragEnabled() const;
void setDragEnabled(bool b);
/// @since 3.1
void showUndockButton(bool show);
/// @since 3.2
void forceCloseButtonHidden(bool enable=true);
#ifndef NO_KDE2
/**
* Saves the current button state to a KDE config container object.
*
* @param c the configuration safe
*/
virtual void saveConfig( TDEConfig* c);
/**
* Loads the current button state from a KDE config container object.
*
* @param c the configuration safe
*/
virtual void loadConfig( TDEConfig* c);
#endif
/*@since 3.2
* add an arbitrary button to the dockwidget header
* NOT PART OF THE PUBLIC API (you don't have access the class defintion anyways, without special
* header file copying. (don't do it))
*/
void addButton(KDockButton_Private*);
/*@since 3.2
* remove an arbtrary button from the dockwidget header
* NOT PART OF THE PUBLIC API (you don't have access the class defintion anyways, without special
* header file copying. (don't do it))
*/
void removeButton(KDockButton_Private*);
protected slots:
/**
* Sets dragging the dockwidget off when the stay button is pressed down and vice versa.
*/
void slotStayClicked();
protected:
/**
* A layout manager for placing the embedded buttons (close and stay)
*/
TQHBoxLayout* layout;
/**
* a little button for closing (undocking and hiding) the dockwidget
*/
KDockButton_Private* closeButton;
/**
* a little button for enabling/disabling dragging the dockwidget with the mouse
*/
KDockButton_Private* stayButton;
/**
* a little button for dock back the dockwidget to it's previous dockwidget
*/
KDockButton_Private* dockbackButton;
/**
* the drag panel (double line)
*/
KDockWidgetHeaderDrag* drag;
protected:
virtual void virtual_hook( int id, void* data );
private:
KDockWidgetHeaderPrivate *d;
};
/**
* It just hides the special implementation of a dockwidget tab groups (and is member of the dockwidget class set).
* An abstraction what it is currently.
* In general it is like TQTabWidget but is more useful for the dockwidget class set.
* More or less a minor helper class for the dockwidget class set.
*
* @author Max Judin (documentation: Falk Brettschneider).
*/
class TDEUI_EXPORT KDockTabGroup : public TQTabWidget
{
TQ_OBJECT
public:
/**
* Constructs this. It just calls the method of the base class.
*/
KDockTabGroup( TQWidget *parent = 0, const char *name = 0 )
:TQTabWidget( parent, name ){}
/**
* Destructs a KDockTabGroup.
*/
virtual ~KDockTabGroup(){}
TQWidget *transientTo();
protected:
virtual void virtual_hook( int id, void* data );
private:
class KDockTabGroupPrivate;
KDockTabGroupPrivate *d;
};
/**
* Floatable widget that can be dragged around with the mouse and
* encapsulate the actual widgets (and member of the dockwidget class
* set).
*
* You just grip the double-lined panel, tear it off its parent
* widget, drag it somewhere and let it loose. Depending on the
* position where you leave it, the dockwidget becomes a toplevel
* window on the desktop (floating mode) or docks to a new widget
* (dock mode). Note: A KDockWidget can only be docked to a
* KDockWidget.
*
* If you want to use this kind of widget, your main application
* window has to be a KDockMainWindow. That is because it has
* got several additional dock management features, for instance a
* KDockManager that has an overview over all dockwidgets and and
* a dockmovemanager (internal class) that handles the dock process.
*
* Usually you create an KDockWidget that covers the actual widget in this way:
* \code
* ...
* KDockMainWindow* mainWidget;
* ...
* KDockWidget* dock = 0L;
* dock = mainWidget->createDockWidget( "Any window caption", nicePixmap, 0L, i18n("window caption")); // 0L==no parent
* TQWidget* actualWidget = new TQWidget( dock);
* dock->setWidget( actualWidget); // embed it
* dock->setToolTipString(i18n("That's me")); // available when appearing as tab page
* ...
* \endcode
*
* See KDockMainWindow how a dockwidget is docked in.
*
*
* @author Max Judin (documentation: Falk Brettschneider).
*/
class TDEUI_EXPORT KDockWidget: public TQWidget
{
TQ_OBJECT
friend class KDockManager;
friend class KDockSplitter;
friend class KDockMainWindow;
friend class KDockArea;
public:
/**
* Construct a dockwidget.
*
* Initially, docking to another and docking to this is allowed for
* every @p DockPosition. It is supposed to be no (tab) group. It will
* taken under control of its dockmanager.
*
* @param dockManager The responsible manager (dock helper)
* @param name Object instance name
* @param pixmap An icon (for instance shown when docked centered)
* @param parent Parent widget
* @param strCaption Title of the dockwidget window (shown when toplevel)
* @param strTabPageLabel The title of the tab page (shown when in tab page mode), if it is "", only the icon will be shown, if it is 0L, the label is set to strCaption
* @param f TQt::WidgetFlags widget flags
*/
KDockWidget( KDockManager* dockManager, const char* name,
const TQPixmap &pixmap, TQWidget* parent = 0L, const TQString& strCaption = TQString::null,
const TQString& strTabPageLabel = TQString::fromLatin1( " " ), WFlags f = 0);
/**
* Destructs a dockwidget.
*/
virtual ~KDockWidget();
/**
* The possible positions where a dockwidget can dock to another dockwidget
*/
enum DockPosition
{
DockNone = 0,
DockTop = 0x0001,
DockLeft = 0x0002,
DockRight = 0x0004,
DockBottom = 0x0008,
DockCenter = 0x0010,
DockDesktop= 0x0020,
DockToSpecialSites=0x0040, ///< @since 3.1
DockCorner = DockTop | DockLeft | DockRight | DockBottom,
DockFullSite = DockCorner | DockCenter,
DockFullDocking = DockFullSite | DockDesktop
};
/**
* This is a key method of this class! Use it to dock dockwidgets to
* another dockwidget at the right position within its
* KDockMainWindow or a toplevel dockwidget.
*
*
* If the target is null, it will become a toplevel dockwidget at position pos;
* Note: Docking to another dockwidget means exactly:
* A new parent dockwidget will be created, that replaces the target dockwidget and contains another single helper widget (tab widget or panner)
* which contains both dockwidgets, this and the target dockwidget. So consider parent<->child relationships change completely during such actions.
*
* @param target The dockwidget to dock to
* @param dockPos One of the DockPositions this is going to dock to
* @param spliPos The split relation (in percent, or percent*100 in high resolution) between both dockwidgets, target and this
* @param pos The dock position, mainly of interest for docking to the desktop (as toplevel dockwidget)
* @param check Only for internal use;
* @param tabIndex The position index of the tab widget (when in tab page mode), -1 (default) means append
* @return result The group dockwidget that replaces the target dockwidget and will be grandparent of target and @p this.
*
* @note Since KDE 3.5 the splitter position @p spliPos is always a value between [0..100]. If
* the value is > 100, it will be treated like the old code and normalized to a value between
* 0 and 100. Example: If the value was 4000, it will be fixed to 40. In short: The old and
* the new behavior both work, so it is compatible with older KDE-versions.
*/
KDockWidget* manualDock( KDockWidget* target, DockPosition dockPos, int spliPos = 50, TQPoint pos = TQPoint(0,0), bool check = false, int tabIndex = -1);
/**
* Specify where it is either possible or impossible for this to dock to another dockwidget.
*
* @param pos An OR'ed set of @p DockPositions
*/
void setEnableDocking( int pos );
/**
* @return Where it is either possible or impossible for this to dock to another dockwidget (an OR'ed set of DockPositions).
*/
int enableDocking() const { return eDocking; }
/**
* Specify where it is either possible or impossible for another dockwidget to dock to this.
*
* @param pos An OR'ed set of @p DockPositions
*/
void setDockSite( int pos ){ sDocking = pos;}
/**
* @return There it is either possible or impossible for another dockwidget to dock to this (an OR'ed set of @p DockPositions).
*/
int dockSite() const { return sDocking; }
/**
* Sets the embedded widget.
*
* A TQLayout takes care about proper resizing, automatically.
*
* @param w The pointer to the dockwidget's child widget.
*/
void setWidget( TQWidget* w);
/**
* Get the embedded widget.
*
* @return The pointer to the dockwidget's child widget, 0L if there's no such child.
*/
TQWidget* getWidget() const { return widget; }
/**
* Sets the header of this dockwidget.
*
* A TQLayout takes care about proper resizing, automatically.
* The header contains the drag panel, the close button and the stay button.
*
* @param ah A base class pointer to the dockwidget header
*/
void setHeader( KDockWidgetAbstractHeader* ah);
/**@since 3.2
* get the pointer to the header widget
*/
KDockWidgetAbstractHeader *getHeader();
/**
* Normally it simply shows the dockwidget.
*
* But additionally, if it is docked to a tab widget (@p DockCenter), it is set as the active (visible) tab page.
*/
void makeDockVisible();
/**
* @return If it may be possible to hide this.
*
* There are reasons that it's impossible:
* @li It is a (tab) group.
* @li It is already invisible ;-)
* @li The parent of this is the KDockMainWindow.
* @li It isn't able to dock to another widget.
*/
bool mayBeHide() const;
/**
* @return If it may be possible to show this.
* There are reasons that it's impossible:
* @li It is a (tab) group.
* @li It is already visible ;-)
* @li The parent of this is the @p KDockMainWindow.
*/
bool mayBeShow() const;
/**
* @return The dockmanager that is responsible for this.
*/
KDockManager* dockManager() const { return manager; }
/**
* Stores a string for a tooltip.
*
* That tooltip string has only a meaning when this dockwidget is shown as tab page.
* In this case the tooltip is shown when one holds the mouse cursor on the tab page header.
* Such tooltip will for instance be useful, if you use only icons there.
* Note: Setting an empty string switches the tooltip off.
*
* @param ttStr A string for the tooltip on the tab.
*/
void setToolTipString(const TQString& ttStr) { toolTipStr = ttStr; }
/**
* @return The tooltip string being shown on the appropriate tab page header when in dock-centered mode.
*/
const TQString& toolTipString() const { return toolTipStr; }
/**
* @return result @p true, if a dockback is possible, otherwise @p false.
*/
bool isDockBackPossible() const;
/**
* Sets a string that is used for the label of the tab page when in tab page mode
* @param label The new tab page label.
*/
void setTabPageLabel( const TQString& label) { tabPageTitle = label; }
/**
* @return A string that is used for the label of the tab page when in tab page mode.
*/
const TQString& tabPageLabel() const { return tabPageTitle; }
/**
* Catches and processes some TQWidget events that are interesting for dockwidgets.
*/
virtual bool event( TQEvent * );
/**
* Add dockwidget management actions to TQWidget::show.
*/
virtual void show();
/**
* @return the parent widget of this if it inherits class KDockTabGroup
*/
KDockTabGroup* parentDockTabGroup() const;
/// @since 3.1
TQWidget *parentDockContainer() const;
#ifndef NO_KDE2
/**
* Sets the type of the dock window
*
* @param windowType is type of dock window
*/
void setDockWindowType (NET::WindowType windowType);
#endif
void setDockWindowTransient (TQWidget *parent, bool transientEnabled);
/**
* Returns the widget this dockwidget is set transient to, otherwise 0
* @since 3.2
*/
TQWidget *transientTo();
/**
* Lookup the nearest dockwidget docked left/right/top/bottom to this one or return 0
*
* @param pos is the position the wanted widget is docked to this one
* @since 3.1
*/
KDockWidget *findNearestDockWidget(DockPosition pos);
/**
* Allows changing the pixmap which is used for the caption or dock tabs
*
* @param pixmap is the pixmap to set
* @since 3.2
*/
void setPixmap(const TQPixmap& pixmap=TQPixmap());
/**
* Returns the dockwidget's associated caption/dock tab pixmap
*
* @since 3.2
*/
const TQPixmap& pixmap() const;
/**
* @return the current dock position.
* @since 3.3
*/
KDockWidget::DockPosition currentDockPosition() const;
public slots:
/**
* subject to changes. It doesn't completely work yet without small hacks from within the calling application (Perhaps
* KDE 3.1.x oder 3.2
* width is in pixel. It only affects a widget, which is placed directly into a horizontal KDockSplitter
* @since 3.1
**/
void setForcedFixedWidth(int);
/**
* subject to changes. It doesn't completely work yet without small hacks from within the calling application (Perhaps
* KDE 3.1.x oder 3.2
* height is in pixel. It only affects a widget, which is placed directly into a vertical KDockSplitter
* @since 3.1
**/
void setForcedFixedHeight(int);
/// @since 3.1
void restoreFromForcedFixedSize();
/// @since 3.1
int forcedFixedWidth();
/// @since 3.1
int forcedFixedHeight();
/**
* Docks a dockwidget back to the dockwidget that was the neighbor
widget before the current dock position.
*/
void dockBack();
/**
* Toggles the visibility state of the dockwidget if it is able to be shown or to be hidden.
*/
void changeHideShowState();
/**
* Undocks this. It means it becomes a toplevel widget framed by the system window manager.
* A small panel at the top of this undocked widget gives the possibility to drag it into
* another dockwidget by mouse (docking).
*/
void undock();
/**
* Docks the widget to the desktop (as a toplevel widget)
* @since 3.1
*/
void toDesktop( );
protected:
friend class KMdiMainFrm;
friend class KMDI::MainWindow;
/**
* Checks some conditions and shows or hides the dockwidget header (drag panel).
* The header is hidden if:
* @li the parent widget is the KDockMainWindow
* @li this is a (tab) group dockwidget
* @li it is not able to dock to another dockwidget
*/
void updateHeader();
/// @since 3.1
void setLatestKDockContainer(TQWidget *);
/// @since 3.1
TQWidget *latestKDockContainer();
/// @since 3.2
void setFormerBrotherDockWidget(KDockWidget *);
signals:
/**
*@since 3.2
*is emitted after the setWidget method has finished
*/
void widgetSet(TQWidget*);
/**
* Emitted when another dock widget is docking to this.
*
* @param dw the dockwidget that is docking to this
* @param dp the DockPosition where it wants to dock to
*/
void docking( KDockWidget* dw, KDockWidget::DockPosition dp);
/**
* Signals that the dock default position is set.
*/
void setDockDefaultPos();
/**
* Emitted when the close button of the panel ( KDockWidgetHeader) has been clicked.
*/
void headerCloseButtonClicked();
/**
* Emitted when the dockback button of the panel ( KDockWidgetHeader) has been clicked.
*/
void headerDockbackButtonClicked();
/**
* Emitted when the widget processes a close event.
*/
void iMBeingClosed();
/**
* Emitted when the widget has undocked.
*/
void hasUndocked();
protected slots:
/** Does several things here when it has noticed that the former brother widget (closest neighbor) gets lost.
* The former brother widget is needed for a possible dockback action, to speak with the Beatles:
* "To get back to where you once belonged" ;-)
*/
void loseFormerBrotherDockWidget();
virtual void paintEvent(TQPaintEvent*);
virtual void mousePressEvent(TQMouseEvent*);
virtual void mouseReleaseEvent(TQMouseEvent*);
virtual void mouseMoveEvent(TQMouseEvent*);
virtual void leaveEvent(TQEvent*);
protected:
friend class KDockWidgetHeader;
/**
* earlier closest neighbor widget, so it's possible to dock back to it.
*/
KDockWidget* formerBrotherDockWidget;
/**
* the current dock position.
*/
DockPosition currentDockPos;
/**
* the former dock position when it really was at another position before.
*/
DockPosition formerDockPos;
/**
* a string used as tooltip for the tab page header when in dock-centered mode.
*/
TQString toolTipStr;
/**
* a string used as title of the tab page when in tab page mode
*/
TQString tabPageTitle;
private:
/**
* Sets the caption (window title) of the given tab widget.
*
* @param g the group (tab) widget
*/
void setDockTabName( KDockTabGroup* g);
/**
* Reparent to s or set this to the KDockMainWindow's view if s is that dockmainwindow.
* If s is O, simply move the widget.
*
* @param s the target widget to reparent to
* @param p the point to move to (if it doesn't reparent)
*/
void applyToWidget( TQWidget* s, const TQPoint& p = TQPoint(0,0) );
/**
* A base class pointer to the header of this dockwidget
*/
KDockWidgetAbstractHeader* header;
/**
* the embedded widget
*/
TQWidget* widget;
/**
* the layout manager that takes care about proper resizing and moving the embedded widget and the header
*/
TQVBoxLayout* layout;
/**
* the responsible dockmanager
*/
KDockManager* manager;
/**
* an icon for the tab widget header
*/
TQPixmap* pix;
/**
* Information about the ability for docking to another dockwidget.
*/
int eDocking;
/**
* Information which site of this dockwidget is free for docking of other dockwidgets.
*/
int sDocking;
/**
* Previous side (left,right,top,bottom) where this dockwidget was before a dragging action, none if it wasn't dragged before.
*/
KDockWidget::DockPosition prevSideDockPosBeforeDrag;
// GROUP data
TQString firstName;
TQString lastName;
Orientation splitterOrientation;
bool isGroup;
bool isTabGroup;
protected:
virtual void virtual_hook( int id, void* data );
private:
KDockWidgetPrivate *d;
};
/**
* The manager that knows all dockwidgets and handles the dock process (and member of the dockwidget class set).
* More or less a helper class for the KDockWidget class set but of interest for some functionality
* that can be called within a KDockMainWindow or a KDockWidget .
*
* An important feature is the ability to read or save the current state of all things concerning to
* dockwidgets to TDEConfig .
*
* The dockmanager is also often used when a certain dockwidget or a child of such dockwidget must be found.
*
* @author Max Judin (documentation: Falk Brettschneider).
*/
class TDEUI_EXPORT KDockManager: public TQObject
{
TQ_OBJECT
friend class KDockWidget;
friend class KDockMainWindow;
public:
enum EnReadDockConfigMode {
Unknown,
WrapExistingWidgetsOnly,
RestoreAllDockwidgets
};
public:
/**
* Constructs a dockmanager. Some initialization happen:
* @li It installs an event filter for the main window,
* @li a control list for dock objects
* @li a control list for menu items concerning to menus provided by the dockmanager
* @li Some state variables are set
*
* @param mainWindow the main window controlled by this
* @param name the internal QOject name
*/
KDockManager( TQWidget* mainWindow, const char* name = 0L );
/**
* Destructs a dockmanager.
*/
virtual ~KDockManager();
void dumpDockWidgets();
#ifndef NO_KDE2
/**
* Saves the current state of the dockmanager and of all controlled widgets.
* State means here to save the geometry, visibility, parents, internal object names, orientation,
* separator positions, dockwidget-group information, tab widget states (if it is a tab group) and
* last but not least some necessary things for recovering the dockmainwindow state.
*
* @param c the KDE configuration saver
* @param group the name of the section in TDEConfig
*/
void writeConfig( TDEConfig* c = 0L, TQString group = TQString::null );
/**
* Like writeConfig but reads the whole stuff in.
*
* In order to restore a window configuration
* from a config file, it looks up widgets by name
* (TQObject::name) in the childDock variable of
* KDockManager. This list in turn contains all
* KDockWidgets (according to the KDockWidget constructor).
* So in principle, in order to restore a window layout,
* one must first construct all widgets, put each of them in a
* KDockWidget and then call readConfig(). And for all that
* to work, each widget must have a unique name.
*
* @param c the KDE configuration saver
* @param group the name of the section in TDEConfig
*/
void readConfig ( TDEConfig* c = 0L, TQString group = TQString::null );
#endif
/// @since 3.1
void setMainDockWidget2(KDockWidget *);
/**
* Saves the current dock window layout into a DOM tree below the given element.
*/
void writeConfig(TQDomElement &base);
/**
* Reads the current dock window layout from a DOM tree below the given element.
*/
void readConfig(TQDomElement &base);
/**
* Shows all encapsulated widgets of all controlled dockwidgets and shows all dockwidgets which are
* parent of a dockwidget tab group.
*/
void activate();
/**
* It's more or less a method that catches several events which are interesting for the dockmanager.
* Mainly mouse events during the drag process of a dockwidgets are of interest here.
*
* @param object the object that sends the event
* @param event the event
* @return the return value of the method call of the base class method
*/
virtual bool eventFilter( TQObject * object, TQEvent * event );
/**
* This method finds out what a widgets' dockwidget is. That means the dockmanager has a look at all
* dockwidgets it knows and tells you when one of those dockwidgets covers the given widget.
*
* @param w any widget that is supposed to be encapsulated by one of the controlled dockwidgets
* @return the dockwidget that encapsulates that widget, otherwise 0
*/
KDockWidget* findWidgetParentDock( TQWidget* w) const;
/**
* Works like makeDockVisible() but can be called for widgets that covered by a dockwidget.
*
* @param w the widget that is encapsulated by a dockwidget that turns to visible.
*/
void makeWidgetDockVisible( TQWidget* w ){ findWidgetParentDock(w)->makeDockVisible(); }
/**
* @return the popupmenu for showing/hiding dockwidgets
*/
TQPopupMenu* dockHideShowMenu() const { return menu; }
/**
* @param dockName an internal TQObject name
* @return the dockwidget that has got that internal TQObject name
*/
KDockWidget* getDockWidgetFromName( const TQString& dockName );
/**
* Enables opaque resizing. Opaque resizing defaults to TDEGlobalSettings::opaqueResize().
* Call this method before you create any dock widgets!
*/
void setSplitterOpaqueResize(bool b=true);
/**
* Returns true if opaque resizing is enabled, false otherwise.
*/
bool splitterOpaqueResize() const;
/**
* Try to preserve the widget's size. Works like KeepSize resize mode
* of TQSplitter. Off by default.
* Call this method before you create any dock widgets!
*/
void setSplitterKeepSize(bool b=true);
/**
* Returns true if the KeepSize is enabled, false otherwise.
*/
bool splitterKeepSize() const;
/**
* Operate the splitter with a higher resolution. Off by default.
* Call this method before you create any dock widgets!
* If high resolution is used all splitter position parameters
* are percent*100 instead of percent.
* @note Since KDE 3.5 this is ignored. Internally the splitter always
* calcualtes in high resolution values. For KDE 4, this will be removed.
*/
void setSplitterHighResolution(bool b=true);
/**
* Returns true if the splitter uses the high resolution, false otherwise.
*/
bool splitterHighResolution() const;
/**
* @since 3.2
*/
void setSpecialLeftDockContainer(KDockWidget* container);
void setSpecialTopDockContainer(KDockWidget* container);
void setSpecialRightDockContainer(KDockWidget* container);
void setSpecialBottomDockContainer(KDockWidget* container);
void removeFromAutoCreateList(KDockWidget* pDockWidget);
void finishReadDockConfig();
void setReadDockConfigMode(int mode);
signals:
/**
* Signals changes of the docking state of a dockwidget. Usually the dock-toolbar will be updated then.
*/
void change();
/**
* Signals a dockwidget is replaced with another one.
*/
void replaceDock( KDockWidget* oldDock, KDockWidget* newDock );
/**
* Signals a dockwidget without parent (toplevel) is shown.
*/
void setDockDefaultPos( KDockWidget* );
private slots:
/**
* Clears the popupmenu for showing/hiding dockwidgets and fills it with the current states of all controlled dockwidgets.
*/
void slotMenuPopup();
/**
* This method assumes a menuitem of the popupmenu for showing/hiding dockwidgets is selected and toggles that state.
*
* @param id the popupmenu id of the selected menuitem
*/
void slotMenuActivated( int id);
/* clears the old drawn drag rectangle (oldDragRect) from screen and
* draws the new current drag rectangle (dragRect) depending on the current mouse position.
* This highlights the dockwidget which is the currently chosen target during a dock action.
*/
void drawDragRectangle();
private:
/**
* A data structure containing data about every dockwidget that is under control.
*/
struct MenuDockData
{
MenuDockData( KDockWidget* _dock, bool _hide )
{
dock = _dock;
hide = _hide;
}
~MenuDockData(){}
KDockWidget* dock;
bool hide;
};
/**
* Finds the KDockWidget at the position given as parameter
*
* @param pos global (desktop) position of the wanted dockwidget
* @return the dockwidget at that position
*/
KDockWidget* findDockWidgetAt( const TQPoint& pos );
/**
* Finds the TQWidget recursively at the position given as parameter
*
* @param w a variable where the method puts the TQWidget at that position (instead of a return value)
* @param p the parent widget where the recursive search should start from
* @param pos global (desktop) position of the wanted dockwidget
*/
void findChildDockWidget( TQWidget*& w, const TQWidget* p, const TQPoint& pos );
/**
* Finds all dockwidgets which are child, grandchild and so on of p.
*
* @param p the parent widget where the recursive search starts from
* @param l the widget list that contains the search result after the return of this method
*/
void findChildDockWidget( const TQWidget* p, TQWidgetList*& l);
/**
* Sets a dockwidget in drag mode.
*/
void startDrag( KDockWidget* );
/**
* Moves a dockwidget that is in drag mode.
*
* @param d the dockwidget which is dragged
* @param pos the new position of the dragged dockwidget
*/
void dragMove( KDockWidget* d, TQPoint pos );
/**
* Aborts the drag mode. Restores the cursor and hides the drag indicator.
*/
void cancelDrop();
/**
* Finishes the drag mode. If the user let it drop on an other dockwidget, it will possibly be docked (if allowed),
* if the user drops it outside of the application window it becomes toplevel.
*/
void drop();
// class members
/**
* Usually the KDockMainWindow but not necessarily.
*/
TQWidget* main;
/**
* The dockwidget that is being dragged at the moment
*/
KDockWidget* currentDragWidget;
/**
* The target dockwidget where the currentDragWidget is dropped
*/
KDockWidget* currentMoveWidget; // widget where mouse moving
/**
* It is of interest during the dock process. Then it contains all child dockwidgets.
*/
TQWidgetList* childDockWidgetList;
/**
* The dockposition where the dockwidget would be docked to, if we dropped it here.
*/
KDockWidget::DockPosition curPos;
/**
* A QList of all objects that are important for docking.
* Some serve as group widgets of dockwidgets, others encapsulate normal widgets.
*/
TQObjectList* childDock;
/**
* Contains dockwidgets that are created automatically by the dockmanager. For internal use.
*/
TQObjectList* autoCreateDock;
/**
* For storing the width during the dragging of a dockwidget.
*/
int storeW;
/**
* For storing the height during the dragging of a dockwidget.
*/
int storeH;
/**
* State variable if there is a drag process active.
*/
bool dragging;
/**
* State variable if there is an undock process active
*/
bool undockProcess;
/**
* The dockmanager sets it to true if the user cancels the drag by moving the cursor
* on a invalid drop place
*/
bool dropCancel;
/**
* A popup menu that contains one menuitem for each dockwidget that shows the current visibility state and
* to show or hide the appropriate dockwidget.
*/
TQPopupMenu* menu;
/**
* An internal list containing data for the menuitems for the visibility popup menu.
*/
TQPtrList<MenuDockData> *menuData;
protected:
virtual void virtual_hook( int id, void* data );
private:
class KDockManagerPrivate;
KDockManagerPrivate *d;
};
/**
* A special kind of TDEMainWindow that is able to have dockwidget child widgets (and member of the dockwidget class set).
*
* The main widget should be a KDockWidget where other KDockWidget can be docked to
* the left, right, top, bottom or to the middle.
* Note: dock to the middle means to drop on a dockwidget and to unite them to a new widget, a tab control.
*
* Furthermore, the KDockMainWindow has got the KDockManager and some data about the dock states.
*
* If you've got some dockwidgets, you can dock them to the dockmainwindow to initialize a start scene:
* Here an example:
* \code
* DockApplication::DockApplication( const char* name) : KDockMainWindow( name)
* {
* ...
* KDockWidget* mainDock;
* mainDock = createDockWidget( "Falk's MainDockWidget", mainPixmap, 0L, "main_dock_widget");
* AnyContentsWidget* cw = new AnyContentsWidget( mainDock);
* mainDock->setWidget( cw);
* // allow others to dock to the 4 sides
* mainDock->setDockSite(KDockWidget::DockCorner);
* // forbit docking abilities of mainDock itself
* mainDock->setEnableDocking(KDockWidget::DockNone);
* setView( mainDock); // central widget in a KDE mainwindow
* setMainDockWidget( mainDock); // master dockwidget
* ...
* KDockWidget* dockLeft;
* dockLeft = createDockWidget( "Intially left one", anyOtherPixmap, 0L, i18n("The left dockwidget"));
* AnotherWidget* aw = new AnotherWidget( dockLeft);
* dockLeft->setWidget( aw);
* dockLeft->manualDock( mainDock, // dock target
* KDockWidget::DockLeft, // dock site
* 20 ); // relation target/this (in percent)
* ...
* \endcode
*
* Docking is fully dynamic at runtime. That means you can always move dockwidgets via drag and drop.
*
* And last but not least you can use the popupmenu for showing or hiding any controlled dockwidget
* of this class and insert it to your main menu bar or anywhere else.
*
* @author Max Judin (documentation: Falk Brettschneider).
*/
class TDEUI_EXPORT KDockMainWindow : public TDEMainWindow
{
TQ_OBJECT
friend class KDockManager;
public:
/**
* Constructs a dockmainwindow. It calls its base class constructor and does additional things concerning
* to the dock stuff:
* @li information about the dock state of this' children gets initialized
* @li a dockmanager is created...
* @li ...and gets initialized
* @li the main dockwidget is set to 0
*
* @param parent Parent widget for the dock main widget
* @param name internal object name
* @param f TQt::WidgetFlags widget flags
*/
#ifdef qdoc
KDockMainWindow( TQWidget* parent = 0L, const char *name = 0L, WFlags f = WType_TopLevel | WDestructiveClose );
#else
KDockMainWindow( TQWidget* parent = 0L, const char *name = 0L, WFlags f = (WFlags)(WType_TopLevel | WDestructiveClose) );
#endif
/**
* Destructs a dockmainwindow.
*/
virtual ~KDockMainWindow();
/**
* Returns the dockmanager of this. (see KDockManager)
* @return pointer to the wanted dockmanager
*/
KDockManager* manager() const { return dockManager; }
/**
* Sets a new main dockwidget.
* Additionally, the toolbar is re-initialized.
*
* @param dockwidget dockwidget that become the new main dockwidget
*/
void setMainDockWidget( KDockWidget* dockwidget);
/**
* Returns the main dockwidget.
*
* @return pointer to the main dockwidget
*/
KDockWidget* getMainDockWidget() const { return mainDockWidget; }
/**
* This is one of the most important methods!
* The KDockMainWindow creates a new dockwidget object here that usually should encapsulate the user's widget.
* The new dockwidget is automatically taken under control by the dockmanager of the dockmainwindow.
*
* @param name TQObject name (default dockwidget caption)
* @param pixmap window icon (for instance shown when docked as tabwidget entry)
* @param parent parent widget for the new dockwidget
* @param strCaption window title (shown when toplevel)
* @param strTabPageLabel title of the tab page (visible when in tab page mode), if it is "", only the icon will be shown; if it is 0L, the label is set to strCaption
* @return a pointer to the new created dockwidget
*/
KDockWidget* createDockWidget( const TQString& name, const TQPixmap &pixmap, TQWidget* parent = 0L,
const TQString& strCaption = TQString::null, const TQString& strTabPageLabel = TQString::fromLatin1( " " ) );
/**
* Saves the current dock window layout into a DOM tree below the given element.
*/
void writeDockConfig(TQDomElement &base);
/**
* Reads the current dock window layout from a DOM tree below the given element.
*/
void readDockConfig(TQDomElement &base);
#ifndef NO_KDE2
/**
* It writes the current dock state in the given section of TDEConfig.
*
* @param c KDE class for saving configurations
* @param group name of section to write to
*/
void writeDockConfig( TDEConfig* c = 0L, TQString group = TQString::null );
/**
* It reads the current dock state from the given section of TDEConfig.
*
* @param c KDE class for saving configurations
* @param group name of section to read from
*/
void readDockConfig ( TDEConfig* c = 0L, TQString group = TQString::null );
#endif
/**
* It runs through all dockwidgets which are under control of the dockmanager and calls show() for every
* encapsulated widget and show() for the dockwidget itself if it is not in tab mode.
* Additionally, if the main dockwidget is not a TQDialog, it will be shown.
*/
void activateDock(){ dockManager->activate(); }
/**
* Returns a popup menu that contains entries for all controlled dockwidgets making hiding and showing
* them possible.
*
* @return the wanted popup menu
*/
TQPopupMenu* dockHideShowMenu() const { return dockManager->dockHideShowMenu(); }
/**
* This method shows the given dockwidget.
* The clue is that it also considers the dockwidget could be a tab page
* and must set to be the activate one.
*
* @param dock the dockwidget that is to be shown
*/
void makeDockVisible( KDockWidget* dock );
/**
* This method hides the given dockwidget.
*
* @param dock the dockwidget that is to be shown
*/
void makeDockInvisible( KDockWidget* dock );
/**
* This is an overloaded member function, provided for convenience.
* It differs from the above function only in what argument(s) it accepts.
*/
void makeWidgetDockVisible( TQWidget* widget );
/**
* This method calls the base class method.
* If the given widget inherits KDockWidget, applyToWidget(this) is called.
*
* @param widget any widget that should become the main view
*/
void setView( TQWidget * widget );
signals:
/**
* Signals a certain dockwidget is undocked now.
*/
void dockWidgetHasUndocked(KDockWidget*);
protected:
/**
* A pointer to the main dockwidget (where one can manualDock() to
*/
KDockWidget* mainDockWidget;
/**
* A pointer to the manager for the dock process
*/
KDockManager* dockManager;
protected slots:
/**
* Called whenever one of the dockwidgets of this has been undocked.
*/
void slotDockWidgetUndocked();
protected:
virtual void virtual_hook( int id, void* data );
private:
class KDockMainWindowPrivate;
KDockMainWindowPrivate *d;
};
class TDEUI_EXPORT KDockArea : public TQWidget
{
TQ_OBJECT
friend class KDockManager;
public:
KDockArea( TQWidget* parent = 0L, const char *name = 0L);
virtual ~KDockArea();
KDockManager* manager(){ return dockManager; }
void setMainDockWidget( KDockWidget* );
KDockWidget* getMainDockWidget(){ return mainDockWidget; }
KDockWidget* createDockWidget( const TQString& name, const TQPixmap &pixmap, TQWidget* parent = 0L,
const TQString& strCaption = TQString::null, const TQString& strTabPageLabel = TQString::fromLatin1( " " ) );
void writeDockConfig(TQDomElement &base);
void readDockConfig(TQDomElement &base);
#ifndef NO_KDE2
void writeDockConfig( TDEConfig* c = 0L, TQString group = TQString::null );
void readDockConfig ( TDEConfig* c = 0L, TQString group = TQString::null );
#endif
void activateDock(){ dockManager->activate(); }
TQPopupMenu* dockHideShowMenu(){ return dockManager->dockHideShowMenu(); }
void makeDockVisible( KDockWidget* dock );
void makeDockInvisible( KDockWidget* dock );
void makeWidgetDockVisible( TQWidget* widget );
//void setView( TQWidget* );
signals:
/**
* Signals a certain dockwidget is undocked now.
*/
void dockWidgetHasUndocked(KDockWidget*);
protected:
KDockWidget* mainDockWidget;
KDockManager* dockManager;
protected slots:
void slotDockWidgetUndocked();
public:
virtual void resizeEvent(TQResizeEvent *);
protected:
virtual void virtual_hook( int id, void* data );
private:
class KDockMainWindowPrivate;
KDockMainWindowPrivate *d;
};
#endif