/* * The ManaPlus Client * Copyright (C) 2004-2009 The Mana World Development Team * 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 . */ #ifndef GUI_WIDGETS_PROGRESSBAR_H #define GUI_WIDGETS_PROGRESSBAR_H #include "gui/widgets/widget2.h" #include #include #include #include "localconsts.h" class Graphics; class ImageCollection; class Skin; /** * A progress bar. * * \ingroup GUI */ class ProgressBar final : public gcn::Widget, public Widget2, public gcn::WidgetListener { public: /** * Constructor, initializes the progress with the given value. */ ProgressBar(const Widget2 *const widget, float progress, const int width = 40, const int height = 7, const int color = -1); A_DELETE_COPY(ProgressBar) ~ProgressBar(); /** * Performs progress bar logic (fading colors) */ void logic() override; /** * Update the alpha value to the graphic components. */ void updateAlpha(); /** * Draws the progress bar. */ void draw(gcn::Graphics *graphics) override; /** * Sets the current progress. */ void setProgress(const float progress); /** * Returns the current progress. */ float getProgress() const A_WARN_UNUSED { return mProgress; } /** * Change the ProgressPalette for this ProgressBar to follow or -1 to * disable this and manage color manually. */ void setProgressPalette(const int progressPalette); /** * Change the color of the progress bar. */ void setColor(const gcn::Color &color); /** * Returns the color of the progress bar. */ const gcn::Color &getColor() const A_WARN_UNUSED { return mColor; } /** * Sets the text shown on the progress bar. */ void setText(const std::string &str) { mText = str; } /** * Returns the text shown on the progress bar. */ const std::string &text() const A_WARN_UNUSED { return mText; } /** * Set whether the progress is moved smoothly. */ void setSmoothProgress(bool smoothProgress) { mSmoothProgress = smoothProgress; } /** * Set whether the color changing is made smoothly. */ void setSmoothColorChange(bool smoothColorChange) { mSmoothColorChange = smoothColorChange; } /** * Renders a progressbar with the given properties. */ void render(Graphics *graphics); void widgetResized(const gcn::Event &event) override; void widgetMoved(const gcn::Event &event) override; void setPadding(unsigned int padding) { mPadding = padding; } private: Skin *mSkin; float mProgress; float mProgressToGo; gcn::Color mColor; gcn::Color mColorToGo; gcn::Color mOutlineColor; std::string mText; ImageCollection *mVertexes; int mProgressPalette; /** < Entry in ProgressPalette or -1 for none. */ unsigned int mPadding; unsigned int mFillPadding; static int mInstances; static float mAlpha; bool mSmoothProgress; bool mSmoothColorChange; bool mRedraw; }; #endif // GUI_WIDGETS_PROGRESSBAR_H