You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
4.3 KiB
110 lines
4.3 KiB
2 years ago
|
/*
|
||
|
* EEZ Generic Firmware
|
||
|
* Copyright (C) 2018-present, Envox d.o.o.
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
#include <eez/gui/gui.h>
|
||
|
#include <eez/gui/widgets/containers/container.h>
|
||
|
|
||
|
namespace eez {
|
||
|
namespace gui {
|
||
|
|
||
|
bool isOverlay(const WidgetCursor &widgetCursor) {
|
||
|
if (widgetCursor.widget->type != WIDGET_TYPE_CONTAINER) {
|
||
|
return false;
|
||
|
}
|
||
|
auto containerWidget = (const ContainerWidget *)widgetCursor.widget;
|
||
|
return containerWidget->overlay != DATA_ID_NONE;
|
||
|
}
|
||
|
|
||
|
Overlay *getOverlay(const WidgetCursor &widgetCursor) {
|
||
|
if (widgetCursor.widget->type != WIDGET_TYPE_CONTAINER) {
|
||
|
return nullptr;
|
||
|
}
|
||
|
auto containerWidget = (const ContainerWidget *)widgetCursor.widget;
|
||
|
if (containerWidget->overlay == DATA_ID_NONE) {
|
||
|
return nullptr;
|
||
|
}
|
||
|
Value overlayValue;
|
||
|
DATA_OPERATION_FUNCTION(containerWidget->overlay, DATA_OPERATION_GET_OVERLAY_DATA, widgetCursor, overlayValue);
|
||
|
if (overlayValue.getType() != VALUE_TYPE_POINTER) {
|
||
|
return nullptr;
|
||
|
}
|
||
|
return (Overlay *)overlayValue.getVoidPointer();
|
||
|
}
|
||
|
|
||
|
void getOverlayOffset(const WidgetCursor &widgetCursor, int &xOffset, int &yOffset) {
|
||
|
Overlay *overlay = getOverlay(widgetCursor);
|
||
|
if (overlay) {
|
||
|
auto &overlayXOffset = (overlay->visibility & OVERLAY_MINIMIZED) != 0 ? overlay->xOffsetMinimized : overlay->xOffsetMaximized;
|
||
|
auto &overlayYOffset = (overlay->visibility & OVERLAY_MINIMIZED) != 0 ? overlay->yOffsetMinimized : overlay->yOffsetMaximized;
|
||
|
|
||
|
if (!overlay->moved && overlay->state) {
|
||
|
overlayXOffset = overlay->x - widgetCursor.widget->x;
|
||
|
overlayYOffset = overlay->y - widgetCursor.widget->y;
|
||
|
}
|
||
|
|
||
|
int x1 = 0;
|
||
|
int y1 = 0;
|
||
|
int x2 = 0;
|
||
|
int y2 = 0;
|
||
|
expandRectWithShadow(x1, y1, x2, y2);
|
||
|
|
||
|
int x = widgetCursor.x + overlayXOffset;
|
||
|
if (x + x1 < widgetCursor.appContext->rect.x) {
|
||
|
x = widgetCursor.appContext->rect.x - x1;
|
||
|
}
|
||
|
if (x + overlay->width + x2 > widgetCursor.appContext->rect.x + widgetCursor.appContext->rect.w) {
|
||
|
x = widgetCursor.appContext->rect.x + widgetCursor.appContext->rect.w - overlay->width - x2;
|
||
|
}
|
||
|
|
||
|
int y = widgetCursor.y + overlayYOffset;
|
||
|
if (y + y1 < widgetCursor.appContext->rect.y) {
|
||
|
y = widgetCursor.appContext->rect.y - y1;
|
||
|
}
|
||
|
if (y + overlay->height + y2 > widgetCursor.appContext->rect.y + widgetCursor.appContext->rect.h) {
|
||
|
y = widgetCursor.appContext->rect.y + widgetCursor.appContext->rect.h - overlay->height - y2;
|
||
|
}
|
||
|
|
||
|
xOffset = overlayXOffset = x - widgetCursor.x;
|
||
|
yOffset = overlayYOffset = y - widgetCursor.y;
|
||
|
} else {
|
||
|
xOffset = 0;
|
||
|
yOffset = 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void dragOverlay(Event &touchEvent) {
|
||
|
Overlay *overlay = getOverlay(getFoundWidgetAtDown());
|
||
|
if (overlay) {
|
||
|
auto &overlayXOffset = (overlay->visibility & OVERLAY_MINIMIZED) != 0 ? overlay->xOffsetMinimized : overlay->xOffsetMaximized;
|
||
|
auto &overlayYOffset = (overlay->visibility & OVERLAY_MINIMIZED) != 0 ? overlay->yOffsetMinimized : overlay->yOffsetMaximized;
|
||
|
if (touchEvent.type == EVENT_TYPE_TOUCH_DOWN) {
|
||
|
overlay->xOnTouchDown = touchEvent.x;
|
||
|
overlay->yOnTouchDown = touchEvent.y;
|
||
|
overlay->xOffsetOnTouchDown = overlayXOffset;
|
||
|
overlay->yOffsetOnTouchDown = overlayYOffset;
|
||
|
} else if (touchEvent.type == EVENT_TYPE_TOUCH_MOVE) {
|
||
|
overlay->moved = true;
|
||
|
overlayXOffset = overlay->xOffsetOnTouchDown + touchEvent.x - overlay->xOnTouchDown;
|
||
|
overlayYOffset = overlay->yOffsetOnTouchDown + touchEvent.y - overlay->yOnTouchDown;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
} // namespace gui
|
||
|
} // namespace eez
|