summaryrefslogtreecommitdiff
path: root/src/gui/widgets/shortcutcontainer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/shortcutcontainer.cpp')
-rw-r--r--src/gui/widgets/shortcutcontainer.cpp159
1 files changed, 0 insertions, 159 deletions
diff --git a/src/gui/widgets/shortcutcontainer.cpp b/src/gui/widgets/shortcutcontainer.cpp
deleted file mode 100644
index a2b90514d..000000000
--- a/src/gui/widgets/shortcutcontainer.cpp
+++ /dev/null
@@ -1,159 +0,0 @@
-/*
- * The ManaPlus Client
- * Copyright (C) 2007-2009 The Mana World Development Team
- * Copyright (C) 2009-2010 The Mana Developers
- * Copyright (C) 2011-2017 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/>.
- */
-
-#include "gui/widgets/shortcutcontainer.h"
-
-#include "settings.h"
-
-#include "gui/gui.h"
-
-#include "utils/delete2.h"
-
-#include "resources/image/image.h"
-
-#include "render/graphics.h"
-
-#include "render/vertexes/imagecollection.h"
-
-#include "debug.h"
-
-float ShortcutContainer::mAlpha = 1.0;
-
-ShortcutContainer::ShortcutContainer(Widget2 *const widget) :
- Widget(widget),
- WidgetListener(),
- MouseListener(),
- mBackgroundImg(nullptr),
- mMaxItems(0),
- mBoxWidth(1),
- mBoxHeight(1),
- mGridWidth(1),
- mGridHeight(1),
- mVertexes(new ImageCollection)
-{
- mAllowLogic = false;
-
- addMouseListener(this);
- addWidgetListener(this);
-
- mForegroundColor = getThemeColor(ThemeColorId::TEXT);
- mForegroundColor2 = getThemeColor(ThemeColorId::TEXT_OUTLINE);
-
- mBackgroundImg = Theme::getImageFromThemeXml(
- "item_shortcut_background.xml", "background.xml");
-
- if (mBackgroundImg != nullptr)
- {
- mBackgroundImg->setAlpha(settings.guiAlpha);
- mBoxHeight = mBackgroundImg->getHeight();
- mBoxWidth = mBackgroundImg->getWidth();
- }
- else
- {
- mBoxHeight = 1;
- mBoxWidth = 1;
- }
-}
-
-ShortcutContainer::~ShortcutContainer()
-{
- if (mBackgroundImg != nullptr)
- {
- mBackgroundImg->decRef();
- mBackgroundImg = nullptr;
- }
-
- if (gui != nullptr)
- gui->removeDragged(this);
-
- delete2(mVertexes);
-}
-
-void ShortcutContainer::widgetResized(const Event &event A_UNUSED)
-{
- mGridWidth = mDimension.width / mBoxWidth;
-
- if (mGridWidth < 1)
- mGridWidth = 1;
-
- mGridHeight = mMaxItems / CAST_U32(mGridWidth);
-
- if (mMaxItems % mGridWidth != 0 || mGridHeight < 1)
- ++mGridHeight;
-
- setHeight(mGridHeight * mBoxHeight);
- mRedraw = true;
-}
-
-int ShortcutContainer::getIndexFromGrid(const int pointX,
- const int pointY) const
-{
- const Rect tRect = Rect(0, 0,
- mGridWidth * mBoxWidth, mGridHeight * mBoxHeight);
-
- int index = ((pointY / mBoxHeight) * mGridWidth) + pointX / mBoxWidth;
-
- if (!tRect.isPointInRect(pointX, pointY) ||
- index >= CAST_S32(mMaxItems) || index < 0)
- {
- index = -1;
- }
-
- return index;
-}
-
-void ShortcutContainer::drawBackground(Graphics *const g)
-{
- if (mBackgroundImg != nullptr)
- {
- if (mRedraw)
- {
- mRedraw = false;
- mVertexes->clear();
- for (unsigned i = 0; i < mMaxItems; i ++)
- {
- g->calcTileCollection(mVertexes, mBackgroundImg,
- (i % mGridWidth) * mBoxWidth,
- (i / mGridWidth) * mBoxHeight);
- }
- g->finalize(mVertexes);
- }
- g->drawTileCollection(mVertexes);
- }
-}
-
-void ShortcutContainer::safeDrawBackground(Graphics *const g)
-{
- if (mBackgroundImg != nullptr)
- {
- for (unsigned i = 0; i < mMaxItems; i ++)
- {
- g->drawImage(mBackgroundImg, (i % mGridWidth) * mBoxWidth,
- (i / mGridWidth) * mBoxHeight);
- }
- }
-}
-
-void ShortcutContainer::widgetMoved(const Event& event A_UNUSED)
-{
- mRedraw = true;
-}