From edbfc9234ef19d9089302cb346a10dee9cea38c0 Mon Sep 17 00:00:00 2001 From: fluxgen Date: Mon, 11 Aug 2003 15:44:12 +0000 Subject: items in toolbar --- src/ToolbarItem.cc | 33 +++++++++++++++++++++++++++++++ src/ToolbarItem.hh | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 90 insertions(+) create mode 100644 src/ToolbarItem.cc create mode 100644 src/ToolbarItem.hh diff --git a/src/ToolbarItem.cc b/src/ToolbarItem.cc new file mode 100644 index 0000000..2cedc0e --- /dev/null +++ b/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() { +} + diff --git a/src/ToolbarItem.hh b/src/ToolbarItem.hh new file mode 100644 index 0000000..b4087a7 --- /dev/null +++ b/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 -- cgit v0.11.2