1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/*
$Id: progressbar.cpp,v 1.5 2001/12/28 01:10:49 sphair Exp $
ClanGUI, copyrights by various people. Have a look in the CREDITS file.
This sourcecode is distributed using the Library GNU Public Licence,
version 2 or (at your option) any later version. Please read LICENSE
for details.
*/
#include "precomp.h"
#include "API/GUI/progressbar.h"
#include "API/GUI/component_options.h"
#include "API/GUI/stylemanager.h"
#include "progressbar_generic.h"
/////////////////////////////////////////////////////////////////////////////
// Construction:
CL_ProgressBar::CL_ProgressBar(
CL_Component *parent,
CL_StyleManager *style)
: CL_Component(parent, style), impl(NULL)
{
impl = new CL_ProgressBar_Generic(this, 0);
get_style_manager()->connect_styles("progressbar", this);
}
CL_ProgressBar::CL_ProgressBar(
const CL_Rect &pos,
int steps,
CL_Component *parent,
CL_StyleManager *style)
: CL_Component(pos, parent, style), impl(NULL)
{
impl = new CL_ProgressBar_Generic(this, steps);
get_style_manager()->connect_styles("progressbar", this);
}
CL_ProgressBar::~CL_ProgressBar()
{
delete impl;
}
/////////////////////////////////////////////////////////////////////////////
// Attributes:
int CL_ProgressBar::get_progress() const
{
return impl->progress;
}
int CL_ProgressBar::get_steps() const
{
return impl->steps;
}
float CL_ProgressBar::get_percentage() const
{
return impl->get_percentage();
}
/////////////////////////////////////////////////////////////////////////////
// Operations:
void CL_ProgressBar::set_steps(int total_steps)
{
impl->set_steps(total_steps);
}
void CL_ProgressBar::set_progress(int progress)
{
impl->set_progress(progress);
}
void CL_ProgressBar::increase(int steps)
{
impl->increase(steps);
}
void CL_ProgressBar::reset()
{
impl->reset();
}
|