mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
18 lines
334 B
C++
18 lines
334 B
C++
#ifndef _ErrorThread_displays_h_
|
|
#define _ErrorThread_displays_h_
|
|
|
|
using namespace Upp;
|
|
|
|
struct ProgressDisplayMy : Display
|
|
{
|
|
Color color;
|
|
int x;
|
|
|
|
virtual void Paint(Draw& w, const Rect& r, const Value& q,
|
|
Color ink, Color paper, dword style) const
|
|
{
|
|
w.DrawRect(x, 0, 100, r.GetHeight(), Blue);
|
|
}
|
|
};
|
|
|
|
#endif
|