From 30b8b4ecb92bb208c25a970d767e41ca102b16f1 Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Sat, 19 Feb 2005 23:04:11 +0000 Subject: Committed new graphics for button, checkbox and radio button by romulo. Also added a bit of padding to the windows. --- src/gui/window.cpp | 9 +++++---- src/gui/window.h | 15 ++++++++------- src/resources/mapreader.cpp | 13 +++---------- 3 files changed, 16 insertions(+), 21 deletions(-) (limited to 'src') diff --git a/src/gui/window.cpp b/src/gui/window.cpp index 310da823..83a0b283 100644 --- a/src/gui/window.cpp +++ b/src/gui/window.cpp @@ -35,7 +35,8 @@ Window::Window(const std::string& text, bool modal, Window *parent): snapSize(8), mouseDown(false), modal(modal), - titlebarHeight(20) + titlebarHeight(20), + padding(3) { log("Window::Window(\"%s\")", caption.c_str()); @@ -68,7 +69,7 @@ Window::Window(const std::string& text, bool modal, Window *parent): // Add chrome chrome = new gcn::Container(); chrome->setOpaque(false); - chrome->setY(titlebarHeight); + chrome->setPosition(padding, titlebarHeight + padding); gcn::Container::add(chrome); // Add this window to the window container @@ -145,13 +146,13 @@ void Window::setDimension(const gcn::Rectangle &dimension) void Window::setWidth(int width) { - gcn::Container::setWidth(width); + gcn::Container::setWidth(width + 2 * padding); chrome->setWidth(width); } void Window::setHeight(int height) { - gcn::Container::setHeight(height + titlebarHeight); + gcn::Container::setHeight(height + titlebarHeight + 2 * padding); chrome->setHeight(height); } diff --git a/src/gui/window.h b/src/gui/window.h index 3657eb1d..25403851 100644 --- a/src/gui/window.h +++ b/src/gui/window.h @@ -48,13 +48,14 @@ class Window : public gcn::Container, public gcn::MouseListener bool modal; /**< Window is modal */ gcn::Color titlebarColor; /**< Title bar color */ int titlebarHeight; /**< Height of title bar */ - - Image *dBackground; /**< Left side of title bar */ - Image *dBorders; /**< Middle of title bar */ - Image *dUpperBorder; /**< Upper border */ - Image *dLowerBorder; /**< Lower Border */ - Image *dLeftBorder; /**< Left Border */ - Image *dRightBorder; /**< Right Border */ + int padding; /**< Space between contents and border */ + + Image *dBackground; /**< Left side of title bar */ + Image *dBorders; /**< Middle of title bar */ + Image *dUpperBorder; /**< Upper border */ + Image *dLowerBorder; /**< Lower Border */ + Image *dLeftBorder; /**< Left Border */ + Image *dRightBorder; /**< Right Border */ /** The window container windows add themselves to. */ static WindowContainer* windowContainer; diff --git a/src/resources/mapreader.cpp b/src/resources/mapreader.cpp index ccf38ac3..c86f7fe4 100644 --- a/src/resources/mapreader.cpp +++ b/src/resources/mapreader.cpp @@ -117,24 +117,18 @@ void MapReader::readLayer(xmlNodePtr node, Map *map, int layer) //xmlChar *name = xmlGetProp(node, BAD_CAST "name"); node = node->xmlChildrenNode; + int h = map->getHeight(); + int w = map->getWidth(); int x = 0; int y = 0; // Load the tile data - /* while (node != NULL) { if (xmlStrEqual(node->name, BAD_CAST "tile") && y < h) { - xmlChar *name = xmlGetProp(node, BAD_CAST "name"); int gid = getProperty(node, "gid", -1); - - if (gid > -1) { - layer->setTile(Point(x, y), map->getTile(gid)); - } - else { - layer->setTile(Point(x, y), NULL); - } + map->setTile(x, y, layer, (gid > -1) ? gid : 0); x++; if (x == w) {x = 0; y++;} @@ -146,7 +140,6 @@ void MapReader::readLayer(xmlNodePtr node, Map *map, int layer) node = node->next; } } - */ } /* -- cgit v1.2.3-70-g09d2