2013-06-07 16:27:59 +00:00
|
|
|
/*
|
2013-06-15 11:09:02 +00:00
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
2013-06-07 16:27:59 +00:00
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
2013-07-21 20:20:37 +00:00
|
|
|
* http://ugfx.org/license.html
|
2013-06-07 16:27:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gfx.h"
|
|
|
|
|
|
|
|
// Used by the NULL window manager
|
|
|
|
#define MIN_WIN_WIDTH 3
|
|
|
|
#define MIN_WIN_HEIGHT 3
|
|
|
|
|
|
|
|
/*-----------------------------------------------
|
|
|
|
* The default window manager (GNullWindowManager)
|
|
|
|
*-----------------------------------------------*/
|
|
|
|
|
|
|
|
#if GFX_USE_GWIN && GWIN_NEED_WINDOWMANAGER
|
|
|
|
|
|
|
|
#include "gwin/class_gwin.h"
|
|
|
|
|
|
|
|
/*-----------------------------------------------
|
|
|
|
* Data
|
|
|
|
*-----------------------------------------------*/
|
|
|
|
|
|
|
|
static void WM_Init(void);
|
|
|
|
static void WM_DeInit(void);
|
2013-07-03 14:20:32 +00:00
|
|
|
static bool_t WM_Add(GHandle gh, const GWindowInit *pInit);
|
2013-06-07 16:27:59 +00:00
|
|
|
static void WM_Delete(GHandle gh);
|
2013-11-15 16:01:16 +00:00
|
|
|
static void WM_Redraw(GHandle gh, int flags);
|
2013-06-07 16:27:59 +00:00
|
|
|
static void WM_Redim(GHandle gh, coord_t x, coord_t y, coord_t w, coord_t h);
|
|
|
|
static void WM_Raise(GHandle gh);
|
|
|
|
static void WM_MinMax(GHandle gh, GWindowMinMax minmax);
|
|
|
|
|
|
|
|
static const gwmVMT GNullWindowManagerVMT = {
|
|
|
|
WM_Init,
|
|
|
|
WM_DeInit,
|
|
|
|
WM_Add,
|
|
|
|
WM_Delete,
|
2013-11-15 16:01:16 +00:00
|
|
|
WM_Redraw,
|
2013-06-07 16:27:59 +00:00
|
|
|
WM_Redim,
|
|
|
|
WM_Raise,
|
|
|
|
WM_MinMax,
|
|
|
|
};
|
|
|
|
|
2013-07-07 09:40:37 +00:00
|
|
|
static const GWindowManager GNullWindowManager = {
|
2013-06-07 16:27:59 +00:00
|
|
|
&GNullWindowManagerVMT,
|
|
|
|
};
|
|
|
|
|
2013-07-07 09:40:37 +00:00
|
|
|
gfxQueueASync _GWINList;
|
|
|
|
GWindowManager * _GWINwm;
|
2013-11-17 10:25:02 +00:00
|
|
|
#if GFX_USE_GTIMER
|
|
|
|
static GTimer RedrawTimer;
|
|
|
|
static GDisplay * RedrawDisplay;
|
|
|
|
static bool_t RedrawPreserve;
|
|
|
|
static void _gwinRedrawDisplay(void * param);
|
|
|
|
#endif
|
2013-07-07 09:40:37 +00:00
|
|
|
|
|
|
|
/*-----------------------------------------------
|
|
|
|
* Window Routines
|
|
|
|
*-----------------------------------------------*/
|
|
|
|
|
|
|
|
void _gwmInit(void) {
|
|
|
|
gfxQueueASyncInit(&_GWINList);
|
|
|
|
_GWINwm = (GWindowManager *)&GNullWindowManager;
|
|
|
|
_GWINwm->vmt->Init();
|
2013-11-17 10:25:02 +00:00
|
|
|
#if GFX_USE_GTIMER
|
|
|
|
gtimerInit(&RedrawTimer);
|
|
|
|
gtimerStart(&RedrawTimer, _gwinRedrawDisplay, 0, TRUE, TIME_INFINITE);
|
|
|
|
#endif
|
2013-07-07 09:40:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void gwinSetWindowManager(struct GWindowManager *gwm) {
|
|
|
|
if (!gwm)
|
|
|
|
gwm = (GWindowManager *)&GNullWindowManager;
|
|
|
|
if (_GWINwm != gwm) {
|
|
|
|
_GWINwm->vmt->DeInit();
|
|
|
|
_GWINwm = gwm;
|
|
|
|
_GWINwm->vmt->Init();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void gwinSetMinMax(GHandle gh, GWindowMinMax minmax) {
|
|
|
|
_GWINwm->vmt->MinMax(gh, minmax);
|
|
|
|
}
|
|
|
|
|
|
|
|
void gwinRaise(GHandle gh) {
|
|
|
|
_GWINwm->vmt->Raise(gh);
|
|
|
|
}
|
|
|
|
|
|
|
|
GWindowMinMax gwinGetMinMax(GHandle gh) {
|
|
|
|
if (gh->flags & GWIN_FLG_MINIMIZED)
|
|
|
|
return GWIN_MINIMIZE;
|
|
|
|
if (gh->flags & GWIN_FLG_MAXIMIZED)
|
|
|
|
return GWIN_MAXIMIZE;
|
|
|
|
return GWIN_NORMAL;
|
|
|
|
}
|
|
|
|
|
2013-11-15 16:01:16 +00:00
|
|
|
void gwinRedrawDisplay(GDisplay *g, bool_t preserve) {
|
2013-11-17 10:25:02 +00:00
|
|
|
#if GFX_USE_GTIMER
|
|
|
|
RedrawDisplay = g;
|
|
|
|
RedrawPreserve = preserve;
|
|
|
|
gtimerJab(&RedrawTimer);
|
|
|
|
}
|
|
|
|
static void _gwinRedrawDisplay(void * param) {
|
|
|
|
GDisplay *g = RedrawDisplay;
|
|
|
|
bool_t preserve = RedrawPreserve;
|
|
|
|
(void) param;
|
|
|
|
#endif
|
|
|
|
|
2013-11-15 16:01:16 +00:00
|
|
|
const gfxQueueASyncItem * qi;
|
|
|
|
GHandle gh;
|
|
|
|
|
|
|
|
for(qi = gfxQueueASyncPeek(&_GWINList); qi; qi = gfxQueueASyncNext(qi)) {
|
|
|
|
gh = QItem2GWindow(qi);
|
|
|
|
if (!g || gh->display == g)
|
|
|
|
_GWINwm->vmt->Redraw(gh,
|
|
|
|
preserve ? (GWIN_WMFLG_PRESERVE|GWIN_WMFLG_NOBGCLEAR|GWIN_WMFLG_NOZORDER)
|
|
|
|
: (GWIN_WMFLG_NOBGCLEAR|GWIN_WMFLG_NOZORDER));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-07 16:27:59 +00:00
|
|
|
/*-----------------------------------------------
|
|
|
|
* Window Manager Routines
|
|
|
|
*-----------------------------------------------*/
|
|
|
|
|
|
|
|
static void WM_Init(void) {
|
|
|
|
// We don't need to do anything here.
|
|
|
|
// A full window manager would move the windows around, add borders etc
|
|
|
|
|
|
|
|
// clear the screen
|
|
|
|
// cycle through the windows already defined displaying them
|
|
|
|
// or cut all the window areas out of the screen and clear the remainder
|
|
|
|
}
|
|
|
|
|
|
|
|
static void WM_DeInit(void) {
|
|
|
|
// We don't need to do anything here.
|
|
|
|
// A full window manager would remove any borders etc
|
|
|
|
}
|
|
|
|
|
2013-07-03 14:20:32 +00:00
|
|
|
static bool_t WM_Add(GHandle gh, const GWindowInit *pInit) {
|
|
|
|
// Note the window will not be marked as visible yet
|
|
|
|
|
2013-06-07 16:27:59 +00:00
|
|
|
// Put it on the queue
|
|
|
|
gfxQueueASyncPut(&_GWINList, &gh->wmq);
|
|
|
|
|
|
|
|
// Make sure the size is valid
|
2013-06-24 12:58:37 +00:00
|
|
|
WM_Redim(gh, pInit->x, pInit->y, pInit->width, pInit->height);
|
2013-06-07 16:27:59 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void WM_Delete(GHandle gh) {
|
2013-07-03 14:20:32 +00:00
|
|
|
// Remove it from the queue
|
2013-06-07 16:27:59 +00:00
|
|
|
gfxQueueASyncRemove(&_GWINList, &gh->wmq);
|
|
|
|
}
|
|
|
|
|
2013-11-15 16:01:16 +00:00
|
|
|
static void WM_Redraw(GHandle gh, int flags) {
|
2013-06-07 16:27:59 +00:00
|
|
|
if ((gh->flags & GWIN_FLG_VISIBLE)) {
|
2013-11-15 16:01:16 +00:00
|
|
|
if (gh->vmt->Redraw) {
|
|
|
|
#if GDISP_NEED_CLIP
|
|
|
|
gdispGSetClip(gh->display, gh->x, gh->y, gh->width, gh->height);
|
|
|
|
#endif
|
2013-06-07 16:27:59 +00:00
|
|
|
gh->vmt->Redraw(gh);
|
2013-11-15 16:01:16 +00:00
|
|
|
} else if (!(flags & GWIN_WMFLG_PRESERVE)) {
|
|
|
|
#if GDISP_NEED_CLIP
|
|
|
|
gdispGSetClip(gh->display, gh->x, gh->y, gh->width, gh->height);
|
|
|
|
#endif
|
2013-10-24 08:36:11 +00:00
|
|
|
gdispGFillArea(gh->display, gh->x, gh->y, gh->width, gh->height, gh->bgcolor);
|
2013-11-15 16:01:16 +00:00
|
|
|
if (gh->vmt->AfterClear)
|
|
|
|
gh->vmt->AfterClear(gh);
|
|
|
|
}
|
|
|
|
|
2013-07-05 15:42:10 +00:00
|
|
|
// A real window manager would also redraw the borders here
|
2013-11-15 16:01:16 +00:00
|
|
|
|
|
|
|
// A real window manager would then redraw any higher z-order windows
|
|
|
|
// if (!(flags & GWIN_WMFLG_NOZORDER))
|
|
|
|
// ...
|
|
|
|
|
|
|
|
} else if (!(flags & GWIN_WMFLG_NOBGCLEAR)) {
|
|
|
|
#if GDISP_NEED_CLIP
|
|
|
|
gdispGSetClip(gh->display, gh->x, gh->y, gh->width, gh->height);
|
|
|
|
#endif
|
2013-10-24 08:36:11 +00:00
|
|
|
gdispGFillArea(gh->display, gh->x, gh->y, gh->width, gh->height, gwinGetDefaultBgColor());
|
2013-11-15 16:01:16 +00:00
|
|
|
}
|
2013-06-07 16:27:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void WM_Redim(GHandle gh, coord_t x, coord_t y, coord_t w, coord_t h) {
|
|
|
|
// This is the simplest way of doing it - just clip the the screen
|
|
|
|
// If it won't fit on the screen move it around until it does.
|
|
|
|
if (x < 0) { w += x; x = 0; }
|
|
|
|
if (y < 0) { h += y; y = 0; }
|
2013-10-24 08:36:11 +00:00
|
|
|
if (x > gdispGGetWidth(gh->display)-MIN_WIN_WIDTH) x = gdispGGetWidth(gh->display)-MIN_WIN_WIDTH;
|
|
|
|
if (y > gdispGGetHeight(gh->display)-MIN_WIN_HEIGHT) y = gdispGGetHeight(gh->display)-MIN_WIN_HEIGHT;
|
2013-06-07 16:27:59 +00:00
|
|
|
if (w < MIN_WIN_WIDTH) { w = MIN_WIN_WIDTH; }
|
|
|
|
if (h < MIN_WIN_HEIGHT) { h = MIN_WIN_HEIGHT; }
|
2013-10-24 08:36:11 +00:00
|
|
|
if (x+w > gdispGGetWidth(gh->display)) w = gdispGGetWidth(gh->display) - x;
|
|
|
|
if (y+h > gdispGGetHeight(gh->display)) h = gdispGGetHeight(gh->display) - y;
|
2013-07-03 14:20:32 +00:00
|
|
|
|
|
|
|
// If there has been no resize just exit
|
|
|
|
if (gh->x == x && gh->y == y && gh->width == w && gh->height == h)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Clear the old area
|
2013-11-15 16:01:16 +00:00
|
|
|
if ((gh->flags & GWIN_FLG_VISIBLE)) {
|
|
|
|
#if GDISP_NEED_CLIP
|
|
|
|
gdispGSetClip(gh->display, gh->x, gh->y, gh->width, gh->height);
|
|
|
|
#endif
|
2013-10-24 08:36:11 +00:00
|
|
|
gdispGFillArea(gh->display, gh->x, gh->y, gh->width, gh->height, gwinGetDefaultBgColor());
|
2013-11-15 16:01:16 +00:00
|
|
|
}
|
2013-07-03 14:20:32 +00:00
|
|
|
|
|
|
|
// Set the new size
|
2013-06-07 16:27:59 +00:00
|
|
|
gh->x = x; gh->y = y;
|
|
|
|
gh->width = w; gh->height = h;
|
2013-07-03 14:20:32 +00:00
|
|
|
|
|
|
|
// Redraw the window (if possible)
|
2013-11-15 16:01:16 +00:00
|
|
|
WM_Redraw(gh, GWIN_WMFLG_PRESERVE|GWIN_WMFLG_NOBGCLEAR);
|
2013-06-07 16:27:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void WM_MinMax(GHandle gh, GWindowMinMax minmax) {
|
|
|
|
(void)gh; (void) minmax;
|
|
|
|
// We don't support minimising, maximising or restoring
|
|
|
|
}
|
|
|
|
|
|
|
|
static void WM_Raise(GHandle gh) {
|
|
|
|
// Take it off the list and then put it back on top
|
|
|
|
// The order of the list then reflects the z-order.
|
|
|
|
gfxQueueASyncRemove(&_GWINList, &gh->wmq);
|
|
|
|
gfxQueueASyncPut(&_GWINList, &gh->wmq);
|
|
|
|
|
|
|
|
// Redraw the window
|
2013-11-15 16:01:16 +00:00
|
|
|
WM_Redraw(gh, GWIN_WMFLG_PRESERVE|GWIN_WMFLG_NOBGCLEAR);
|
2013-06-07 16:27:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* GFX_USE_GWIN && GWIN_NEED_WINDOWMANAGER */
|
|
|
|
/** @} */
|