home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
magazine
/
drdobbs
/
1991
/
06
/
dflat3
/
normal.c
< prev
next >
Wrap
Text File
|
1991-05-19
|
25KB
|
998 lines
/* ------------- normal.c ------------ */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <conio.h>
#include <dos.h>
#include "dflat.h"
#define ICONHEIGHT 3
#define ICONWIDTH 10
struct LinkedList Focus = {NULLWND, NULLWND};
struct LinkedList Built = {NULLWND, NULLWND};
static WINDOW NextWindow;
#ifdef INCLUDE_MULTIDOCS
static void near PaintOverLappers(WINDOW wnd);
#endif
static void RemoveWindow(WINDOW, int);
static void AddWindow(WINDOW, int);
static int InsideWindow(WINDOW, int, int);
#ifdef INCLUDE_SYSTEM_MENUS
static void TerminateMoveSize(void);
static void SaveBorder(RECT);
static void RestoreBorder(RECT);
static RECT PositionIcon(WINDOW);
static void near dragborder(WINDOW, int, int);
static void near sizeborder(WINDOW, int, int);
static int px = -1, py = -1;
static int diff;
static int conditioning = FALSE;
static struct window dwnd = {DUMMY, NULL, NULL, NormalProc,
{-1,-1,-1,-1}};
int WindowMoving = FALSE;
int WindowSizing = FALSE;
#endif
static int CloseDepth = 0;
int NormalProc(WINDOW wnd, MESSAGE msg, PARAM p1, PARAM p2)
{
int mx = (int) p1 - GetLeft(wnd);
int my = (int) p2 - GetTop(wnd);
switch (msg) {
case CREATE_WINDOW:
AddWindow(wnd, TRUE);
#ifdef INCLUDE_SCROLLBARS
if (!SendMessage(NULLWND, MOUSE_INSTALLED, 0, 0))
ClearAttribute(wnd, VSCROLLBAR | HSCROLLBAR);
#endif
if (TestAttribute(wnd, SAVESELF) && isVisible(wnd))
GetVideoBuffer(wnd);
break;
case SHOW_WINDOW:
if ((GetParent(wnd) == NULLWND ||
isVisible(GetParent(wnd)))
#ifdef INCLUDE_SYSTEM_MENUS
&& !conditioning
#endif
) {
WINDOW cwnd = Focus.FirstWindow;
if (TestAttribute(wnd, SAVESELF) && wnd->videosave == NULL)
GetVideoBuffer(wnd);
SetVisible(wnd);
SendMessage(wnd, PAINT, 0, 0);
SendMessage(wnd, BORDER, 0, 0);
while (cwnd != NULLWND) {
if (GetParent(cwnd) == wnd)
SendMessage(cwnd, msg, p1, p2);
cwnd = NextWindow(cwnd);
}
}
break;
case HIDE_WINDOW:
if (isVisible(wnd)
#ifdef INCLUDE_SYSTEM_MENUS
&& !conditioning
#endif
) {
WINDOW cwnd = Focus.LastWindow;
while (cwnd != NULLWND) {
if (GetParent(cwnd) == wnd)
ClearVisible(cwnd);
cwnd = PrevWindow(cwnd);
}
if (wnd->videosave != NULL)
RestoreVideoBuffer(wnd);
#ifdef INCLUDE_MULTIDOCS
else if (isVisible(GetParent(wnd)))
PaintOverLappers(wnd);
#endif
ClearVisible(wnd);
}
break;
case INSIDE_WINDOW:
return InsideWindow(wnd, (int) p1, (int) p2);
case KEYBOARD:
#ifdef INCLUDE_SYSTEM_MENUS
if (WindowMoving || WindowSizing) {
int x, y;
x = WindowMoving ? GetLeft(&dwnd) : GetRight(&dwnd);
y = WindowMoving ? GetTop(&dwnd) : GetBottom(&dwnd);
switch ((int)p1) {
case ESC:
TerminateMoveSize();
return TRUE;
case UP:
if (y)
--y;
break;
case DN:
if (y < SCREENHEIGHT-1)
y++;
break;
case FWD:
if (x < SCREENWIDTH-1)
x++;
break;
case BS:
if (x)
--x;
break;
case '\r':
SendMessage(wnd, BUTTON_RELEASED, x, y);
default:
return TRUE;
}
SendMessage(wnd, MOUSE_CURSOR, x, y);
SendMessage(wnd, MOUSE_MOVED, x, y);
break;
}
#endif
PostMessage(GetParent(wnd), msg, p1, p2);
break;
case PAINT:
if (isVisible(wnd))
ClearWindow(wnd, (RECT *)p1, ' ');
break;
case BORDER:
if (isVisible(wnd)) {
if (TestAttribute(wnd, HASBORDER))
RepaintBorder(wnd, (RECT *)p1);
else if (TestAttribute(wnd, TITLEBAR))
DisplayTitle(wnd, (RECT *)p1);
}
break;
#ifdef INCLUDE_SYSTEM_MENUS
case COMMAND:
switch ((int)p1) {
case ID_SYSRESTORE:
SendMessage(wnd, RESTORE, 0, 0);
break;
case ID_SYSMOVE:
SendMessage(wnd, CAPTURE_MOUSE, TRUE, LPARAM(&dwnd));
SendMessage(wnd, CAPTURE_KEYBOARD, TRUE, LPARAM(&dwnd));
SendMessage(wnd, MOUSE_CURSOR, GetLeft(wnd), GetTop(wnd));
WindowMoving = TRUE;
dragborder(wnd, GetLeft(wnd), GetTop(wnd));
break;
case ID_SYSSIZE:
SendMessage(wnd, CAPTURE_MOUSE, TRUE, LPARAM(&dwnd));
SendMessage(wnd, CAPTURE_KEYBOARD, TRUE, LPARAM(&dwnd));
SendMessage(wnd, MOUSE_CURSOR, GetRight(wnd), GetBottom(wnd));
WindowSizing = TRUE;
dragborder(wnd, GetLeft(wnd), GetTop(wnd));
break;
case ID_SYSMINIMIZE:
SendMessage(wnd, MINIMIZE, 0, 0);
break;
case ID_SYSMAXIMIZE:
SendMessage(wnd, MAXIMIZE, 0, 0);
break;
case ID_SYSCLOSE:
SendMessage(wnd, CLOSE_WINDOW, 0, 0);
break;
default:
break;
}
break;
#endif
case SETFOCUS:
if (p1 && inFocus != wnd) {
SendMessage(inFocus, SETFOCUS, FALSE, 0);
/* remove from list */
RemoveWindow(wnd, FALSE);
/* move window to end of list */
AddWindow(wnd, FALSE);
inFocus = wnd;
SendMessage(wnd, SHOW_WINDOW, 0, 0);
}
else if (!p1 && inFocus == wnd) {
inFocus = NULL;
SendMessage(wnd, BORDER, 0, 0);
}
break;
case DOUBLE_CLICK:
if (!SendMessage(wnd, INSIDE_WINDOW, p1, p2) &&
CaptureMouse == NULLWND) {
PostMessage(GetParent(wnd), msg, p1, p2);
break;
}
#ifdef INCLUDE_SYSTEM_MENUS
if (!WindowSizing && !WindowMoving)
#endif
if (HitControlBox(wnd, mx, my))
PostMessage(wnd, CLOSE_WINDOW, 0, 0);
break;
case LEFT_BUTTON:
#ifdef INCLUDE_SYSTEM_MENUS
if (WindowSizing || WindowMoving)
return FALSE;
#endif
if ((!SendMessage(wnd, INSIDE_WINDOW, p1, p2) &&
CaptureMouse == NULLWND) ||
HitControlBox(wnd, mx, my)) {
PostMessage(GetParent(wnd), msg, p1, p2);
break;
}
#ifdef INCLUDE_SYSTEM_MENUS
if (my == 0 && TestAttribute(wnd, TITLEBAR)) {
/* ---------- hit the title bar -------- */
if (TestAttribute(wnd, MINMAXBOX)) {
if (mx == WindowWidth(wnd)-2) {
if (wnd->condition == ISRESTORED)
/* --- hit the maximize box --- */
SendMessage(wnd, MAXIMIZE, 0, 0);
else
/* --- hit the restore box --- */
SendMessage(wnd, RESTORE, 0, 0);
break;
}
if (mx == WindowWidth(wnd)-3) {
/* --- hit the minimize box --- */
if (wnd->condition != ISMINIMIZED)
SendMessage(wnd, MINIMIZE, 0, 0);
break;
}
}
if (wnd->condition != ISMAXIMIZED &&
TestAttribute(wnd, MOVEABLE)) {
WindowMoving = TRUE;
px = mx;
py = my;
diff = (int) mx;
SendMessage(wnd, CAPTURE_MOUSE, TRUE, LPARAM(&dwnd));
dragborder(wnd, GetLeft(wnd), GetTop(wnd));
}
break;
}
if (mx == WindowWidth(wnd)-1 &&
my == WindowHeight(wnd)-1) {
/* ------- hit the resize corner ------- */
if (wnd->condition == ISMINIMIZED ||
!TestAttribute(wnd, SIZEABLE))
break;
if (wnd->condition == ISMAXIMIZED) {
if (TestAttribute(GetParent(wnd), HASBORDER))
break;
/* ----- resizing a maximized window over a
borderless parent ----- */
wnd = GetParent(wnd);
}
WindowSizing = TRUE;
SendMessage(wnd, CAPTURE_MOUSE, TRUE, LPARAM(&dwnd));
dragborder(wnd, GetLeft(wnd), GetTop(wnd));
}
#endif
break;
#ifdef INCLUDE_SYSTEM_MENUS
case MOUSE_MOVED:
if (WindowMoving) {
int leftmost = 0, topmost = 0,
bottommost = SCREENHEIGHT-2,
rightmost = SCREENWIDTH-2;
int x = (int) p1 - diff;
int y = (int) p2;
if (GetParent(wnd) != NULLWND) {
WINDOW wnd1 = GetParent(wnd);
topmost = GetClientTop(wnd1);
leftmost = GetClientLeft(wnd1);
bottommost = GetClientBottom(wnd1);
rightmost = GetClientRight(wnd1)-1;
}
if (x < leftmost || x > rightmost ||
y < topmost || y > bottommost) {
x = max(x, leftmost);
x = min(x, rightmost);
y = max(y, topmost);
y = min(y, bottommost);
SendMessage(NULLWND, MOUSE_CURSOR, x+diff, y);
}
if (x != px || y != py) {
px = x;
py = y;
dragborder(wnd, x, y);
}
return TRUE;
}
if (WindowSizing) {
sizeborder(wnd, (int) p1, (int) p2);
return TRUE;
}
break;
case BUTTON_RELEASED:
if (WindowMoving || WindowSizing) {
if (WindowMoving)
PostMessage(wnd, MOVE, dwnd.rc.lf, dwnd.rc.tp);
else
PostMessage(wnd, SIZE, dwnd.rc.rt, dwnd.rc.bt);
TerminateMoveSize();
}
break;
case MAXIMIZE:
if (wnd->condition != ISMAXIMIZED) {
RECT rc = {0, 0, 0, 0};
RECT holdrc;
holdrc = wnd->RestoredRC;
rc.rt = SCREENWIDTH-1;
rc.bt = SCREENHEIGHT-1;
if (GetParent(wnd))
rc = ClientRect(GetParent(wnd));
wnd->condition = ISMAXIMIZED;
SendMessage(wnd, HIDE_WINDOW, 0, 0);
conditioning = TRUE;
SendMessage(wnd, MOVE, RectLeft(rc), RectTop(rc));
SendMessage(wnd, SIZE, RectRight(rc), RectBottom(rc));
conditioning = FALSE;
if (wnd->restored_attrib == 0)
wnd->restored_attrib = wnd->attrib;
#ifdef INCLUDE_SHADOWS
ClearAttribute(wnd, SHADOW);
#endif
SendMessage(wnd, SHOW_WINDOW, 0, 0);
wnd->RestoredRC = holdrc;
}
break;
case MINIMIZE:
if (wnd->condition != ISMINIMIZED) {
RECT rc;
RECT holdrc;
holdrc = wnd->RestoredRC;
rc = PositionIcon(wnd);
wnd->condition = ISMINIMIZED;
SendMessage(wnd, HIDE_WINDOW, 0, 0);
conditioning = TRUE;
SendMessage(wnd, MOVE, RectLeft(rc), RectTop(rc));
SendMessage(wnd, SIZE, RectRight(rc), RectBottom(rc));
SetPrevFocus(wnd, FALSE);
conditioning = FALSE;
if (wnd->restored_attrib == 0)
wnd->restored_attrib = wnd->attrib;
ClearAttribute(wnd,
SHADOW | SIZEABLE | HASMENUBAR |
VSCROLLBAR | HSCROLLBAR);
SendMessage(wnd, SHOW_WINDOW, 0, 0);
wnd->RestoredRC = holdrc;
}
break;
case RESTORE:
if (wnd->condition != ISRESTORED) {
RECT holdrc;
holdrc = wnd->RestoredRC;
wnd->condition = ISRESTORED;
SendMessage(wnd, HIDE_WINDOW, 0, 0);
wnd->attrib = wnd->restored_attrib;
wnd->restored_attrib = 0;
conditioning = TRUE;
SendMessage(wnd, MOVE, wnd->RestoredRC.lf,
wnd->RestoredRC.tp);
wnd->RestoredRC = holdrc;
SendMessage(wnd, SIZE, wnd->RestoredRC.rt,
wnd->RestoredRC.bt);
SendMessage(wnd, SETFOCUS, TRUE, 0);
conditioning = FALSE;
SendMessage(wnd, SHOW_WINDOW, 0, 0);
}
break;
case MOVE: {
WINDOW wnd1 = Focus.FirstWindow;
int wasVisible = isVisible(wnd);
int xdif = (int) p1 - wnd->rc.lf;
int ydif = (int) p2 - wnd->rc.tp;
if (xdif == 0 && ydif == 0)
return FALSE;
if (wasVisible)
SendMessage(wnd, HIDE_WINDOW, 0, 0);
wnd->rc.lf = (int) p1;
wnd->rc.tp = (int) p2;
wnd->rc.rt = GetLeft(wnd)+WindowWidth(wnd)-1;
wnd->rc.bt = GetTop(wnd)+WindowHeight(wnd)-1;
if (wnd->condition == ISRESTORED)
wnd->RestoredRC = wnd->rc;
while (wnd1 != NULLWND) {
if (GetParent(wnd1) == wnd)
SendMessage(wnd1, MOVE,
wnd1->rc.lf+xdif, wnd1->rc.tp+ydif);
wnd1 = NextWindow(wnd1);
}
if (wasVisible)
SendMessage(wnd, SHOW_WINDOW, 0, 0);
break;
}
case SIZE: {
int wasVisible = isVisible(wnd);
WINDOW wnd1 = Focus.FirstWindow;
RECT rc;
int xdif = (int) p1 - wnd->rc.rt;
int ydif = (int) p2 - wnd->rc.bt;
if (xdif == 0 && ydif == 0)
return FALSE;
if (wasVisible)
SendMessage(wnd, HIDE_WINDOW, 0, 0);
wnd->rc.rt = (int) p1;
wnd->rc.bt = (int) p2;
wnd->ht = GetBottom(wnd)-GetTop(wnd)+1;
wnd->wd = GetRight(wnd)-GetLeft(wnd)+1;
if (wnd->condition == ISRESTORED)
wnd->RestoredRC = WindowRect(wnd);
rc = ClientRect(wnd);
while (wnd1 != NULLWND) {
if (GetParent(wnd1) == wnd &&
wnd1->condition == ISMAXIMIZED)
SendMessage(wnd1, SIZE, RectRight(rc),
RectBottom(rc));
wnd1 = NextWindow(wnd1);
}
if (wasVisible)
SendMessage(wnd, SHOW_WINDOW, 0, 0);
break;
}
#endif
case CLOSE_WINDOW:
if (isWindow(wnd)) {
int DoneClosing = FALSE;
/* ----------- hide this window ------------ */
SendMessage(wnd, HIDE_WINDOW, 0, 0);
/* ------- close the children of this window ------- */
CloseDepth++;
while (!DoneClosing) {
WINDOW wnd1 = Focus.LastWindow;
DoneClosing = TRUE;
while (wnd1 != NULLWND) {
WINDOW prwnd = PrevWindow(wnd1);
if (GetParent(wnd1) == wnd) {
SendMessage(wnd1, CLOSE_WINDOW, 0, 0);
DoneClosing = FALSE;
break;
}
wnd1 = prwnd;
}
}
--CloseDepth;
/* ------- remove this window from the
list of open windows ------------- */
RemoveWindow(wnd, TRUE);
/* --- change focus if this window had it --- */
if (CloseDepth == 0)
SetPrevFocus(wnd, TRUE);
else if (wnd == inFocus)
inFocus = NULL;
/* ----- free memory allocated to this window ----- */
if (wnd->title != NULL)
free(wnd->title);
if (wnd->videosave != NULL)
free(wnd->videosave);
free(wnd);
}
break;
default:
break;
}
return TRUE;
}
#ifdef INCLUDE_SYSTEM_MENUS
static RECT LowerLeft(RECT prc)
{
RECT rc;
RectLeft(rc) = RectRight(prc) - ICONWIDTH;
RectTop(rc) = RectBottom(prc) - ICONHEIGHT;
RectRight(rc) = RectLeft(rc)+ICONWIDTH-1;
RectBottom(rc) = RectTop(rc)+ICONHEIGHT-1;
return rc;
}
static RECT PositionIcon(WINDOW wnd)
{
RECT rc;
RectLeft(rc) = SCREENWIDTH-ICONWIDTH;
RectTop(rc) = SCREENHEIGHT-ICONHEIGHT;
RectRight(rc) = SCREENWIDTH-1;
RectBottom(rc) = SCREENHEIGHT-1;
if (GetParent(wnd)) {
WINDOW wnd1 = (WINDOW) -1;
RECT prc;
prc = WindowRect(GetParent(wnd));
rc = LowerLeft(prc);
/* - search for icon available location - */
while (wnd1 != NULLWND) {
wnd1 = GetFirstChild(GetParent(wnd));
while (wnd1 != NULLWND) {
if (wnd1->condition == ISMINIMIZED) {
RECT rc1;
rc1 = WindowRect(wnd1);
if (RectLeft(rc1) == RectLeft(rc) &&
RectTop(rc1) == RectTop(rc)) {
RectLeft(rc) -= ICONWIDTH;
RectRight(rc) -= ICONWIDTH;
if (RectLeft(rc) < RectLeft(prc)+1) {
RectLeft(rc) = RectRight(prc)-ICONWIDTH;
RectRight(rc) = RectLeft(rc)+ICONWIDTH-1;
RectTop(rc) -= ICONHEIGHT;
RectBottom(rc) -= ICONHEIGHT;
if (RectTop(rc) < RectTop(prc)+1)
return LowerLeft(prc);
}
break;
}
}
wnd1 = GetNextChild(GetParent(wnd));
}
}
}
return rc;
}
static void TerminateMoveSize(void)
{
px = py = -1;
diff = 0;
SendMessage(&dwnd, RELEASE_MOUSE, 0, 0);
SendMessage(&dwnd, RELEASE_KEYBOARD, 0, 0);
RestoreBorder(dwnd.rc);
WindowMoving = WindowSizing = FALSE;
}
static void near dragborder(WINDOW wnd, int x, int y)
{
RestoreBorder(dwnd.rc);
/* ------- build the dummy window -------- */
dwnd.rc.lf = x;
dwnd.rc.tp = y;
dwnd.rc.rt = dwnd.rc.lf+WindowWidth(wnd)-1;
dwnd.rc.bt = dwnd.rc.tp+WindowHeight(wnd)-1;
dwnd.ht = WindowHeight(wnd);
dwnd.wd = WindowWidth(wnd);
dwnd.parent = GetParent(wnd);
dwnd.attrib = VISIBLE | HASBORDER | NOCLIP;
SaveBorder(dwnd.rc);
DisplayBorder(&dwnd);
}
static void near sizeborder(WINDOW wnd, int rt, int bt)
{
int leftmost = GetLeft(wnd)+10;
int topmost = GetTop(wnd)+3;
int bottommost = SCREENHEIGHT-1;
int rightmost = SCREENWIDTH-1;
if (GetParent(wnd)) {
bottommost = min(bottommost,
GetClientBottom(GetParent(wnd)));
rightmost = min(rightmost,
GetClientRight(GetParent(wnd)));
}
rt = min(rt, rightmost);
bt = min(bt, bottommost);
rt = max(rt, leftmost);
bt = max(bt, topmost);
SendMessage(NULLWND, MOUSE_CURSOR, rt, bt);
if (rt != px || bt != py)
RestoreBorder(dwnd.rc);
/* ------- change the dummy window -------- */
dwnd.ht = bt-dwnd.rc.tp+1;
dwnd.wd = rt-dwnd.rc.lf+1;
dwnd.rc.rt = rt;
dwnd.rc.bt = bt;
if (rt != px || bt != py) {
px = rt;
py = bt;
SaveBorder(dwnd.rc);
DisplayBorder(&dwnd);
}
}
#endif
void SetPrevFocus(WINDOW wnd, int PassParam)
{
if (PrevWindow(Focus.LastWindow) == NULLWND)
SetNextFocus(wnd, PassParam);
else if (wnd == inFocus) {
int loopctr = 0;
WINDOW wnd1 = wnd;
while (wnd1 != NULLWND) {
if (PrevWindow(wnd1) == NULLWND) {
wnd1 = Focus.LastWindow;
if (loopctr++) {
SetNextFocus(wnd, PassParam);
break;
}
}
else
wnd1 = PrevWindow(wnd1);
if (wnd1 == wnd)
continue;
if (GetParent(wnd) && GetParent(wnd1) != GetParent(wnd))
continue;
if (SendMessage(wnd1, SETFOCUS, TRUE, PassParam))
break;
}
}
}
void SetNextFocus(WINDOW wnd, int PassParam)
{
if (NextWindow(Focus.FirstWindow) == NULLWND)
inFocus = NULLWND;
else if (wnd == inFocus) {
int loopctr = 0;
WINDOW wnd1 = wnd;
while (wnd1 != NULLWND) {
if (NextWindow(wnd1) == NULLWND) {
wnd1 = Focus.FirstWindow;
if (loopctr++) {
if (PassParam)
inFocus = NULLWND;
break;
}
}
else
wnd1 = NextWindow(wnd1);
if (wnd1 == wnd)
continue;
if (GetParent(wnd) && GetParent(wnd1) != GetParent(wnd))
continue;
if (SendMessage(wnd1, SETFOCUS, TRUE, PassParam))
break;
}
}
}
#ifdef INCLUDE_MULTIDOCS
static void near PaintOverLap(WINDOW wnd, RECT rc)
{
int isBorder, isTitle, isData;
isBorder = isTitle = FALSE;
isData = TRUE;
if (TestAttribute(wnd, HASBORDER)) {
isBorder = RectLeft(rc) == 0 &&
RectTop(rc) < WindowHeight(wnd);
isBorder |= RectLeft(rc) < WindowWidth(wnd) &&
RectRight(rc) >= WindowWidth(wnd)-1 &&
RectTop(rc) < WindowHeight(wnd);
isBorder |= RectTop(rc) == 0 &&
RectLeft(rc) < WindowWidth(wnd);
isBorder |= RectTop(rc) < WindowHeight(wnd) &&
RectBottom(rc) >= WindowHeight(wnd)-1 &&
RectLeft(rc) < WindowWidth(wnd);
}
else if (TestAttribute(wnd, TITLEBAR))
isTitle = RectTop(rc) == 0 &&
RectLeft(rc) > 0 &&
RectLeft(rc) < WindowWidth(wnd)-BorderAdj(wnd);
if (RectLeft(rc) >= WindowWidth(wnd)-1)
isData = FALSE;
if (RectRight(rc) == 0)
isData = FALSE;
if (RectTop(rc) >= WindowHeight(wnd)-1)
isData = FALSE;
if (RectBottom(rc) == 0)
isData = FALSE;
#ifdef INCLUDE_SHADOWS
if (TestAttribute(wnd, SHADOW))
isBorder |= RectRight(rc) == WindowWidth(wnd) ||
RectBottom(rc) == WindowHeight(wnd);
#endif
if (isData)
SendMessage(wnd, PAINT, LPARAM(&rc), 0);
if (isBorder)
SendMessage(wnd, BORDER, LPARAM(&rc), 0);
else if (isTitle)
DisplayTitle(wnd, &rc);
}
#ifdef INCLUDE_SHADOWS
static RECT adjShadow(WINDOW wnd)
{
RECT rc;
rc = wnd->rc;
if (TestAttribute(wnd, SHADOW)) {
if (RectRight(rc) < SCREENWIDTH-1)
RectRight(rc)++;
if (RectBottom(rc) < SCREENHEIGHT-1)
RectBottom(rc)++;
}
return rc;
}
#endif
static void near PaintOverLappers(WINDOW wnd)
{
if (isVisible(wnd)) {
WINDOW lownd = Focus.FirstWindow;
RECT wrc;
#ifdef INCLUDE_SHADOWS
wrc = adjShadow(wnd);
#else
wrc = wnd->rc;
#endif
while (lownd != NULL) {
if (lownd != wnd && isVisible(lownd)) {
RECT rc;
#ifdef INCLUDE_SHADOWS
rc = adjShadow(lownd);
#else
rc = lownd->rc;
#endif
rc = subRectangle(rc, wrc);
if (ValidRect(rc))
if (GetParent(lownd) != wnd)
PaintOverLap(lownd,
RelativeWindowRect(lownd, rc));
}
lownd = NextWindow(lownd);
}
}
}
#endif
#ifdef INCLUDE_SYSTEM_MENUS
static int *Bsave = NULL;
static int Bht, Bwd;
static void SaveBorder(RECT rc)
{
Bht = RectBottom(rc) - RectTop(rc) + 1;
Bwd = RectRight(rc) - RectLeft(rc) + 1;
if ((Bsave = realloc(Bsave, (Bht + Bwd) * 4)) != NULL) {
RECT lrc;
int i;
int *cp;
lrc = rc;
RectBottom(lrc) = RectTop(lrc);
getvideo(lrc, Bsave);
RectTop(lrc) = RectBottom(lrc) = RectBottom(rc);
getvideo(lrc, Bsave + Bwd);
cp = Bsave + Bwd * 2;
for (i = 1; i < Bht-1; i++) {
*cp++ = GetVideoChar(RectLeft(rc),RectTop(rc)+i);
*cp++ = GetVideoChar(RectRight(rc),RectTop(rc)+i);
}
}
}
static void RestoreBorder(RECT rc)
{
if (Bsave != NULL) {
RECT lrc;
int i;
int *cp;
lrc = rc;
RectBottom(lrc) = RectTop(lrc);
storevideo(lrc, Bsave);
RectTop(lrc) = RectBottom(lrc) = RectBottom(rc);
storevideo(lrc, Bsave + Bwd);
cp = Bsave + Bwd * 2;
for (i = 1; i < Bht-1; i++) {
PutVideoChar(RectLeft(rc),RectTop(rc)+i, *cp++);
PutVideoChar(RectRight(rc),RectTop(rc)+i, *cp++);
}
free(Bsave);
Bsave = NULL;
}
}
#endif
static void RemoveWindow(WINDOW wnd, int Both)
{
if (PrevWindow(wnd) != NULLWND)
NextWindow(PrevWindow(wnd)) = NextWindow(wnd);
if (NextWindow(wnd) != NULLWND)
PrevWindow(NextWindow(wnd)) = PrevWindow(wnd);
if (wnd == Focus.FirstWindow)
Focus.FirstWindow = NextWindow(wnd);
if (wnd == Focus.LastWindow)
Focus.LastWindow = PrevWindow(wnd);
if (Both) {
if (PrevWindowBuilt(wnd) != NULLWND)
NextWindowBuilt(PrevWindowBuilt(wnd)) = NextWindowBuilt(wnd);
if (NextWindowBuilt(wnd) != NULLWND)
PrevWindowBuilt(NextWindowBuilt(wnd)) = PrevWindowBuilt(wnd);
if (wnd == Built.FirstWindow)
Built.FirstWindow = NextWindowBuilt(wnd);
if (wnd == Built.LastWindow)
Built.LastWindow = PrevWindowBuilt(wnd);
}
}
static void AddWindow(WINDOW wnd, int Both)
{
if (Focus.FirstWindow == NULLWND)
Focus.FirstWindow = wnd;
if (Focus.LastWindow != NULLWND)
NextWindow(Focus.LastWindow) = wnd;
PrevWindow(wnd) = Focus.LastWindow;
NextWindow(wnd) = NULLWND;
Focus.LastWindow = wnd;
if (Both) {
if (Built.FirstWindow == NULLWND)
Built.FirstWindow = wnd;
if (Built.LastWindow != NULLWND)
NextWindowBuilt(Built.LastWindow) = wnd;
PrevWindowBuilt(wnd) = Built.LastWindow;
NextWindowBuilt(wnd) = NULLWND;
Built.LastWindow = wnd;
}
}
WINDOW GetFirstChild(WINDOW wnd)
{
NextWindow = Built.FirstWindow;
while (NextWindow != NULLWND) {
if (GetParent(NextWindow) == wnd)
break;
NextWindow = NextWindowBuilt(NextWindow);
}
return NextWindow;
}
WINDOW GetNextChild(WINDOW wnd)
{
do {
NextWindow = NextWindowBuilt(NextWindow);
if (GetParent(NextWindow) == wnd)
break;
} while (NextWindow != NULLWND);
return NextWindow;
}
WINDOW GetLastChild(WINDOW wnd)
{
NextWindow = Built.LastWindow;
while (NextWindow != NULLWND) {
if (GetParent(NextWindow) == wnd)
break;
NextWindow = PrevWindowBuilt(NextWindow);
}
return NextWindow;
}
WINDOW GetPrevChild(WINDOW wnd)
{
do {
NextWindow = PrevWindowBuilt(NextWindow);
if (GetParent(NextWindow) == wnd)
break;
} while (NextWindow != NULLWND);
return NextWindow;
}
static int InsideWindow(WINDOW wnd, int x, int y)
{
RECT rc;
rc = WindowRect(wnd);
if (!TestAttribute(wnd, NOCLIP)) {
WINDOW pwnd = GetParent(wnd);
while (pwnd != NULL) {
rc = subRectangle(rc, ClientRect(pwnd));
pwnd = GetParent(pwnd);
}
}
return InsideRect(x, y, rc);
}
WINDOW inWindow(int x, int y)
{
WINDOW wnd = Focus.LastWindow;
while (wnd != NULLWND) {
if (SendMessage(wnd, INSIDE_WINDOW, x, y))
break;
wnd = PrevWindow(wnd);
}
return wnd;
}
int isWindow(WINDOW wnd)
{
WINDOW ws = Focus.FirstWindow;
while (ws != NULLWND) {
if (ws == wnd)
break;
ws = NextWindow(ws);
}
return ws != NULLWND;
}
int WndForeground(WINDOW wnd)
{
CLASS class = FindClass(GetClass(wnd));
if (classdefs[class].fg == NULL)
class = FindClass(GetClass(GetParent(wnd)));
return *classdefs[class].fg;
}
int WndBackground(WINDOW wnd)
{
CLASS class = FindClass(GetClass(wnd));
if (classdefs[class].bg == NULL)
class = FindClass(GetClass(GetParent(wnd)));
return *classdefs[class].bg;
}
int FrameForeground(WINDOW wnd)
{
CLASS class = FindClass(GetClass(wnd));
if (classdefs[class].fbg != NULL)
return *classdefs[class].ffg;
else
return WndForeground(wnd);
}
int FrameBackground(WINDOW wnd)
{
CLASS class = FindClass(GetClass(wnd));
if (classdefs[class].fbg != NULL)
return *classdefs[class].fbg;
else
return WndBackground(wnd);
}
int SelectForeground(WINDOW wnd)
{
CLASS class = FindClass(GetClass(wnd));
return *classdefs[class].sfg;
}
int SelectBackground(WINDOW wnd)
{
int class = FindClass(GetClass(wnd));
return *classdefs[class].sbg;
}
void SetStandardColor(WINDOW wnd)
{
foreground = WndForeground(wnd);
background = WndBackground(wnd);
}
void SetReverseColor(WINDOW wnd)
{
foreground = SelectForeground(wnd);
background = SelectBackground(wnd);
}
void SetClassColors(CLASS class)
{
foreground = *classdefs[class].fg;
background = *classdefs[class].bg;
}
#ifdef POWERC
long LPARAM(void *p)
{
long pp = FP_SEG(p);
pp <<= 16 ;
pp |= FP_OFF(p);
return pp;
}
#endif