From acba95ebb0119e7b0f9ef01d9bf3577582857253 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 13 Feb 2018 01:54:28 +0300 Subject: Add clan window. For now can be opened only by chat command /clan. --- src/gui/widgets/layoutcell.h | 6 ++ src/gui/widgets/tabs/clanwindowtabs.cpp | 162 ++++++++++++++++++++++++++++++++ src/gui/widgets/tabs/clanwindowtabs.h | 83 ++++++++++++++++ 3 files changed, 251 insertions(+) create mode 100644 src/gui/widgets/tabs/clanwindowtabs.cpp create mode 100644 src/gui/widgets/tabs/clanwindowtabs.h (limited to 'src/gui/widgets') diff --git a/src/gui/widgets/layoutcell.h b/src/gui/widgets/layoutcell.h index 3067d9677..3a28fd30c 100644 --- a/src/gui/widgets/layoutcell.h +++ b/src/gui/widgets/layoutcell.h @@ -59,6 +59,12 @@ class LayoutCell notfinal LayoutCell &setPadding(int p) { mHPadding = p; mVPadding = p; return *this; } + int getVPadding() const + { return mVPadding; } + + int getHPadding() const + { return mHPadding; } + /** * Sets the vertical padding around the cell content. */ diff --git a/src/gui/widgets/tabs/clanwindowtabs.cpp b/src/gui/widgets/tabs/clanwindowtabs.cpp new file mode 100644 index 000000000..a73e8ce39 --- /dev/null +++ b/src/gui/widgets/tabs/clanwindowtabs.cpp @@ -0,0 +1,162 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2018 The ManaPlus Developers + * + * This file is part of The ManaPlus 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/tabs/clanwindowtabs.h" + +#include "being/localclan.h" + +#include "gui/widgets/containerplacer.h" +#include "gui/widgets/label.h" +#include "gui/widgets/layouthelper.h" + +#include "utils/foreach.h" +#include "utils/gettext.h" +#include "utils/stringutils.h" + +#include "debug.h" + +InfoClanTab::InfoClanTab(const Widget2 *const widget) : + Container(widget), + mNameLabel(new Label(this, " ")), + mMasterLabel(new Label(this, " ")), + mMapLabel(new Label(this, " ")) +{ + setSelectable(false); + + LayoutHelper h(this); + ContainerPlacer place = h.getPlacer(0, 0); + + place(0, 0, mNameLabel, 2, 1); + place(0, 1, mMasterLabel, 2, 1); + place(0, 2, mMapLabel, 2, 1); + + place.getCell().matchColWidth(0, 0); + setDimension(Rect(0, 0, 600, 300)); +} + +void InfoClanTab::resetClan() +{ + // TRANSLATORS: not in clan label + mNameLabel->setCaption(strprintf(_("Not in clan"))); + mMasterLabel->setCaption(std::string()); + mMapLabel->setCaption(std::string()); +} + +void InfoClanTab::updateClan() +{ + mNameLabel->setCaption(strprintf("%s: %s", + // TRANSLATORS: clan name label + _("Clan name"), + localClan.name.c_str())); + mMasterLabel->setCaption(strprintf("%s: %s", + // TRANSLATORS: clan master name label + _("Master name"), + localClan.masterName.c_str())); + mMapLabel->setCaption(strprintf("%s: %s", + // TRANSLATORS: clan map name label + _("Map name"), + localClan.mapName.c_str())); +} + +StatsClanTab::StatsClanTab(const Widget2 *const widget) : + Container(widget), + mLabels() +{ + setSelectable(false); +} + +void StatsClanTab::clearLabels() +{ + FOR_EACH (STD_VECTOR::iterator, it, mLabels) + { + remove(*it); + delete *it; + } + mLabels.clear(); +} + +void StatsClanTab::resetClan() +{ + clearLabels(); +} + + +void StatsClanTab::updateClan() +{ + clearLabels(); + + LayoutHelper h(this); + + const int hPadding = h.getLayout().getHPadding(); + const int vPadding = h.getLayout().getVPadding(); + int y = vPadding; + FOR_EACH (STD_VECTOR::const_iterator, it, localClan.stats) + { + Label *const label = new Label(this, *it); + add(label); + label->setPosition(hPadding, y); + label->adjustSize(); + y += label->getHeight() + vPadding; + mLabels.push_back(label); + } +} + +RelationClanTab::RelationClanTab(const Widget2 *const widget) : + Container(widget), + mLabels() +{ + setSelectable(false); +} + +void RelationClanTab::clearLabels() +{ + FOR_EACH (STD_VECTOR::iterator, it, mLabels) + { + remove(*it); + delete *it; + } + mLabels.clear(); +} + +void RelationClanTab::resetClan() +{ + clearLabels(); +} + +void RelationClanTab::updateClan(const STD_VECTOR &restrict names) +{ + clearLabels(); + + LayoutHelper h(this); + + const int hPadding = h.getLayout().getHPadding(); + const int vPadding = h.getLayout().getVPadding(); + int y = vPadding; + FOR_EACH (STD_VECTOR::const_iterator, it, names) + { + Label *const label = new Label(this, *it); + add(label); + label->setPosition(hPadding, y); + label->adjustSize(); + y += label->getHeight() + vPadding; + mLabels.push_back(label); + } +} + diff --git a/src/gui/widgets/tabs/clanwindowtabs.h b/src/gui/widgets/tabs/clanwindowtabs.h new file mode 100644 index 000000000..752c6d87a --- /dev/null +++ b/src/gui/widgets/tabs/clanwindowtabs.h @@ -0,0 +1,83 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2018 The ManaPlus Developers + * + * This file is part of The ManaPlus 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 GUI_WIDGETS_TABS_DEBUGWINDOWTABS_H +#define GUI_WIDGETS_TABS_DEBUGWINDOWTABS_H + +#include "gui/widgets/container.h" + +#include "utils/vector.h" + +#include + +class Label; + +class InfoClanTab final : public Container +{ + public: + explicit InfoClanTab(const Widget2 *const widget); + + A_DELETE_COPY(InfoClanTab) + + void resetClan(); + + void updateClan(); + + private: + Label *mNameLabel A_NONNULLPOINTER; + Label *mMasterLabel A_NONNULLPOINTER; + Label *mMapLabel A_NONNULLPOINTER; +}; + +class StatsClanTab final : public Container +{ + public: + explicit StatsClanTab(const Widget2 *const widget); + + A_DELETE_COPY(StatsClanTab) + + void clearLabels(); + + void resetClan(); + + void updateClan(); + + private: + STD_VECTOR mLabels; +}; + +class RelationClanTab final : public Container +{ + public: + explicit RelationClanTab(const Widget2 *const widget); + + A_DELETE_COPY(RelationClanTab) + + void clearLabels(); + + void resetClan(); + + void updateClan(const STD_VECTOR &restrict names); + + private: + STD_VECTOR mLabels; +}; + +#endif // GUI_WIDGETS_TABS_DEBUGWINDOWTABS_H -- cgit v1.2.3-60-g2f50