fluxbox/src/FbTk/Menu.hh

226 lines
7.8 KiB
C++
Raw Normal View History

// Menu.hh for FbTk - Fluxbox Toolkit
2004-06-10 11:38:26 +00:00
// Copyright (c) 2001 - 2004 Henrik Kinnunen (fluxgen at users.sourceforge.net)
//
// Basemenu.hh for Blackbox - an X11 Window manager
// Copyright (c) 1997 - 2000 Brad Hughes (bhughes at 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.
// $Id: Menu.hh,v 1.34 2004/06/13 00:31:29 fluxgen Exp $
#ifndef FBTK_MENU_HH
#define FBTK_MENU_HH
#include <X11/Xlib.h>
#include <vector>
#include <string>
2003-04-20 14:20:14 +00:00
#include <memory>
#include "FbWindow.hh"
#include "EventHandler.hh"
#include "RefCount.hh"
#include "Command.hh"
2003-02-15 01:48:16 +00:00
#include "Observer.hh"
2003-04-25 12:32:57 +00:00
#include "FbPixmap.hh"
#include "MenuTheme.hh"
2003-12-12 18:18:49 +00:00
#include "Timer.hh"
namespace FbTk {
class MenuItem;
2003-01-10 00:46:54 +00:00
class ImageControl;
2003-04-20 13:49:26 +00:00
class Transparent;
/// Base class for menus
class Menu: public FbTk::EventHandler, protected FbTk::Observer {
public:
enum Alignment{ ALIGNDONTCARE = 1, ALIGNTOP, ALIGNBOTTOM };
enum { RIGHT = 1, LEFT };
/**
Bullet type
*/
enum { EMPTY = 0, SQUARE, TRIANGLE, DIAMOND };
2003-12-10 23:08:06 +00:00
Menu(MenuTheme &tm, ImageControl &imgctrl);
virtual ~Menu();
/**
@name manipulators
*/
//@{
/// add a menu item with a label and a command
int insert(const char *label, RefCount<Command> &cmd, int pos=-1);
/// add empty menu item
int insert(const char *label, int pos=-1);
/// add submenu
int insert(const char *label, Menu *submenu, int pos= -1);
2003-01-12 17:02:33 +00:00
/// add menu item
int insert(MenuItem *item, int pos=-1);
/// remove an item
int remove(unsigned int item);
/// remove all items
void removeAll();
inline void setInternalMenu(bool val = true) { internal_menu = val; }
inline void setAlignment(Alignment a) { m_alignment = a; }
inline void setTorn() { torn = true; }
inline void removeParent() { if (internal_menu) m_parent = 0; }
/// raise this window
virtual void raise();
/// lower this window
virtual void lower();
2003-07-02 05:26:45 +00:00
/// select next item
void nextItem();
/// select previous item
void prevItem();
2003-07-03 12:23:28 +00:00
void enterSubmenu();
void enterParent();
void disableTitle();
void enableTitle();
2003-04-20 13:49:26 +00:00
/**
@name event handlers
*/
//@{
2003-07-02 05:26:45 +00:00
void handleEvent(XEvent &event);
void buttonPressEvent(XButtonEvent &bp);
void buttonReleaseEvent(XButtonEvent &br);
void motionNotifyEvent(XMotionEvent &mn);
void enterNotifyEvent(XCrossingEvent &en);
void leaveNotifyEvent(XCrossingEvent &ce);
void exposeEvent(XExposeEvent &ee);
2003-07-02 05:26:45 +00:00
void keyPressEvent(XKeyEvent &ke);
//@}
2003-07-02 05:26:45 +00:00
/// get input focus
void grabInputFocus();
2003-07-10 11:55:49 +00:00
virtual void reconfigure();
/// set label string
void setLabel(const char *labelstr);
/// move menu to x,y
void move(int x, int y);
virtual void update(int active_index = -1);
void setItemSelected(unsigned int index, bool val);
void setItemEnabled(unsigned int index, bool val);
2003-01-12 17:02:33 +00:00
inline void setMinimumSublevels(int m) { menu.minsub = m; }
virtual void drawSubmenu(unsigned int index);
/// show menu
virtual void show();
/// hide menu
virtual void hide();
2003-02-23 00:59:13 +00:00
virtual void clearWindow();
/*@}*/
/**
@name accessors
*/
//@{
2003-12-08 16:39:44 +00:00
inline bool isTorn() const { return torn; }
inline bool isVisible() const { return visible; }
2003-12-10 23:08:06 +00:00
inline int screenNumber() const { return menu.window.screenNumber(); }
2003-12-08 16:39:44 +00:00
inline Window window() const { return menu.window.window(); }
inline FbWindow &fbwindow() { return menu.window; }
inline const FbWindow &fbwindow() const { return menu.window; }
inline FbWindow &titleWindow() { return menu.title; }
inline FbWindow &frameWindow() { return menu.frame; }
inline const std::string &label() const { return menu.label; }
2003-12-18 18:03:23 +00:00
inline int x() const { return menu.window.x(); }
inline int y() const { return menu.window.y(); }
2003-12-10 23:08:06 +00:00
inline unsigned int width() const { return menu.window.width(); }
inline unsigned int height() const { return menu.window.height(); }
2003-12-08 16:39:44 +00:00
inline unsigned int numberOfItems() const { return menuitems.size(); }
inline int currentSubmenu() const { return which_sub; }
inline unsigned int titleHeight() const { return menu.title_h; }
bool hasSubmenu(unsigned int index) const;
bool isItemSelected(unsigned int index) const;
bool isItemEnabled(unsigned int index) const;
2003-12-08 16:39:44 +00:00
inline const MenuTheme &theme() const { return m_theme; }
inline unsigned char alpha() const { return theme().alpha(); }
2003-12-08 16:39:44 +00:00
inline static Menu *focused() { return s_focused; }
/// @return menuitem at index
inline const MenuItem *find(unsigned int index) const { return menuitems[index]; }
inline MenuItem *find(unsigned int index) { return menuitems[index]; }
//@}
protected:
inline void setTitleVisibility(bool b) { title_vis = b; m_need_update = true; }
inline void setMovable(bool b) { movable = b; }
inline void setHideTree(bool h) { hide_tree = h; }
2003-01-12 17:02:33 +00:00
virtual void itemSelected(int button, unsigned int index) { }
2004-02-27 14:22:27 +00:00
virtual int drawItem(unsigned int index, bool highlight = false,
bool clear= false, bool render_trans = true,
int x= -1, int y= -1,
unsigned int width= 0, unsigned int height= 0);
virtual void redrawTitle();
virtual void internal_hide();
inline Menu *parent() { return m_parent; }
inline const Menu *parent() const { return m_parent; }
void update(FbTk::Subject *);
2003-02-15 01:48:16 +00:00
private:
2003-12-12 18:18:49 +00:00
void openSubmenu();
void closeMenu();
void startHide();
void stopHide();
void renderTransp(int x, int y,
unsigned int width, unsigned int height);
typedef std::vector<MenuItem *> Menuitems;
const MenuTheme &m_theme;
Menu *m_parent;
2003-01-10 00:46:54 +00:00
ImageControl &m_image_ctrl;
Menuitems menuitems;
const unsigned int m_screen_width, m_screen_height;
bool moving, visible, movable, torn, internal_menu, title_vis, shifted,
hide_tree;
int which_sub, which_press, which_sbl;
Alignment m_alignment;
int m_border_width;
struct _menu {
Pixmap frame_pixmap, title_pixmap, hilite_pixmap, sel_pixmap;
FbTk::FbWindow window, frame, title;
std::string label;
2003-12-18 18:03:23 +00:00
int x_move, y_move, x_shift, y_shift, sublevels, persub, minsub,
grab_x, grab_y;
unsigned int title_h, frame_h, item_w, item_h, bevel_w;
} menu;
2003-04-20 13:49:26 +00:00
Drawable m_root_pm;
2003-07-02 05:26:45 +00:00
static Menu *s_focused; ///< holds current input focused menu, so one can determine if a menu is focused
FbPixmap m_frame_pm, ///< buffer pixmap
m_real_frame_pm; ///< buffer pixmap (this one is shown to the user)
FbPixmap m_title_pm, ///< buffer pixmap to avoid flicker
m_real_title_pm; ///< buffer pixmap (this one is shown to the user)
std::auto_ptr<Transparent> m_transp;
2003-04-25 12:32:57 +00:00
bool m_need_update;
2003-12-12 18:18:49 +00:00
Timer m_submenu_timer;
Timer m_hide_timer;
};
2003-12-16 17:06:52 +00:00
} // end namespace FbTk
2003-01-12 17:02:33 +00:00
#endif // FBTK_MENU_HH