ultimatepp/uppdev/ErrorThread20070606/displays.h
cxl 3cd394812c Merge continued
git-svn-id: svn://ultimatepp.org/upp/trunk@10263 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2016-10-04 08:34:39 +00:00

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