mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-22 14:15:40 -06:00
213 lines
4.2 KiB
C++
213 lines
4.2 KiB
C++
#include <CtrlLib/CtrlLib.h>
|
|
#include <RichEdit/RichEdit.h>
|
|
|
|
using namespace Upp;
|
|
|
|
struct MyApp : TopWindow {
|
|
Point pos;
|
|
Vector<String> log;
|
|
|
|
virtual Size GetMinSize() const { return Size(100, 100); }
|
|
virtual Size GetMaxSize() const { return Size(400, 200); }
|
|
|
|
void Log(const String& s)
|
|
{
|
|
log.Add(s);
|
|
log.Remove(0, max(log.GetCount() - 16, 0));
|
|
Refresh();
|
|
}
|
|
|
|
virtual void Activate()
|
|
{
|
|
Log("Activate");
|
|
}
|
|
|
|
virtual void Deactivate()
|
|
{
|
|
Log("Deactivate");
|
|
}
|
|
|
|
virtual void Layout()
|
|
{
|
|
Log("Layout");
|
|
}
|
|
|
|
virtual void GotFocus()
|
|
{
|
|
Log("GotFocus");
|
|
}
|
|
|
|
virtual void LostFocus()
|
|
{
|
|
Log("LostFocus");
|
|
}
|
|
|
|
virtual Image MouseEvent(int event, Point p, int zdelta, dword keyflags)
|
|
{
|
|
static Tuple2<int, const char *> map[] = {
|
|
{ 0x10, "MOUSEENTER" },
|
|
{ 0x20, "MOUSEMOVE" },
|
|
{ 0x30, "MOUSELEAVE" },
|
|
{ 0x40, "CURSORIMAGE" },
|
|
{ 0x50, "MOUSEWHEEL" },
|
|
{ 0x80, "DOWN" },
|
|
{ 0x90, "UP" },
|
|
{ 0xa0, "DOUBLE" },
|
|
{ 0xb0, "REPEAT" },
|
|
{ 0xc0, "DRAG" },
|
|
{ 0xd0, "HOLD" },
|
|
{ 0xe0, "TRIPLE" },
|
|
};
|
|
Tuple2<int, const char *> *a = FindTuple(map, __countof(map), event & BUTTON);
|
|
Tuple2<int, const char *> *b = FindTuple(map, __countof(map), event & ACTION);
|
|
Log(String().Cat() << "MOUSE " << (a ? a->b : "") << '|' << (b ? b->b : "") << ' ' << p);
|
|
|
|
return TopWindow::MouseEvent(event, p, zdelta, keyflags);
|
|
}
|
|
|
|
virtual bool Key(dword key, int count)
|
|
{
|
|
Log(GetKeyDesc(key).Cat() << ' ' << count);
|
|
return false;
|
|
}
|
|
|
|
virtual void MouseMove(Point p, dword keyflags)
|
|
{
|
|
pos = p;
|
|
SetCaret(p.x, 0, 5, 5);
|
|
Refresh();
|
|
}
|
|
|
|
virtual Image CursorImage(Point p, dword keyflags)
|
|
{
|
|
Size sz = GetSize();
|
|
if(p.x < sz.cx / 4)
|
|
return Image::Arrow();
|
|
if(p.x < 2 * sz.cx / 4)
|
|
return Image::Hand();
|
|
if(p.x < 3 * sz.cx / 4)
|
|
return CtrlImg::ibeam0();
|
|
return (msecs() / 500) & 1 ? CtrlImg::HelpCursor1() : CtrlImg::HelpCursor0();
|
|
}
|
|
|
|
virtual void Paint(Draw& w) {
|
|
int fcy = GetStdFontCy();
|
|
w.DrawRect(GetSize(), White());
|
|
int y = 0;
|
|
w.DrawText(0, y += fcy, AsString(pos));
|
|
w.DrawText(0, y += fcy, String().Cat() << "Shift: " << (int)GetShift());
|
|
w.DrawText(0, y += fcy, String().Cat() << "Ctrl: " << (int)GetCtrl());
|
|
w.DrawText(0, y += fcy, String().Cat() << "Alt: " << (int)GetAlt());
|
|
w.DrawText(0, y += fcy, String().Cat() << "CapsLock: " << (int)GetCapsLock());
|
|
w.DrawText(0, y += fcy, String().Cat() << "MouseLeft: " << (int)GetMouseLeft());
|
|
w.DrawText(0, y += fcy, String().Cat() << "MouseRight: " << (int)GetMouseRight());
|
|
w.DrawText(0, y += fcy, String().Cat() << "MouseMiddle: " << (int)GetMouseMiddle());
|
|
y = 0;
|
|
for(int i = 0; i < log.GetCount(); i++) {
|
|
w.DrawText(100, y, log[i]);
|
|
y += fcy;
|
|
}
|
|
}
|
|
|
|
EditString text;
|
|
|
|
MyApp() {
|
|
Sizeable().Zoomable().Title("Event test");
|
|
Icon(CtrlImg::save_as());
|
|
// Icon(CtrlImg::Network());
|
|
}
|
|
};
|
|
|
|
struct MyApp2 : TopWindow {
|
|
DocEdit text;
|
|
/*
|
|
virtual void Activate()
|
|
{
|
|
LOG("Activate");
|
|
}
|
|
|
|
virtual void Deactivate()
|
|
{
|
|
LOG("Deactivate");
|
|
}
|
|
|
|
virtual void Layout()
|
|
{
|
|
LOG("Layout");
|
|
}
|
|
|
|
virtual void GotFocus()
|
|
{
|
|
LOG("GotFocus");
|
|
}
|
|
|
|
virtual void LostFocus()
|
|
{
|
|
LOG("LostFocus");
|
|
}
|
|
*/
|
|
MyApp2() {
|
|
Zoomable().
|
|
Sizeable().
|
|
Title("Widget test");
|
|
Add(text.SizePos());
|
|
text <<= "Test\nHello World!";
|
|
|
|
DDUMP(Ctrl::GetWorkArea());
|
|
}
|
|
};
|
|
|
|
struct MyApp3 : TopWindow {
|
|
Rect rect;
|
|
|
|
typedef MyApp3 CLASSNAME;
|
|
|
|
virtual void Paint(Draw& w)
|
|
{
|
|
Size sz = GetSize();
|
|
w.DrawRect(sz, SColorPaper());
|
|
DrawFrame(w, rect, Black());
|
|
}
|
|
|
|
virtual void LeftDown(Point p, dword keyflags) {
|
|
RectTracker tr(*this);
|
|
Size sz = GetSize();
|
|
tr.Normal();
|
|
rect = tr.Track(rect, ALIGN_RIGHT, ALIGN_BOTTOM);
|
|
Refresh();
|
|
}
|
|
|
|
MyApp3() {
|
|
rect = RectC(100, 100, 100, 100);
|
|
}
|
|
};
|
|
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
#if 0
|
|
String txt = "Test";
|
|
|
|
EditText(txt, "Test", "Test");
|
|
return;
|
|
#endif
|
|
|
|
#if 1
|
|
MyApp3().Run();
|
|
return;
|
|
#endif
|
|
|
|
#if 0
|
|
PromptOK("Hello world!");
|
|
return;
|
|
#endif
|
|
|
|
#if 1
|
|
RichEditWithToolBar edit;
|
|
edit.SetQTF("[A9 Hello World!");
|
|
TopWindow win;
|
|
win.Sizeable();
|
|
win.Add(edit.SizePos());
|
|
win.Run();
|
|
#endif
|
|
}
|