Browse Source

Update Info plugin example resize handle to set mouse cursor

Signed-off-by: falkTX <falktx@falktx.com>
pull/321/head
falkTX 2 years ago
parent
commit
772e4f5ae8
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 43 additions and 12 deletions
  1. +43
    -12
      examples/Info/ResizeHandle.hpp

+ 43
- 12
examples/Info/ResizeHandle.hpp View File

@@ -1,6 +1,6 @@
/* /*
* Resize handle for DPF * Resize handle for DPF
* Copyright (C) 2021 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2021-2022 Filipe Coelho <falktx@falktx.com>
* *
* Permission to use, copy, modify, and/or distribute this software for any purpose with * Permission to use, copy, modify, and/or distribute this software for any purpose with
* or without fee is hereby granted, provided that the above copyright notice and this * or without fee is hereby granted, provided that the above copyright notice and this
@@ -19,6 +19,10 @@
#include "TopLevelWidget.hpp" #include "TopLevelWidget.hpp"
#include "Color.hpp" #include "Color.hpp"


#if defined(DGL_OPENGL) && !defined(DGL_USE_OPENGL3)
#include "OpenGL-include.hpp"
#endif

START_NAMESPACE_DGL START_NAMESPACE_DGL


/** Resize handle for DPF windows, will sit on bottom-right. */ /** Resize handle for DPF windows, will sit on bottom-right. */
@@ -29,7 +33,8 @@ public:
explicit ResizeHandle(Window& window) explicit ResizeHandle(Window& window)
: TopLevelWidget(window), : TopLevelWidget(window),
handleSize(16), handleSize(16),
resizing(false)
hasCursor(false),
isResizing(false)
{ {
resetArea(); resetArea();
} }
@@ -38,12 +43,14 @@ public:
explicit ResizeHandle(TopLevelWidget* const tlw) explicit ResizeHandle(TopLevelWidget* const tlw)
: TopLevelWidget(tlw->getWindow()), : TopLevelWidget(tlw->getWindow()),
handleSize(16), handleSize(16),
resizing(false)
hasCursor(false),
isResizing(false)
{ {
resetArea(); resetArea();
} }


/** Set the handle size, minimum 16. */
/** Set the handle size, minimum 16.
* Scale factor is automatically applied on top of this size as needed */
void setHandleSize(const uint size) void setHandleSize(const uint size)
{ {
handleSize = std::max(16u, size); handleSize = std::max(16u, size);
@@ -53,9 +60,15 @@ public:
protected: protected:
void onDisplay() override void onDisplay() override
{ {
// TODO implement gl3 stuff in DPF
#ifndef DGL_USE_OPENGL3
const GraphicsContext& context(getGraphicsContext()); const GraphicsContext& context(getGraphicsContext());
const double lineWidth = 1.0 * getScaleFactor(); const double lineWidth = 1.0 * getScaleFactor();


#if defined(DGL_OPENGL) && !defined(DGL_USE_OPENGL3)
glMatrixMode(GL_MODELVIEW);
#endif

// draw white lines, 1px wide // draw white lines, 1px wide
Color(1.0f, 1.0f, 1.0f).setFor(context); Color(1.0f, 1.0f, 1.0f).setFor(context);
l1.draw(context, lineWidth); l1.draw(context, lineWidth);
@@ -71,6 +84,7 @@ protected:
l1b.draw(context, lineWidth); l1b.draw(context, lineWidth);
l2b.draw(context, lineWidth); l2b.draw(context, lineWidth);
l3b.draw(context, lineWidth); l3b.draw(context, lineWidth);
#endif
} }


bool onMouse(const MouseEvent& ev) override bool onMouse(const MouseEvent& ev) override
@@ -80,15 +94,16 @@ protected:


if (ev.press && area.contains(ev.pos)) if (ev.press && area.contains(ev.pos))
{ {
resizing = true;
isResizing = true;
resizingSize = Size<double>(getWidth(), getHeight()); resizingSize = Size<double>(getWidth(), getHeight());
lastResizePoint = ev.pos; lastResizePoint = ev.pos;
return true; return true;
} }


if (resizing && ! ev.press)
if (isResizing && ! ev.press)
{ {
resizing = false;
isResizing = false;
recheckCursor(ev.pos);
return true; return true;
} }


@@ -97,8 +112,11 @@ protected:


bool onMotion(const MotionEvent& ev) override bool onMotion(const MotionEvent& ev) override
{ {
if (! resizing)
if (! isResizing)
{
recheckCursor(ev.pos);
return false; return false;
}


const Size<double> offset(ev.pos.getX() - lastResizePoint.getX(), const Size<double> offset(ev.pos.getX() - lastResizePoint.getX(),
ev.pos.getY() - lastResizePoint.getY()); ev.pos.getY() - lastResizePoint.getY());
@@ -106,9 +124,11 @@ protected:
resizingSize += offset; resizingSize += offset;
lastResizePoint = ev.pos; lastResizePoint = ev.pos;


// TODO min width, min height
const uint minWidth = 16;
const uint minHeight = 16;
// TODO keepAspectRatio
bool keepAspectRatio;
const Size<uint> minSize(getWindow().getGeometryConstraints(keepAspectRatio));
const uint minWidth = minSize.getWidth();
const uint minHeight = minSize.getHeight();


if (resizingSize.getWidth() < minWidth) if (resizingSize.getWidth() < minWidth)
resizingSize.setWidth(minWidth); resizingSize.setWidth(minWidth);
@@ -135,10 +155,21 @@ private:
uint handleSize; uint handleSize;


// event handling state // event handling state
bool resizing;
bool hasCursor, isResizing;
Point<double> lastResizePoint; Point<double> lastResizePoint;
Size<double> resizingSize; Size<double> resizingSize;


void recheckCursor(const Point<double>& pos)
{
const bool shouldHaveCursor = area.contains(pos);

if (shouldHaveCursor == hasCursor)
return;

hasCursor = shouldHaveCursor;
setCursor(shouldHaveCursor ? kMouseCursorDiagonal : kMouseCursorArrow);
}

void resetArea() void resetArea()
{ {
const double scaleFactor = getScaleFactor(); const double scaleFactor = getScaleFactor();


Loading…
Cancel
Save