fluxbox/src/Toolbar.hh

189 lines
6 KiB
C++
Raw Normal View History

2002-03-19 14:30:43 +00:00
// Toolbar.hh for Fluxbox
2003-05-10 13:57:07 +00:00
// Copyright (c) 2002-2003 Henrik Kinnunen (fluxgen at users.sourceforge.net)
2002-03-19 14:30:43 +00:00
//
2001-12-11 20:47:02 +00:00
// Toolbar.hh for Blackbox - an X11 Window manager
// Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
2003-08-11 20:22:38 +00:00
// $Id: Toolbar.hh,v 1.41 2003/08/11 20:22:38 fluxgen Exp $
2002-03-19 14:30:43 +00:00
#ifndef TOOLBAR_HH
#define TOOLBAR_HH
2001-12-11 20:47:02 +00:00
#include "Timer.hh"
#include "ToolbarTheme.hh"
2003-08-11 15:56:10 +00:00
#include "ToolTheme.hh"
2003-08-11 20:22:38 +00:00
#include "IconbarTheme.hh"
2003-08-11 15:56:10 +00:00
#include "EventHandler.hh"
2002-12-03 16:54:13 +00:00
#include "FbWindow.hh"
#include "ArrowButton.hh"
#include "Observer.hh"
#include "XLayer.hh"
#include "XLayerItem.hh"
#include "LayerMenu.hh"
#include "Resource.hh"
2001-12-11 20:47:02 +00:00
2002-11-27 12:20:23 +00:00
#include <memory>
2002-08-04 15:55:13 +00:00
class BScreen;
2003-06-18 13:55:17 +00:00
class Strut;
2003-08-11 15:56:10 +00:00
class Container;
class IconButton;
2003-07-10 11:48:14 +00:00
class Shape;
2003-08-11 15:56:10 +00:00
class ToolbarItem;
2003-06-18 13:55:17 +00:00
namespace FbTk {
class ImageControl;
};
2003-08-11 15:56:10 +00:00
typedef Container IconBar;
/// The toolbar.
2003-05-10 13:57:07 +00:00
/// Handles iconbar, workspace name view and clock view
2003-08-11 15:56:10 +00:00
class Toolbar: public FbTk::EventHandler, public FbTk::Observer {
2001-12-11 20:47:02 +00:00
public:
2003-05-10 13:57:07 +00:00
/// Toolbar placement on the screen
2002-12-03 16:54:13 +00:00
enum Placement{
// top and bottom placement
2002-12-03 16:54:13 +00:00
TOPLEFT = 1, BOTTOMLEFT, TOPCENTER,
BOTTOMCENTER, TOPRIGHT, BOTTOMRIGHT,
// left and right placement
2002-12-03 16:54:13 +00:00
LEFTCENTER, LEFTBOTTOM, LEFTTOP,
RIGHTCENTER, RIGHTBOTTOM, RIGHTTOP
};
2002-12-01 13:42:15 +00:00
2003-05-10 13:57:07 +00:00
/// Create a toolbar on the screen with specific width
Toolbar(BScreen &screen, FbTk::XLayer &layer, FbTk::Menu &menu, size_t width = 200);
2002-12-01 13:42:15 +00:00
virtual ~Toolbar();
void raise();
void lower();
2003-08-11 15:56:10 +00:00
void toggleHidden();
2003-03-03 21:51:13 +00:00
2003-08-11 15:56:10 +00:00
void moveToLayer(int layernum);
void saveOnHead(int head);
/**
@name eventhandlers
*/
//@{
void buttonPressEvent(XButtonEvent &be);
void buttonReleaseEvent(XButtonEvent &be);
void enterNotifyEvent(XCrossingEvent &ce);
void leaveNotifyEvent(XCrossingEvent &ce);
void exposeEvent(XExposeEvent &ee);
void keyPressEvent(XKeyEvent &ke);
//@}
/// enter edit mode on workspace label
void edit();
void reconfigure();
void setPlacement(Placement where);
void update(FbTk::Subject *subj);
FbTk::XLayerItem &layerItem() { return m_layeritem; }
2003-01-12 18:04:39 +00:00
inline const FbTk::Menu &menu() const { return m_toolbarmenu; }
inline FbTk::Menu &menu() { return m_toolbarmenu; }
2003-02-23 00:50:02 +00:00
inline FbTk::Menu &placementMenu() { return m_placementmenu; }
inline const FbTk::Menu &placementMenu() const { return m_placementmenu; }
2003-01-12 18:04:39 +00:00
2003-02-23 00:50:02 +00:00
inline FbTk::Menu &layermenu() { return m_layermenu; }
inline const FbTk::Menu &layermenu() const { return m_layermenu; }
2002-12-01 13:42:15 +00:00
/// are we in workspacename editing?
inline bool isEditing() const { return m_editing; }
2002-12-01 13:42:15 +00:00
/// are we hidden?
inline bool isHidden() const { return m_hidden; }
2002-12-01 13:42:15 +00:00
/// do we auto hide the toolbar?
inline bool doAutoHide() const { return *m_rc_auto_hide; }
2002-12-01 13:42:15 +00:00
/// @return X window of the toolbar
2003-04-23 00:13:47 +00:00
inline const FbTk::FbWindow &window() const { return frame.window; }
2003-02-16 00:08:29 +00:00
inline BScreen &screen() { return m_screen; }
inline const BScreen &screen() const { return m_screen; }
2003-08-11 20:22:38 +00:00
inline unsigned int width() const { return frame.window.width(); }
inline unsigned int height() const { return frame.window.height(); }
inline unsigned int exposedHeight() const { return doAutoHide() ? frame.bevel_w : frame.height; }
inline int x() const { return isHidden() ? frame.x_hidden : frame.x; }
inline int y() const { return isHidden() ? frame.y_hidden : frame.y; }
inline Placement placement() const { return *m_rc_placement; }
2002-12-01 13:42:15 +00:00
/// @return pointer to iconbar if it got one, else 0
inline const ToolbarTheme &theme() const { return m_theme; }
inline ToolbarTheme &theme() { return m_theme; }
2003-04-25 11:40:58 +00:00
bool isVertical() const;
inline int getOnHead() const { return *m_rc_on_head; }
2002-08-04 15:55:13 +00:00
2001-12-11 20:47:02 +00:00
private:
2003-08-11 15:56:10 +00:00
void updateIconbarGraphics();
void setupMenus();
2003-06-18 13:55:17 +00:00
void clearStrut();
void updateStrut();
2002-12-03 16:54:13 +00:00
bool m_editing; ///< edit workspace label mode
bool m_hidden; ///< hidden state
2002-12-01 13:42:15 +00:00
/// Toolbar frame
2002-12-03 16:54:13 +00:00
struct Frame {
Frame(FbTk::EventHandler &evh, int screen_num);
~Frame();
2003-08-11 20:22:38 +00:00
FbTk::FbWindow window;
2002-12-01 13:42:15 +00:00
2003-08-11 15:56:10 +00:00
int x, y, x_hidden, y_hidden, grab_x, grab_y;
2003-08-11 20:22:38 +00:00
unsigned int width, height, bevel_w;
2002-12-01 13:42:15 +00:00
} frame;
2003-05-10 13:57:07 +00:00
BScreen &m_screen; ///< screen connection
FbTk::Timer m_hide_timer; ///< timer to for auto hide toolbar
2003-03-03 21:51:13 +00:00
FbTk::Menu &m_toolbarmenu;
2003-02-23 00:50:02 +00:00
FbTk::Menu m_placementmenu;
LayerMenu<Toolbar> m_layermenu;
2003-08-11 15:56:10 +00:00
2001-12-11 20:47:02 +00:00
ToolbarTheme m_theme;
2003-02-23 00:50:02 +00:00
FbTk::XLayerItem m_layeritem;
2003-08-11 15:56:10 +00:00
typedef std::list<ToolbarItem *> ItemList;
ItemList m_item_list;
2003-06-18 13:55:17 +00:00
Strut *m_strut; ///< created and destroyed by BScreen
// resources
FbTk::Resource<bool> m_rc_auto_hide, m_rc_maximize_over;
FbTk::Resource<int> m_rc_width_percent;
FbTk::Resource<Fluxbox::Layer> m_rc_layernum;
FbTk::Resource<int> m_rc_on_head;
FbTk::Resource<Placement> m_rc_placement;
2003-07-10 11:48:14 +00:00
std::auto_ptr<Shape> m_shape;
2003-08-11 15:56:10 +00:00
2003-08-11 20:22:38 +00:00
ToolTheme m_clock_theme, m_workspace_theme;
IconbarTheme m_iconbar_theme;
2003-08-11 15:56:10 +00:00
2001-12-11 20:47:02 +00:00
};
2002-08-04 15:55:13 +00:00
#endif // TOOLBAR_HH