ultimatepp/uppsrc/CtrlCore/LocalLoop.cpp
cxl d15c477675 Pen support
git-svn-id: svn://ultimatepp.org/upp/trunk@15894 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2021-04-04 16:55:30 +00:00

314 lines
6.7 KiB
C++

#include "CtrlCore.h"
namespace Upp {
#define LLOG(x) // DLOG(x)
#define LDUMP(x) // DDUMP(x)
#define LTIMESTOP(x) // DTIMESTOP(x)
void LocalLoop::Run()
{
ASSERT(master);
master->AddChild(this);
SizePos();
Ptr<Ctrl> focus = GetFocusCtrl();
SetCapture();
SetFocus();
LLOG("LocalLoop::Run");
EventLoop(this);
LLOG("LocalLoop Finished");
Remove();
if(focus)
focus->SetFocus();
}
void LocalLoop::CancelMode()
{
EndLoop();
}
static void sPaintView(Draw& w, Ctrl& m)
{
m.Paint(w);
for(Ctrl *q = m.GetFirstChild(); q; q = q->GetNext()) {
Rect r = q->GetRect();
if(q->IsShown() && q->InView() && w.IsPainting(r)) {
w.Offset(r.TopLeft());
sPaintView(w, *q);
w.End();
}
}
}
RectTracker::RectTracker(Ctrl& master)
{
op = GetMousePos();
SetMaster(master);
if(master.IsVisible()) {
LTIMESTOP("--- snapshot");
LDUMP(master.GetSize());
ImageDraw iw(master.GetSize());
sPaintView(iw, master);
master_image = iw;
}
Clip(Rect(0, 0, 100000, 100000));
width = 1;
minsize = Size(0, 0);
maxsize = Size(100000, 100000);
maxrect = Rect(-100000, -100000, 100000, 100000);
keepratio = false;
cursorimage = Image::Arrow();
color = Black();
pattern = DRAWDRAGRECT_NORMAL;
animation = 0;
rounder = NULL;
}
void RectTracker::LeftUp(Point, dword)
{
EndLoop();
}
void RectTracker::RightUp(Point, dword)
{
EndLoop();
}
Image RectTracker::CursorImage(Point, dword)
{
if(animation)
Refresh();
return cursorimage;
}
void RectTracker::RefreshRect(const Rect& old, const Rect& r)
{
if(r.Normalized() == r && (tx >= 0 || ty >= 0)) {
auto Ref = [&](const Rect& r) {
Refresh(r.left, r.top, r.Width(), width);
Refresh(r.left, r.top, width, r.GetHeight());
Refresh(r.left, r.bottom - width, r.Width(), width);
Refresh(r.right - width, r.top, width, r.GetHeight());
};
Ref(old);
Ref(r);
}
else
Refresh();
}
void RectTracker::DrawRect(Draw& w, Rect r)
{
DrawDragFrame(w, r, width, pattern, color, animation ? (msecs() / animation) % 8 : 0);
}
void RectTracker::Paint(Draw& w)
{
{
LTIMESTOP("DrawImage");
w.DrawImage(0, 0, master_image);
}
w.Clip(clip & GetMaster().GetSize());
Rect r = rect;
if(tx < 0 && ty < 0) {
if(width > 1 || pattern == DRAWDRAGRECT_SOLID)
w.DrawLine(r.TopLeft(), r.BottomRight(), width, color);
else {
Color color2 = IsDark(color) ? White() : Black();
w.DrawLine(r.TopLeft(), r.BottomRight(), 1, color2);
w.DrawLine(r.TopLeft(), r.BottomRight(), pattern == DRAWDRAGRECT_DASHED ? PEN_DASH : PEN_DOT, color);
}
}
else {
if(ty < 0)
r.left = r.right - 1;
else
if(tx < 0)
r.top = r.bottom - 1;
else
r.Normalize();
DrawRect(w, r);
}
w.End();
}
Rect RectTracker::Track(const Rect& r, int _tx, int _ty)
{
rect = r;
tx = _tx;
ty = _ty;
org = rect;
o = rect;
Run();
return rect;
}
int RectTracker::TrackHorzLine(int x0, int y0, int cx, int line)
{
return Track(RectC(x0, y0, cx, line + 1), -1, ALIGN_BOTTOM).bottom - 1;
}
int RectTracker::TrackVertLine(int x0, int y0, int cy, int line)
{
return Track(RectC(x0, y0, line + 1, cy), ALIGN_RIGHT, -1).right - 1;
}
Point RectTracker::TrackLine(int x0, int y0)
{
return Track(Rect(x0, y0, x0, y0), -1, -1).BottomRight();
}
Rect RectTracker::Round(const Rect& r)
{
Rect h = r;
if(round)
round(h);
return rounder ? rounder->Round(h) : h;
}
bool RectTracker::Pen(Point p, const PenInfo &pn, dword keyflags){
switch(pn.action){
case 0:
if(!pn.history) MouseMove(p, keyflags);
break;
case PEN_DOWN:
LeftDown(p, keyflags);
break;
case PEN_UP:
LeftUp(p, keyflags);
break;
}
return true;
}
void RectTracker::MouseMove(Point mp, dword){
Point p = GetMousePos();
rect = org;
if(tx < 0 && ty < 0) { // free line mode
rect.right = mp.x;
rect.bottom = mp.y;
}
else
if(tx == ALIGN_CENTER && ty == ALIGN_CENTER) { // move rectangle
int x = org.left - op.x + p.x;
int y = org.top - op.y + p.y;
if(x + org.Width() > maxrect.right)
x = maxrect.right - org.Width();
if(x < maxrect.left)
x = maxrect.left;
if(y + org.Height() > maxrect.bottom)
y = maxrect.bottom - org.Height();
if(y < maxrect.top)
y = maxrect.top;
rect = RectC(x, y, org.Width(), org.Height());
}
else {
if(tx == ALIGN_LEFT) {
rect.left = max(org.left - op.x + p.x, maxrect.left);
rect.left = minmax(rect.left, rect.right - maxsize.cx, rect.right - minsize.cx);
}
if(tx == ALIGN_RIGHT) {
rect.right = min(org.right - op.x + p.x, maxrect.right);
rect.right = minmax(rect.right, rect.left + minsize.cx, rect.left + maxsize.cx);
}
if(ty == ALIGN_TOP) {
rect.top = max(org.top - op.y + p.y, maxrect.top);
rect.top = minmax(rect.top, rect.bottom - maxsize.cy, rect.bottom - minsize.cy);
}
if(ty == ALIGN_BOTTOM) {
rect.bottom = min(org.bottom - op.y + p.y, maxrect.bottom);
rect.bottom = minmax(rect.bottom, rect.top + minsize.cy, rect.top + maxsize.cy);
}
if(tx == ALIGN_NULL) {
rect.right = min(org.right - op.x + p.x, maxrect.right);
if (rect.right < rect.left) {
Swap(rect.right, rect.left);
rect.InflateHorz(1);
}
}
if(ty == ALIGN_NULL) {
rect.bottom = min(org.bottom - op.y + p.y, maxrect.bottom);
if (rect.bottom < rect.top) {
Swap(rect.bottom, rect.top);
rect.InflateVert(1);
}
}
if(keepratio) {
int cy = org.Width() ? rect.Width() * org.Height() / org.Width() : 0;
int cx = org.Height() ? rect.Height() * org.Width() / org.Height() : 0;
if(tx == ALIGN_BOTTOM && ty == ALIGN_RIGHT) {
Size sz = rect.Size();
if(cx > sz.cx)
rect.right = rect.left + cx;
else
rect.bottom = rect.top + cy;
}
else
if(tx == ALIGN_RIGHT)
rect.bottom = rect.top + cy;
else
if(ty == ALIGN_BOTTOM)
rect.right = rect.left + cx;
}
}
if(rect != o) {
rect = Round(rect);
if(rect != o) {
RefreshRect(rect, o);
sync(rect);
o = rect;
}
}
}
class PointLooper : public LocalLoop {
const Vector<Image>& ani;
int ani_ms;
bool result;
public:
virtual void LeftUp(Point, dword);
virtual Image CursorImage(Point p, dword keyflags);
virtual bool Key(dword key, int);
operator bool() const { return result; }
PointLooper(Ctrl& ctrl, const Vector<Image>& ani, int ani_ms)
: ani(ani), ani_ms(ani_ms) { SetMaster(ctrl); }
};
void PointLooper::LeftUp(Point, dword)
{
result = true;
EndLoop();
}
Image PointLooper::CursorImage(Point p, dword keyflags)
{
return ani[int(GetTimeClick() / ani_ms % ani.GetCount())];
}
bool PointLooper::Key(dword key, int)
{
if(key == K_ESCAPE) {
result = false;
EndLoop();
}
return true;
}
bool PointLoop(Ctrl& ctrl, const Vector<Image>& ani, int ani_ms)
{
PointLooper p(ctrl, ani, ani_ms);
p.Run();
return p;
}
bool PointLoop(Ctrl& ctrl, const Image& img)
{
Vector<Image> m;
m.Add(img);
return PointLoop(ctrl, m, 1);
}
}