summaryrefslogtreecommitdiff
path: root/src/gui/specialswindow.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-02-06 00:27:11 +0300
committerAndrei Karas <akaras@inbox.ru>2013-02-06 00:28:01 +0300
commitd514c4c7bc62061935579505b497307f89fc8db5 (patch)
tree23262e97103dc794ee49b83d9afe47c43afe6d2e /src/gui/specialswindow.h
parent8bbc32ceeb0522064d6ee9789c9c666d2874d29a (diff)
downloadplus-d514c4c7bc62061935579505b497307f89fc8db5.tar.gz
plus-d514c4c7bc62061935579505b497307f89fc8db5.tar.bz2
plus-d514c4c7bc62061935579505b497307f89fc8db5.tar.xz
plus-d514c4c7bc62061935579505b497307f89fc8db5.zip
Remove specials window and db.
It was used only in manaserv and manaserv support now almost deleted.
Diffstat (limited to 'src/gui/specialswindow.h')
-rw-r--r--src/gui/specialswindow.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/src/gui/specialswindow.h b/src/gui/specialswindow.h
deleted file mode 100644
index 3b19eefa8..000000000
--- a/src/gui/specialswindow.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * The ManaPlus Client
- * Copyright (C) 2009-2010 The Mana Developers
- * Copyright (C) 2011-2013 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 <http://www.gnu.org/licenses/>.
- */
-
-#ifndef SPECIALSWINDOW_H
-#define SPECIALSWINDOW_H
-
-#include <vector>
-
-#include "playerinfo.h"
-
-#include "gui/widgets/window.h"
-
-#include <guichan/actionlistener.hpp>
-
-#include <map>
-
-class Label;
-class ScrollArea;
-class Tab;
-class TabbedArea;
-
-class SpecialEntry;
-
-class SpecialsWindow final : public Window, public gcn::ActionListener
-{
- public:
- SpecialsWindow();
-
- A_DELETE_COPY(SpecialsWindow)
-
- ~SpecialsWindow();
-
- /**
- * Called when receiving actions from widget.
- */
- void action(const gcn::ActionEvent &actionEvent) override;
-
- void draw(gcn::Graphics *graphics) override;
-
- private:
- // (re)constructs the list of specials
- void rebuild(const std::map<int, Special> &specialData);
-
- TabbedArea *mTabs;
- std::map<int, SpecialEntry *> mEntries;
-};
-
-extern SpecialsWindow *specialsWindow;
-
-#endif // SPECIALSWINDOW_H