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.
225 lines
7.0 KiB
225 lines
7.0 KiB
/*
|
|
* Copyright (c) 2005 Boudewijn Rempt <boud@valdyas.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.
|
|
*/
|
|
|
|
#ifndef _KO_PALETTE_MANAGER_
|
|
#define _KO_PALETTE_MANAGER_
|
|
|
|
#include <tqobject.h>
|
|
#include <tqdockwindow.h>
|
|
#include <tqstring.h>
|
|
#include <tqmap.h>
|
|
#include <tqdict.h>
|
|
#include <tqvaluestack.h>
|
|
#include <tqwidget.h>
|
|
#include <tqsignalmapper.h>
|
|
#include <tqstringlist.h>
|
|
|
|
#include <koffice_export.h>
|
|
|
|
#include <KoView.h>
|
|
|
|
class KoPalette;
|
|
class TDEActionMenu;
|
|
class TDEAction;
|
|
class TDEActionCollection;
|
|
class TDEToggleAction;
|
|
|
|
enum enumKoDockability {
|
|
DOCK_ENABLED = 0, // It's possible to dock the dockers
|
|
DOCK_DISABLED = 1, // The dockers cannot be docked
|
|
DOCK_SMART = 2 // On small screens, don't dock, else dock, initially
|
|
};
|
|
|
|
enum enumKoPaletteStyle {
|
|
PALETTE_DOCKER, // TQDockWindow based docker with tabs
|
|
PALETTE_TOOLBOX // TQDockWindow based docker with a TQToolBox
|
|
};
|
|
|
|
|
|
namespace {
|
|
struct DockerRecord {
|
|
int position;
|
|
int x;
|
|
int y;
|
|
int w;
|
|
int h;
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Manages the set of dockwindow palettes and their widgets.
|
|
*
|
|
* You create one palette manager per view; then you can add widgets
|
|
* to your hearts content. Widgets are grouped into dock windows by
|
|
* palette names. To see the menu entries, add a the following line
|
|
* to your .rc file:
|
|
*
|
|
* <Action name="view_palette_action_menu"/>
|
|
*
|
|
* There are two styles: one that uses tabs and one that uses the vertical
|
|
* TQToolBox style to separate and show individual widgets. By implementing
|
|
* the kopalette interface and extending the above enum, you can add
|
|
* more types.
|
|
*
|
|
* TODO:
|
|
* - Drag & Drop
|
|
* - Restore order of tabs in a docker
|
|
* - Set initial position of floating dockers on first startup
|
|
* - Restoration of the application default state
|
|
* - Make it impossible to close a floating palette window with alt-f4
|
|
*/
|
|
class KOPALETTE_EXPORT KoPaletteManager : public TQObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
KoPaletteManager(KoView * view, TDEActionCollection * ac, const char * name);
|
|
virtual ~KoPaletteManager();
|
|
|
|
public:
|
|
|
|
/**
|
|
* Add a new tab with the given name an description to the specified palette.
|
|
* The widget's caption is used, where necessary. If there is no
|
|
* palette with this name, a new palette is created with the given palette name
|
|
* and the widget's caption.
|
|
*
|
|
* If there is already a widget with the given name, that widget will be
|
|
* unplugged (but not destroyed) and the given widget will be plugged in place.
|
|
*
|
|
* If the widget occurs in the saved configuration, it is not added to the
|
|
* specified palette, but in the place where it was left.
|
|
*
|
|
* @param widget the widget that will be inserted as a tab or entry in the palette
|
|
* @param name the name under which the palette will be stored. Not the caption -- do not i18n this.
|
|
* @param paletteName the unique name of the palette this widget will be a child of. If the palette already exists, the current widget is added to it.
|
|
* @param position the position of the widget in the palettes
|
|
* @param style docker, toolbox or slider
|
|
*/
|
|
virtual void addWidget(TQWidget * widget, const TQString & name, const TQString & paletteName, int position = -1,
|
|
enumKoPaletteStyle style = PALETTE_DOCKER, bool shown = true);
|
|
|
|
|
|
/**
|
|
* Get a certain widget by name
|
|
*/
|
|
virtual TQWidget * widget(const TQString & name);
|
|
|
|
/**
|
|
* Show a the specified palette wherever it currently is.
|
|
*/
|
|
virtual void showWidget(const TQString & name);
|
|
|
|
/**
|
|
* hide the specified widget
|
|
*/
|
|
virtual void hideWidget(const TQString & name);
|
|
|
|
/**
|
|
* Remove the widget with the specified name from whichever
|
|
* palette it is currently in. If it is the last widget in
|
|
* the palette, the palette is destroyed. If the name does
|
|
* not occur, nothing is done.
|
|
*/
|
|
virtual void removeWidget(const TQString & name);
|
|
|
|
|
|
/**
|
|
* Create an empty palette in the given style. with the given name and caption. If
|
|
* the palette already exists, nothing is done.
|
|
*/
|
|
virtual KoPalette * createPalette(const TQString & name, const TQString & caption, enumKoPaletteStyle style = PALETTE_DOCKER);
|
|
|
|
/**
|
|
* Move the specified palette to the specified location. If there is already
|
|
* a location for the palette in the saved settings, then move it there
|
|
* instead of the specified location.
|
|
*/
|
|
virtual void placePalette(const TQString & name, Dock location = DockRight);
|
|
|
|
/**
|
|
* Add a palette; this can be used to add palettes other than those in the two
|
|
* default styles.
|
|
*/
|
|
virtual void addPalette(KoPalette * palette, const TQString & name, Dock location = DockRight);
|
|
|
|
/**
|
|
* Sets all palettes to the specified fixed width
|
|
*/
|
|
virtual void setFixedWidth(int w);
|
|
|
|
public slots:
|
|
|
|
void slotTogglePalette(int paletteIndex);
|
|
void slotToggleAllPalettes();
|
|
void showAllPalettes(bool shown);
|
|
|
|
/**
|
|
* Restores the palette configuration to the default layout, i.e, the layout
|
|
* preferred by each docker.
|
|
*/
|
|
virtual void slotReset();
|
|
|
|
/**
|
|
* Reset the font for all palettes
|
|
*/
|
|
virtual void slotResetFont();
|
|
|
|
|
|
protected:
|
|
|
|
bool eventFilter( TQObject *o, TQEvent *e );
|
|
|
|
private:
|
|
|
|
|
|
/**
|
|
* Saves the current palette configuration to the application config object.
|
|
*/
|
|
virtual void save();
|
|
|
|
|
|
private:
|
|
|
|
KoView * m_view;
|
|
TDEActionCollection * m_actionCollection;
|
|
TDEActionMenu * m_viewActionMenu;
|
|
TDEToggleAction * m_toggleShowHidePalettes;
|
|
enumKoDockability m_dockability;
|
|
|
|
TQStringList * m_widgetNames;
|
|
|
|
TQDict<TQWidget> * m_widgets;
|
|
TQDict<KoPalette> * m_palettes;
|
|
TQValueStack<TQString> m_hiddenWidgets; // names of widgets actively hidden by hide all
|
|
TQDict<TDEToggleAction> * m_actions;
|
|
TQSignalMapper * m_mapper;
|
|
|
|
TQMap<TQString, TQString> * m_defaultMapping; // widget to docker
|
|
TQStringList m_defaultPaletteOrder; // Order of palette creation
|
|
TQStringList m_defaultWidgetOrder; // Order of widget addition
|
|
TQMap<TQString, TQString> * m_currentMapping; // widget to docker
|
|
|
|
bool m_setFixedWidth;
|
|
int m_fixedWidth;
|
|
};
|
|
|
|
#endif
|