mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
30 lines
423 B
C
30 lines
423 B
C
|
// fake qprogressbar.h
|
||
|
|
||
|
class QColorGroup
|
||
|
{
|
||
|
public:
|
||
|
enum { Highlight };
|
||
|
};
|
||
|
|
||
|
class QColor
|
||
|
{
|
||
|
public:
|
||
|
QColor(int, int, int) {}
|
||
|
};
|
||
|
|
||
|
class QPalette
|
||
|
{
|
||
|
public:
|
||
|
void setColor(int, const QColor &) {}
|
||
|
};
|
||
|
|
||
|
class QProgressBar
|
||
|
{
|
||
|
public:
|
||
|
QProgressBar(int, void *) {}
|
||
|
void setProgress(int) {}
|
||
|
int progress() { return 0; }
|
||
|
QPalette palette() { return QPalette(); }
|
||
|
void setPalette(const QPalette &) {}
|
||
|
};
|