fluxbox/src/IconbarTool.hh

116 lines
4 KiB
C++
Raw Normal View History

2003-08-11 15:42:29 +00:00
// IconbarTool.hh
2006-02-16 06:53:05 +00:00
// Copyright (c) 2003 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org)
2003-08-11 15:42:29 +00:00
// and Simon Bowden (rathnor at users.sourceforge.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.
#ifndef ICONBARTOOL_HH
#define ICONBARTOOL_HH
#include "ToolbarItem.hh"
#include "FbMenu.hh"
2003-08-11 15:42:29 +00:00
2007-12-28 05:47:55 +00:00
#include "FbTk/Container.hh"
2006-10-16 18:49:33 +00:00
#include "FbTk/CachedPixmap.hh"
2003-08-11 15:42:29 +00:00
#include "FbTk/Observer.hh"
2003-09-08 17:52:34 +00:00
#include "FbTk/Resource.hh"
2003-08-11 15:42:29 +00:00
#include <map>
2003-08-11 15:42:29 +00:00
class IconbarTheme;
class BScreen;
class IconButton;
2007-10-13 21:51:37 +00:00
class Focusable;
class FocusableList;
2003-08-11 15:42:29 +00:00
class IconbarTool: public ToolbarItem, public FbTk::Observer {
public:
typedef std::map<Focusable *, IconButton *> IconMap;
2003-09-08 17:52:34 +00:00
2008-01-05 01:39:19 +00:00
IconbarTool(const FbTk::FbWindow &parent,
FbTk::ThemeProxy<IconbarTheme> &theme,
2003-09-08 17:52:34 +00:00
BScreen &screen, FbTk::Menu &menu);
~IconbarTool();
2003-08-11 15:42:29 +00:00
void move(int x, int y);
void resize(unsigned int width, unsigned int height);
void moveResize(int x, int y,
unsigned int width, unsigned int height);
void update(FbTk::Subject *subj);
void show();
void hide();
2007-12-28 05:47:55 +00:00
void setAlignment(FbTk::Container::Alignment a);
void setMode(std::string mode);
void parentMoved() { m_icon_container.parentMoved(); }
2003-09-08 17:52:34 +00:00
2003-08-11 15:42:29 +00:00
unsigned int width() const;
unsigned int height() const;
2003-08-13 10:11:14 +00:00
unsigned int borderWidth() const;
2003-08-11 15:42:29 +00:00
std::string mode() const { return *m_rc_mode; }
void setOrientation(FbTk::Orientation orient);
2007-12-28 05:47:55 +00:00
FbTk::Container::Alignment alignment() const { return m_icon_container.alignment(); }
2006-10-16 18:49:33 +00:00
2007-10-13 21:51:37 +00:00
const BScreen &screen() const { return m_screen; }
2003-08-11 15:42:29 +00:00
private:
2006-10-16 18:49:33 +00:00
2004-08-29 08:33:13 +00:00
void updateSizing();
/// render single button, and probably apply changes (clear)
/// @param button the button to render
/// @param clear if the window should be cleared first
2007-10-13 21:51:37 +00:00
void renderButton(IconButton &button, bool clear = true);
2003-08-12 12:14:37 +00:00
/// render all buttons
2003-08-11 15:42:29 +00:00
void renderTheme();
void renderTheme(unsigned char alpha);
2003-08-12 12:14:37 +00:00
/// destroy all icons
void deleteIcons();
/// add or move a single window
void insertWindow(Focusable &win, int pos = -2);
2003-09-08 17:52:34 +00:00
/// remove a single window
2007-10-13 21:51:37 +00:00
void removeWindow(Focusable &win);
/// make a button for the window
IconButton *makeButton(Focusable &win);
/// remove all windows and add again
void reset();
2003-09-08 17:52:34 +00:00
/// add icons to the list
void updateList();
2003-08-11 15:42:29 +00:00
BScreen &m_screen;
2007-12-28 05:47:55 +00:00
FbTk::Container m_icon_container;
2008-01-05 01:39:19 +00:00
FbTk::ThemeProxy<IconbarTheme> &m_theme;
2006-10-16 18:49:33 +00:00
FbTk::CachedPixmap m_empty_pm; ///< pixmap for empty container
2003-08-11 15:42:29 +00:00
2003-09-08 17:52:34 +00:00
std::auto_ptr<FocusableList> m_winlist;
IconMap m_icons;
std::string m_mode;
FbTk::Resource<std::string> m_rc_mode;
2007-12-28 05:47:55 +00:00
FbTk::Resource<FbTk::Container::Alignment> m_rc_alignment; ///< alignment of buttons
2003-12-12 14:36:22 +00:00
FbTk::Resource<int> m_rc_client_width; ///< size of client button in LEFT/RIGHT mode
2004-10-10 16:11:25 +00:00
FbTk::Resource<unsigned int> m_rc_client_padding; ///< padding of the text
2003-11-27 14:30:11 +00:00
FbTk::Resource<bool> m_rc_use_pixmap; ///< if iconbar should use win pixmap or not
FbMenu m_menu;
unsigned char m_alpha;
2003-08-11 15:42:29 +00:00
};
#endif // ICONBARTOOL_HH