all repos — fluxbox @ edbfc9234ef19d9089302cb346a10dee9cea38c0

custom fork of the fluxbox windowmanager

items in toolbar
fluxgen fluxgen
commit

edbfc9234ef19d9089302cb346a10dee9cea38c0

parent

fe1c6012e49a516e591aaca4f8c13cb645bce54a

2 files changed, 90 insertions(+), 0 deletions(-)

jump to
A src/ToolbarItem.cc

@@ -0,0 +1,33 @@

+// ToolbarItem.cc +// Copyright (c) 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) +// 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. + +// $Id: ToolbarItem.cc,v 1.1 2003/08/11 15:44:12 fluxgen Exp $ + +#include "ToolbarItem.hh" + +ToolbarItem::ToolbarItem(Type type):m_type(type) { + +} + +ToolbarItem::~ToolbarItem() { +} +
A src/ToolbarItem.hh

@@ -0,0 +1,57 @@

+// ToolbarItem.hh +// Copyright (c) 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) +// 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. + +// $Id: ToolbarItem.hh,v 1.1 2003/08/11 15:44:12 fluxgen Exp $ + +#ifndef TOOLBARITEM_HH +#define TOOLBARITEM_HH + +/// An item in the toolbar that has either fixed or realive size to the toolbar +class ToolbarItem { +public: + /// size type in the toolbar + enum Type { + FIXED, ///< the size can not be changed + RELATIVE ///< the size can be changed + }; + + explicit ToolbarItem(Type type); + virtual ~ToolbarItem(); + + virtual void move(int x, int y) = 0; + virtual void resize(unsigned int width, unsigned int height) = 0; + virtual void moveResize(int x, int y, + unsigned int width, unsigned int height) = 0; + + virtual void show() = 0; + virtual void hide() = 0; + virtual unsigned int width() const = 0; + virtual unsigned int height() const = 0; + + void setType(Type type) { m_type = type; } + Type type() const { return m_type; } + +private: + Type m_type; +}; + +#endif // TOOLBARITEM_HH