summaryrefslogtreecommitdiff
path: root/src/gui/widgets/browserbox.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-10-10 22:14:45 +0300
committerAndrei Karas <akaras@inbox.ru>2017-10-10 22:15:57 +0300
commitaa3f63fd497558a02feb3ddbc44f31eac091f39b (patch)
tree0e28b9b1f0501dd8be9e1a38db4ec1777fa3fbfa /src/gui/widgets/browserbox.h
parent7c10a6b61e9d06a4ae9cc9f942dfacb6fcfd9d3d (diff)
downloadplus-aa3f63fd497558a02feb3ddbc44f31eac091f39b.tar.gz
plus-aa3f63fd497558a02feb3ddbc44f31eac091f39b.tar.bz2
plus-aa3f63fd497558a02feb3ddbc44f31eac091f39b.tar.xz
plus-aa3f63fd497558a02feb3ddbc44f31eac091f39b.zip
Remove most unused files.
Diffstat (limited to 'src/gui/widgets/browserbox.h')
-rw-r--r--src/gui/widgets/browserbox.h210
1 files changed, 0 insertions, 210 deletions
diff --git a/src/gui/widgets/browserbox.h b/src/gui/widgets/browserbox.h
deleted file mode 100644
index 45502ba5a..000000000
--- a/src/gui/widgets/browserbox.h
+++ /dev/null
@@ -1,210 +0,0 @@
-/*
- * The ManaPlus Client
- * Copyright (C) 2004-2009 The Mana World Development Team
- * Copyright (C) 2009-2010 The Mana Developers
- * Copyright (C) 2011-2017 The ManaPlus Developers
- * Copyright (C) 2009 Aethyra Development Team
- *
- * 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 GUI_WIDGETS_BROWSERBOX_H
-#define GUI_WIDGETS_BROWSERBOX_H
-
-#include "enums/simpletypes/opaque.h"
-
-#include "enums/gui/colorname.h"
-
-#include "gui/browserlink.h"
-
-#include "gui/widgets/linepart.h"
-#include "gui/widgets/widget.h"
-
-#include "listeners/mouselistener.h"
-#include "listeners/widgetlistener.h"
-
-#include "localconsts.h"
-
-class LinkHandler;
-
-/**
- * A simple browser box able to handle links and forward events to the
- * parent conteiner.
- */
-class BrowserBox final : public Widget,
- public MouseListener,
- public WidgetListener
-{
- public:
- /**
- * Constructor.
- */
- BrowserBox(const Widget2 *const widget,
- const Opaque opaque,
- const std::string &skin);
-
- A_DELETE_COPY(BrowserBox)
-
- /**
- * Destructor.
- */
- ~BrowserBox();
-
- /**
- * Sets the handler for links.
- */
- void setLinkHandler(LinkHandler *linkHandler);
-
- /**
- * Sets the BrowserBox opacity.
- */
- void setOpaque(Opaque opaque)
- { mOpaque = opaque; }
-
- /**
- * Sets the maximum numbers of rows in the browser box. 0 = no limit.
- */
- void setMaxRow(unsigned max)
- { mMaxRows = max; }
-
- /**
- * Adds a text row to the browser.
- */
- void addRow(const std::string &row, const bool atTop = false);
-
- /**
- * Adds a menu line to the browser.
- */
- void addRow(const std::string &cmd, const char *const text);
-
- void addImage(const std::string &path);
-
- /**
- * Remove all rows.
- */
- void clearRows();
-
- /**
- * Handles mouse actions.
- */
- void mousePressed(MouseEvent &event) override final;
-
- void mouseMoved(MouseEvent &event) override final;
-
- void mouseExited(MouseEvent& event) override final;
-
- /**
- * Draws the browser box.
- */
- void draw(Graphics *const graphics) override final A_NONNULL(2);
-
- void safeDraw(Graphics *const graphics) override final A_NONNULL(2);
-
- void updateHeight();
-
- void updateSize(const bool always);
-
- typedef std::list<std::string> TextRows;
-
- TextRows &getRows() noexcept2 A_WARN_UNUSED
- { return mTextRows; }
-
- bool hasRows() const noexcept2 A_WARN_UNUSED
- { return !mTextRows.empty(); }
-
- void setAlwaysUpdate(const bool n) noexcept2
- { mAlwaysUpdate = n; }
-
- void setProcessVars(const bool n) noexcept2
- { mProcessVars = n; }
-
- void setEnableImages(const bool n) noexcept2
- { mEnableImages = n; }
-
- void setEnableKeys(const bool n) noexcept2
- { mEnableKeys = n; }
-
- void setEnableTabs(const bool n) noexcept2
- { mEnableTabs = n; }
-
- std::string getTextAtPos(const int x, const int y) const A_WARN_UNUSED;
-
- int getPadding() const noexcept2 A_WARN_UNUSED
- { return mPadding; }
-
- void setForegroundColorAll(const Color &color1,
- const Color &color2);
-
- unsigned int getDataWidth() const noexcept2 A_WARN_UNUSED
- { return mDataWidth; }
-
- void moveSelectionUp();
-
- void moveSelectionDown();
-
- void selectSelection();
-
- void widgetResized(const Event &event) override final;
-
- private:
- int calcHeight() A_WARN_UNUSED;
-
- typedef TextRows::iterator TextRowIterator;
- typedef TextRows::const_iterator TextRowCIter;
- TextRows mTextRows;
- std::list<int> mTextRowLinksCount;
-
- typedef STD_VECTOR<LinePart> LinePartList;
- typedef LinePartList::iterator LinePartIterator;
- typedef LinePartList::const_iterator LinePartCIter;
- LinePartList mLineParts;
-
- typedef STD_VECTOR<BrowserLink> Links;
- typedef Links::iterator LinkIterator;
- Links mLinks;
-
- LinkHandler *mLinkHandler;
- Skin *mSkin;
- unsigned int mHighlightMode;
- int mSelectedLink;
- unsigned int mMaxRows;
- int mHeight;
- int mWidth;
- int mYStart;
- time_t mUpdateTime;
- int mPadding;
- unsigned int mNewLinePadding;
- int mItemPadding;
- unsigned int mDataWidth;
-
- Color mHighlightColor;
- Color mHyperLinkColor;
- Color mColors[2][ColorName::COLORS_MAX];
-
- Opaque mOpaque;
- bool mUseLinksAndUserColors;
- bool mUseEmotes;
- bool mAlwaysUpdate;
- bool mProcessVars;
- bool mEnableImages;
- bool mEnableKeys;
- bool mEnableTabs;
-
- static ImageSet *mEmotes;
- static int mInstances;
-};
-
-#endif // GUI_WIDGETS_BROWSERBOX_H