ladybird/LibGUI/GProgressBar.h

32 lines
751 B
C
Raw Normal View History

2019-03-22 02:49:14 +01:00
#pragma once
#include <LibGUI/GFrame.h>
2019-03-22 02:49:14 +01:00
class GProgressBar : public GFrame {
2019-03-22 02:49:14 +01:00
public:
explicit GProgressBar(GWidget* parent);
virtual ~GProgressBar() override;
void set_range(int min, int max);
void set_value(int);
int value() const { return m_value; }
String caption() const { return m_caption; }
void set_caption(const String& caption) { m_caption = caption; }
enum Format { Percentage, ValueSlashMax };
Format format() const { return m_format; }
void set_format(Format format) { m_format = format; }
2019-03-22 02:49:14 +01:00
protected:
virtual void paint_event(GPaintEvent&) override;
private:
Format m_format { Percentage };
2019-03-22 02:49:14 +01:00
int m_min { 0 };
int m_max { 100 };
int m_value { 0 };
String m_caption;
2019-03-22 02:49:14 +01:00
};