summaryrefslogtreecommitdiff
path: root/src/gui/widgets/resizegrip.cpp
diff options
context:
space:
mode:
authorIra Rice <irarice@gmail.com>2009-01-30 10:56:54 -0700
committerIra Rice <irarice@gmail.com>2009-01-30 10:56:54 -0700
commitd57be9d49c55bc0b85eb8f539ff2029518cfafc0 (patch)
treedf3726aab3d3a4227330496e3b54803a713b1e7d /src/gui/widgets/resizegrip.cpp
parentcc37b4a9153379d5c5529ba85305d36efba2cd85 (diff)
downloadmana-client-d57be9d49c55bc0b85eb8f539ff2029518cfafc0.tar.gz
mana-client-d57be9d49c55bc0b85eb8f539ff2029518cfafc0.tar.bz2
mana-client-d57be9d49c55bc0b85eb8f539ff2029518cfafc0.tar.xz
mana-client-d57be9d49c55bc0b85eb8f539ff2029518cfafc0.zip
Exposed most gui elements to take alpha values. There are still a few
spots that could also be fixed up as well, but require other methods to fix them (the filled color rectangles on the progress bars, as well as the text on them as well, as an example). Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui/widgets/resizegrip.cpp')
-rw-r--r--src/gui/widgets/resizegrip.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gui/widgets/resizegrip.cpp b/src/gui/widgets/resizegrip.cpp
index 4b8bb4da..fa264e37 100644
--- a/src/gui/widgets/resizegrip.cpp
+++ b/src/gui/widgets/resizegrip.cpp
@@ -23,6 +23,7 @@
#include "resizegrip.h"
+#include "../../configuration.h"
#include "../../graphics.h"
#include "../../resources/image.h"
@@ -30,6 +31,7 @@
Image *ResizeGrip::gripImage = 0;
int ResizeGrip::mInstances = 0;
+float ResizeGrip::mAlpha = config.getValue("guialpha", 0.8);
ResizeGrip::ResizeGrip(std::string image)
{
@@ -38,6 +40,7 @@ ResizeGrip::ResizeGrip(std::string image)
// Load the grip image
ResourceManager *resman = ResourceManager::getInstance();
gripImage = resman->getImage(image);
+ gripImage->setAlpha(mAlpha);
}
mInstances++;
@@ -58,5 +61,11 @@ ResizeGrip::~ResizeGrip()
void ResizeGrip::draw(gcn::Graphics *graphics)
{
+ if (config.getValue("guialpha", 0.8) != mAlpha)
+ {
+ mAlpha = config.getValue("guialpha", 0.8);
+ gripImage->setAlpha(mAlpha);
+ }
+
static_cast<Graphics*>(graphics)->drawImage(gripImage, 0, 0);
}