From b986acb7f793cb569a25d93aa667861380214d2a Mon Sep 17 00:00:00 2001 From: Angelo Castellani Date: Mon, 23 May 2011 16:35:03 -0400 Subject: Extended Guichan with an empty spacer widget Useful for making nicer layouts Signed-off-by: Jared Adams --- mana.cbp | 2 ++ src/CMakeLists.txt | 2 ++ src/gui/widgets/spacer.cpp | 28 ++++++++++++++++++++++++ src/gui/widgets/spacer.h | 53 ++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 85 insertions(+) create mode 100644 src/gui/widgets/spacer.cpp create mode 100644 src/gui/widgets/spacer.h diff --git a/mana.cbp b/mana.cbp index f4cd240c..7e2bdffd 100644 --- a/mana.cbp +++ b/mana.cbp @@ -335,6 +335,8 @@ + + diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 656b466f..deab2fe3 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -188,6 +188,8 @@ SET(SRCS gui/widgets/shortcutcontainer.h gui/widgets/slider.cpp gui/widgets/slider.h + gui/widgets/spacer.cpp + gui/widgets/spacer.h gui/widgets/tab.cpp gui/widgets/tab.h gui/widgets/tabbedarea.cpp diff --git a/src/gui/widgets/spacer.cpp b/src/gui/widgets/spacer.cpp new file mode 100644 index 00000000..725d2b45 --- /dev/null +++ b/src/gui/widgets/spacer.cpp @@ -0,0 +1,28 @@ +/* + * The Mana Client + * Copyright (C) 2008-2009 The Mana World Development Team + * Copyright (C) 2009-2010 The Mana Developers + * + * This file is part of The Mana Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "gui/widgets/spacer.h" + +Spacer::Spacer(int w, int h) +{ + setWidth(w); + setHeight(h); +} diff --git a/src/gui/widgets/spacer.h b/src/gui/widgets/spacer.h new file mode 100644 index 00000000..cc171890 --- /dev/null +++ b/src/gui/widgets/spacer.h @@ -0,0 +1,53 @@ +/* + * The Mana Client + * Copyright (C) 2008-2009 The Mana World Development Team + * Copyright (C) 2009-2010 The Mana Developers + * + * This file is part of The Mana Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef SPACER_H +#define SPACER_H + +#include "guichan/graphics.hpp" +#include "guichan/platform.hpp" +#include "guichan/widget.hpp" + +/** + * A space. + * + * \ingroup GUI + */ +class Spacer : public gcn::Widget +{ + public: + /** + * Constructor. + * + * @note Can be called empty, will default to a 5x5 px space + * + * @param w - width in px. + * @param h - height in px. + */ + Spacer(int x = 5, int y = 5); + + /** + * Draws the Space. + */ + void draw(gcn::Graphics *g){} +}; + +#endif // SPACER_H -- cgit v1.2.3-70-g09d2