mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
15 lines
265 B
C++
15 lines
265 B
C++
#include "CtrlLib/CtrlLib.h"
|
|
|
|
using namespace Upp;
|
|
|
|
class G965 : public TopWindow {
|
|
public:
|
|
virtual Image CursorImage(Point p, dword keyflags) {
|
|
return GetTickCount() & 128 ? Image::Arrow() : Image::IBeam();
|
|
}
|
|
};
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
G965().Run();
|
|
}
|