mirror of
https://github.com/gryf/wmaker.git
synced 2026-01-07 06:14:13 +01:00
Initial revision
This commit is contained in:
894
WINGs/widgets.c
Normal file
894
WINGs/widgets.c
Normal file
@@ -0,0 +1,894 @@
|
||||
|
||||
|
||||
#include "WINGsP.h"
|
||||
|
||||
#include <X11/Xutil.h>
|
||||
|
||||
#include <X11/cursorfont.h>
|
||||
|
||||
/********** data ************/
|
||||
|
||||
|
||||
#define CHECK_BUTTON_ON_WIDTH 16
|
||||
#define CHECK_BUTTON_ON_HEIGHT 16
|
||||
|
||||
static char *CHECK_BUTTON_ON[] = {
|
||||
" %",
|
||||
" .............%#",
|
||||
" ........... .%#",
|
||||
" .......... #.%#",
|
||||
" ......... #%.%#",
|
||||
" ........ #%..%#",
|
||||
" ... #.. #%...%#",
|
||||
" ... #% #%....%#",
|
||||
" ... % #%.....%#",
|
||||
" ... #%......%#",
|
||||
" ... #%.......%#",
|
||||
" ...#%........%#",
|
||||
" .............%#",
|
||||
" .............%#",
|
||||
" %%%%%%%%%%%%%%#",
|
||||
"%###############"};
|
||||
|
||||
#define CHECK_BUTTON_OFF_WIDTH 16
|
||||
#define CHECK_BUTTON_OFF_HEIGHT 16
|
||||
|
||||
static char *CHECK_BUTTON_OFF[] = {
|
||||
" %",
|
||||
" .............%#",
|
||||
" .............%#",
|
||||
" .............%#",
|
||||
" .............%#",
|
||||
" .............%#",
|
||||
" .............%#",
|
||||
" .............%#",
|
||||
" .............%#",
|
||||
" .............%#",
|
||||
" .............%#",
|
||||
" .............%#",
|
||||
" .............%#",
|
||||
" .............%#",
|
||||
" %%%%%%%%%%%%%%#",
|
||||
"%###############"};
|
||||
|
||||
#define RADIO_BUTTON_ON_WIDTH 15
|
||||
#define RADIO_BUTTON_ON_HEIGHT 15
|
||||
static char *RADIO_BUTTON_ON[] = {
|
||||
".....%%%%%.....",
|
||||
"...%%#####%%...",
|
||||
"..%##.....%.%..",
|
||||
".%#%.. .....",
|
||||
".%#. ...",
|
||||
"%#.. .. ",
|
||||
"%#. . ",
|
||||
"%#. . ",
|
||||
"%#. . ",
|
||||
"%#. . ",
|
||||
".%%. . .",
|
||||
".%.. . .",
|
||||
"..%... .. ..",
|
||||
".... ..... ...",
|
||||
"..... .....",
|
||||
};
|
||||
|
||||
#define RADIO_BUTTON_OFF_WIDTH 15
|
||||
#define RADIO_BUTTON_OFF_HEIGHT 15
|
||||
static char *RADIO_BUTTON_OFF[] = {
|
||||
".....%%%%%.....",
|
||||
"...%%#####%%...",
|
||||
"..%##.......%..",
|
||||
".%#%...........",
|
||||
".%#............",
|
||||
"%#............ ",
|
||||
"%#............ ",
|
||||
"%#............ ",
|
||||
"%#............ ",
|
||||
"%#............ ",
|
||||
".%%.......... .",
|
||||
".%........... .",
|
||||
"..%......... ..",
|
||||
".... ..... ...",
|
||||
"..... .....",
|
||||
};
|
||||
|
||||
|
||||
static char *BUTTON_ARROW[] = {
|
||||
"..................",
|
||||
"....##....#### ...",
|
||||
"...#.%....#... ...",
|
||||
"..#..%#####... ...",
|
||||
".#............ ...",
|
||||
"#............. ...",
|
||||
".#............ ...",
|
||||
"..#.. ...",
|
||||
"...#. ............",
|
||||
"....# ............"
|
||||
};
|
||||
|
||||
#define BUTTON_ARROW_WIDTH 18
|
||||
#define BUTTON_ARROW_HEIGHT 10
|
||||
|
||||
|
||||
static char *BUTTON_ARROW2[] = {
|
||||
" ",
|
||||
" ## ####. ",
|
||||
" # % # . ",
|
||||
" # %##### . ",
|
||||
" # . ",
|
||||
"# . ",
|
||||
" # . ",
|
||||
" # .......... ",
|
||||
" # . ",
|
||||
" #. "
|
||||
};
|
||||
|
||||
#define BUTTON_ARROW2_WIDTH 18
|
||||
#define BUTTON_ARROW2_HEIGHT 10
|
||||
|
||||
|
||||
static char *SCROLLER_DIMPLE[] = {
|
||||
".%###.",
|
||||
"%#%%%%",
|
||||
"#%%...",
|
||||
"#%.. ",
|
||||
"#%. ",
|
||||
".%. ."
|
||||
};
|
||||
|
||||
#define SCROLLER_DIMPLE_WIDTH 6
|
||||
#define SCROLLER_DIMPLE_HEIGHT 6
|
||||
|
||||
|
||||
static char *SCROLLER_ARROW_UP[] = {
|
||||
"....%....",
|
||||
"....#....",
|
||||
"...%#%...",
|
||||
"...###...",
|
||||
"..%###%..",
|
||||
"..#####..",
|
||||
".%#####%.",
|
||||
".#######.",
|
||||
"%#######%"
|
||||
};
|
||||
|
||||
static char *HI_SCROLLER_ARROW_UP[] = {
|
||||
" % ",
|
||||
" % ",
|
||||
" %%% ",
|
||||
" %%% ",
|
||||
" %%%%% ",
|
||||
" %%%%% ",
|
||||
" %%%%%%% ",
|
||||
" %%%%%%% ",
|
||||
"%%%%%%%%%"
|
||||
};
|
||||
|
||||
#define SCROLLER_ARROW_UP_WIDTH 9
|
||||
#define SCROLLER_ARROW_UP_HEIGHT 9
|
||||
|
||||
|
||||
static char *SCROLLER_ARROW_DOWN[] = {
|
||||
"%#######%",
|
||||
".#######.",
|
||||
".%#####%.",
|
||||
"..#####..",
|
||||
"..%###%..",
|
||||
"...###...",
|
||||
"...%#%...",
|
||||
"....#....",
|
||||
"....%...."
|
||||
};
|
||||
|
||||
static char *HI_SCROLLER_ARROW_DOWN[] = {
|
||||
"%%%%%%%%%",
|
||||
" %%%%%%% ",
|
||||
" %%%%%%% ",
|
||||
" %%%%% ",
|
||||
" %%%%% ",
|
||||
" %%% ",
|
||||
" %%% ",
|
||||
" % ",
|
||||
" % "
|
||||
};
|
||||
|
||||
#define SCROLLER_ARROW_DOWN_WIDTH 9
|
||||
#define SCROLLER_ARROW_DOWN_HEIGHT 9
|
||||
|
||||
|
||||
|
||||
static char *SCROLLER_ARROW_LEFT[] = {
|
||||
"........%",
|
||||
"......%##",
|
||||
"....%####",
|
||||
"..%######",
|
||||
"%########",
|
||||
"..%######",
|
||||
"....%####",
|
||||
"......%##",
|
||||
"........%"
|
||||
};
|
||||
|
||||
static char *HI_SCROLLER_ARROW_LEFT[] = {
|
||||
" %",
|
||||
" %%%",
|
||||
" %%%%%",
|
||||
" %%%%%%%",
|
||||
"%%%%%%%%%",
|
||||
" %%%%%%%",
|
||||
" %%%%%",
|
||||
" %%%",
|
||||
" %"
|
||||
};
|
||||
|
||||
#define SCROLLER_ARROW_LEFT_WIDTH 9
|
||||
#define SCROLLER_ARROW_LEFT_HEIGHT 9
|
||||
|
||||
|
||||
static char *SCROLLER_ARROW_RIGHT[] = {
|
||||
"%........",
|
||||
"##%......",
|
||||
"####%....",
|
||||
"######%..",
|
||||
"########%",
|
||||
"######%..",
|
||||
"####%....",
|
||||
"##%......",
|
||||
"%........"
|
||||
};
|
||||
|
||||
static char *HI_SCROLLER_ARROW_RIGHT[] = {
|
||||
"% ",
|
||||
"%%% ",
|
||||
"%%%%% ",
|
||||
"%%%%%%% ",
|
||||
"%%%%%%%%%",
|
||||
"%%%%%%% ",
|
||||
"%%%%% ",
|
||||
"%%% ",
|
||||
"% "
|
||||
};
|
||||
|
||||
#define SCROLLER_ARROW_RIGHT_WIDTH 9
|
||||
#define SCROLLER_ARROW_RIGHT_HEIGHT 9
|
||||
|
||||
|
||||
static char *POPUP_INDICATOR[] = {
|
||||
" #==",
|
||||
" ......%#==",
|
||||
" ......%#%%",
|
||||
" ......%#%%",
|
||||
" %%%%%%%#%%",
|
||||
"#########%%",
|
||||
"==%%%%%%%%%",
|
||||
"==%%%%%%%%%"
|
||||
};
|
||||
|
||||
#define POPUP_INDICATOR_WIDTH 11
|
||||
#define POPUP_INDICATOR_HEIGHT 8
|
||||
|
||||
|
||||
|
||||
static char *PULLDOWN_INDICATOR[] = {
|
||||
"=#######=",
|
||||
"=%===== =",
|
||||
"==%=== ==",
|
||||
"==%=== ==",
|
||||
"===%= ===",
|
||||
"===%= ===",
|
||||
"====%===="
|
||||
};
|
||||
#define PULLDOWN_INDICATOR_WIDTH 9
|
||||
#define PULLDOWN_INDICATOR_HEIGHT 7
|
||||
|
||||
|
||||
#define STIPPLE_WIDTH 8
|
||||
#define STIPPLE_HEIGHT 8
|
||||
static unsigned char STIPPLE_BITS[] = {
|
||||
0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa};
|
||||
|
||||
|
||||
|
||||
extern W_ViewProcedureTable _WindowViewProcedures;
|
||||
extern W_ViewProcedureTable _FrameViewProcedures;
|
||||
extern W_ViewProcedureTable _LabelViewProcedures;
|
||||
extern W_ViewProcedureTable _ButtonViewProcedures;
|
||||
extern W_ViewProcedureTable _TextFieldViewProcedures;
|
||||
extern W_ViewProcedureTable _ScrollerViewProcedures;
|
||||
extern W_ViewProcedureTable _ScrollViewProcedures;
|
||||
extern W_ViewProcedureTable _ListViewProcedures;
|
||||
extern W_ViewProcedureTable _BrowserViewProcedures;
|
||||
extern W_ViewProcedureTable _PopUpButtonViewProcedures;
|
||||
extern W_ViewProcedureTable _ColorWellViewProcedures;
|
||||
extern W_ViewProcedureTable _ScrollViewViewProcedures;
|
||||
extern W_ViewProcedureTable _SliderViewProcedures;
|
||||
extern W_ViewProcedureTable _SplitViewViewProcedures;
|
||||
|
||||
/*
|
||||
* All widget classes defined must have an entry here.
|
||||
*/
|
||||
static W_ViewProcedureTable *procedureTables[16];
|
||||
|
||||
static W_ViewProcedureTable **userProcedureTable = NULL;
|
||||
static int userWidgetCount=0;
|
||||
|
||||
|
||||
/***** end data ******/
|
||||
|
||||
|
||||
|
||||
static void
|
||||
initProcedureTable()
|
||||
{
|
||||
procedureTables[WC_Window] = &_WindowViewProcedures;
|
||||
procedureTables[WC_Frame] = &_FrameViewProcedures;
|
||||
procedureTables[WC_Label] = &_LabelViewProcedures;
|
||||
procedureTables[WC_Button] = &_ButtonViewProcedures;
|
||||
procedureTables[WC_TextField] = &_TextFieldViewProcedures;
|
||||
procedureTables[WC_Scroller] = &_ScrollerViewProcedures;
|
||||
procedureTables[WC_List] = &_ListViewProcedures;
|
||||
procedureTables[WC_Browser] = &_BrowserViewProcedures;
|
||||
procedureTables[WC_PopUpButton] = &_PopUpButtonViewProcedures;
|
||||
procedureTables[WC_ColorWell] = &_ColorWellViewProcedures;
|
||||
procedureTables[WC_ScrollView] = &_ScrollViewViewProcedures;
|
||||
procedureTables[WC_Slider] = &_SliderViewProcedures;
|
||||
procedureTables[WC_SplitView] = &_SplitViewViewProcedures;
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
renderPixmap(W_Screen *screen, Pixmap d, Pixmap mask, char **data,
|
||||
int width, int height)
|
||||
{
|
||||
int x, y;
|
||||
GC whiteGC = W_GC(screen->white);
|
||||
GC blackGC = W_GC(screen->black);
|
||||
GC lightGC = W_GC(screen->gray);
|
||||
GC darkGC = W_GC(screen->darkGray);
|
||||
|
||||
|
||||
if (mask)
|
||||
XSetForeground(screen->display, screen->monoGC,
|
||||
W_PIXEL(screen->black));
|
||||
|
||||
for (y = 0; y < height; y++) {
|
||||
for (x = 0; x < width; x++) {
|
||||
switch (data[y][x]) {
|
||||
case ' ':
|
||||
case 'w':
|
||||
XDrawPoint(screen->display, d, whiteGC, x, y);
|
||||
break;
|
||||
|
||||
case '=':
|
||||
if (mask)
|
||||
XDrawPoint(screen->display, mask, screen->monoGC, x, y);
|
||||
|
||||
case '.':
|
||||
case 'l':
|
||||
XDrawPoint(screen->display, d, lightGC, x, y);
|
||||
break;
|
||||
|
||||
case '%':
|
||||
case 'd':
|
||||
XDrawPoint(screen->display, d, darkGC, x, y);
|
||||
break;
|
||||
|
||||
case '#':
|
||||
case 'b':
|
||||
default:
|
||||
XDrawPoint(screen->display, d, blackGC, x, y);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
static WMPixmap*
|
||||
makePixmap(W_Screen *sPtr, char **data, int width, int height, int masked)
|
||||
{
|
||||
Pixmap pixmap, mask = None;
|
||||
|
||||
pixmap = XCreatePixmap(sPtr->display, W_DRAWABLE(sPtr), width, height,
|
||||
sPtr->depth);
|
||||
|
||||
if (masked) {
|
||||
mask = XCreatePixmap(sPtr->display, W_DRAWABLE(sPtr), width, height, 1);
|
||||
XSetForeground(sPtr->display, sPtr->monoGC, W_PIXEL(sPtr->white));
|
||||
XFillRectangle(sPtr->display, mask, sPtr->monoGC, 0, 0, width, height);
|
||||
}
|
||||
|
||||
renderPixmap(sPtr, pixmap, mask, data, width, height);
|
||||
|
||||
return WMCreatePixmapFromXPixmaps(sPtr, pixmap, mask, width, height,
|
||||
sPtr->depth);
|
||||
}
|
||||
|
||||
#ifdef USE_TIFF
|
||||
#define WINGS_IMAGES_FILE RESOURCE_PATH"/Images.tiff"
|
||||
#define DEFAULT_OBJECT_ICON_FILE RESOURCE_PATH"/defaultIcon.tiff"
|
||||
#else
|
||||
#define WINGS_IMAGES_FILE RESOURCE_PATH"/Images.xpm"
|
||||
#define DEFAULT_OBJECT_ICON_FILE RESOURCE_PATH"/defaultIcon.xpm"
|
||||
#endif
|
||||
|
||||
static Bool
|
||||
loadPixmaps(WMScreen *scr)
|
||||
{
|
||||
RImage *image, *tmp;
|
||||
Pixmap pixmap;
|
||||
RColor gray;
|
||||
|
||||
image = RLoadImage(scr->rcontext, WINGS_IMAGES_FILE, 0);
|
||||
if (!image) {
|
||||
wwarning("WINGs: could not load widget images file: %s", RErrorString);
|
||||
return False;
|
||||
}
|
||||
/* make it have a gray background */
|
||||
gray.red = 0xae;
|
||||
gray.green = 0xaa;
|
||||
gray.blue = 0xae;
|
||||
RCombineImageWithColor(image, &gray);
|
||||
tmp = RGetSubImage(image, 0, 0, 24, 24);
|
||||
if (!RConvertImage(scr->rcontext, tmp, &pixmap)) {
|
||||
scr->homeIcon = NULL;
|
||||
} else {
|
||||
scr->homeIcon = WMCreatePixmapFromXPixmaps(scr, pixmap, None, 24, 24,
|
||||
scr->depth);
|
||||
}
|
||||
RDestroyImage(tmp);
|
||||
RDestroyImage(image);
|
||||
|
||||
#if 0
|
||||
scr->defaultObjectIcon =
|
||||
WMCreatePixmapFromFile(scr, DEFAULT_OBJECT_ICON_FILE);
|
||||
if (!scr->defaultObjectIcon) {
|
||||
wwarning("WINGs: could not load default icon file");
|
||||
return False;
|
||||
}
|
||||
#endif
|
||||
return True;
|
||||
}
|
||||
|
||||
|
||||
|
||||
WMScreen*
|
||||
WMCreateSimpleApplicationScreen(Display *display)
|
||||
{
|
||||
WMScreen *scr;
|
||||
|
||||
scr = WMCreateScreen(display, DefaultScreen(display));
|
||||
|
||||
scr->aflags.hasAppIcon = 0;
|
||||
scr->aflags.simpleApplication = 1;
|
||||
|
||||
return scr;
|
||||
}
|
||||
|
||||
|
||||
|
||||
WMScreen*
|
||||
WMCreateScreen(Display *display, int screen)
|
||||
{
|
||||
return WMCreateScreenWithRContext(display, screen,
|
||||
RCreateContext(display, screen, NULL));
|
||||
}
|
||||
|
||||
|
||||
WMScreen*
|
||||
WMCreateScreenWithRContext(Display *display, int screen, RContext *context)
|
||||
{
|
||||
W_Screen *scrPtr;
|
||||
XGCValues gcv;
|
||||
Pixmap stipple;
|
||||
static int initialized = 0;
|
||||
|
||||
if (!initialized) {
|
||||
|
||||
initialized = 1;
|
||||
|
||||
initProcedureTable();
|
||||
|
||||
assert(W_ApplicationInitialized());
|
||||
}
|
||||
|
||||
scrPtr = malloc(sizeof(W_Screen));
|
||||
if (!scrPtr)
|
||||
return NULL;
|
||||
memset(scrPtr, 0, sizeof(W_Screen));
|
||||
|
||||
scrPtr->aflags.hasAppIcon = 1;
|
||||
|
||||
scrPtr->display = display;
|
||||
scrPtr->screen = screen;
|
||||
scrPtr->rcontext = context;
|
||||
|
||||
scrPtr->depth = context->depth;
|
||||
|
||||
scrPtr->visual = context->visual;
|
||||
scrPtr->lastEventTime = 0;
|
||||
|
||||
scrPtr->colormap = context->cmap;
|
||||
|
||||
scrPtr->rootWin = RootWindow(display, screen);
|
||||
|
||||
|
||||
/* initially allocate some colors */
|
||||
WMWhiteColor(scrPtr);
|
||||
WMBlackColor(scrPtr);
|
||||
WMGrayColor(scrPtr);
|
||||
WMDarkGrayColor(scrPtr);
|
||||
|
||||
gcv.graphics_exposures = False;
|
||||
|
||||
gcv.function = GXxor;
|
||||
gcv.foreground = W_PIXEL(scrPtr->white);
|
||||
scrPtr->xorGC = XCreateGC(display, W_DRAWABLE(scrPtr), GCFunction
|
||||
|GCGraphicsExposures|GCForeground, &gcv);
|
||||
|
||||
gcv.function = GXxor;
|
||||
gcv.foreground = W_PIXEL(scrPtr->gray);
|
||||
gcv.subwindow_mode = IncludeInferiors;
|
||||
scrPtr->ixorGC = XCreateGC(display, W_DRAWABLE(scrPtr), GCFunction
|
||||
|GCGraphicsExposures|GCForeground
|
||||
|GCSubwindowMode, &gcv);
|
||||
|
||||
gcv.function = GXcopy;
|
||||
scrPtr->copyGC = XCreateGC(display, W_DRAWABLE(scrPtr), GCFunction
|
||||
|GCGraphicsExposures, &gcv);
|
||||
|
||||
scrPtr->clipGC = XCreateGC(display, W_DRAWABLE(scrPtr), GCFunction
|
||||
|GCGraphicsExposures, &gcv);
|
||||
|
||||
|
||||
stipple = XCreateBitmapFromData(display, W_DRAWABLE(scrPtr),
|
||||
STIPPLE_BITS, STIPPLE_WIDTH, STIPPLE_HEIGHT);
|
||||
gcv.foreground = W_PIXEL(scrPtr->darkGray);
|
||||
gcv.background = W_PIXEL(scrPtr->gray);
|
||||
gcv.fill_style = FillStippled;
|
||||
gcv.stipple = stipple;
|
||||
scrPtr->stippleGC = XCreateGC(display, W_DRAWABLE(scrPtr),
|
||||
GCForeground|GCBackground|GCStipple
|
||||
|GCFillStyle|GCGraphicsExposures, &gcv);
|
||||
|
||||
gcv.foreground = W_PIXEL(scrPtr->black);
|
||||
gcv.background = W_PIXEL(scrPtr->white);
|
||||
scrPtr->textFieldGC = XCreateGC(display, W_DRAWABLE(scrPtr),
|
||||
GCForeground|GCBackground, &gcv);
|
||||
|
||||
/* we need a 1bpp drawable for the monoGC, so borrow this one */
|
||||
scrPtr->monoGC = XCreateGC(display, stipple, 0, NULL);
|
||||
|
||||
XFreePixmap(display, stipple);
|
||||
|
||||
|
||||
scrPtr->normalFont = WMSystemFontOfSize(scrPtr, 12);
|
||||
|
||||
scrPtr->boldFont = WMBoldSystemFontOfSize(scrPtr, 12);
|
||||
|
||||
scrPtr->checkButtonImageOn = makePixmap(scrPtr, CHECK_BUTTON_ON,
|
||||
CHECK_BUTTON_ON_WIDTH,
|
||||
CHECK_BUTTON_ON_HEIGHT, False);
|
||||
|
||||
scrPtr->checkButtonImageOff = makePixmap(scrPtr, CHECK_BUTTON_OFF,
|
||||
CHECK_BUTTON_OFF_WIDTH,
|
||||
CHECK_BUTTON_OFF_HEIGHT, False);
|
||||
|
||||
scrPtr->radioButtonImageOn = makePixmap(scrPtr, RADIO_BUTTON_ON,
|
||||
RADIO_BUTTON_ON_WIDTH,
|
||||
RADIO_BUTTON_ON_HEIGHT, False);
|
||||
|
||||
scrPtr->radioButtonImageOff = makePixmap(scrPtr, RADIO_BUTTON_OFF,
|
||||
RADIO_BUTTON_OFF_WIDTH,
|
||||
RADIO_BUTTON_OFF_HEIGHT, False);
|
||||
|
||||
scrPtr->buttonArrow = makePixmap(scrPtr, BUTTON_ARROW,
|
||||
BUTTON_ARROW_WIDTH, BUTTON_ARROW_HEIGHT,
|
||||
False);
|
||||
|
||||
scrPtr->pushedButtonArrow = makePixmap(scrPtr, BUTTON_ARROW2,
|
||||
BUTTON_ARROW2_WIDTH, BUTTON_ARROW2_HEIGHT,
|
||||
False);
|
||||
|
||||
|
||||
scrPtr->scrollerDimple = makePixmap(scrPtr, SCROLLER_DIMPLE,
|
||||
SCROLLER_DIMPLE_WIDTH,
|
||||
SCROLLER_DIMPLE_HEIGHT, False);
|
||||
|
||||
|
||||
scrPtr->upArrow = makePixmap(scrPtr, SCROLLER_ARROW_UP,
|
||||
SCROLLER_ARROW_UP_WIDTH,
|
||||
SCROLLER_ARROW_UP_HEIGHT, True);
|
||||
|
||||
scrPtr->downArrow = makePixmap(scrPtr, SCROLLER_ARROW_DOWN,
|
||||
SCROLLER_ARROW_DOWN_WIDTH,
|
||||
SCROLLER_ARROW_DOWN_HEIGHT, True);
|
||||
|
||||
scrPtr->leftArrow = makePixmap(scrPtr, SCROLLER_ARROW_LEFT,
|
||||
SCROLLER_ARROW_LEFT_WIDTH,
|
||||
SCROLLER_ARROW_LEFT_HEIGHT, True);
|
||||
|
||||
scrPtr->rightArrow = makePixmap(scrPtr, SCROLLER_ARROW_RIGHT,
|
||||
SCROLLER_ARROW_RIGHT_WIDTH,
|
||||
SCROLLER_ARROW_RIGHT_HEIGHT, True);
|
||||
|
||||
scrPtr->hiUpArrow = makePixmap(scrPtr, HI_SCROLLER_ARROW_UP,
|
||||
SCROLLER_ARROW_UP_WIDTH,
|
||||
SCROLLER_ARROW_UP_HEIGHT, True);
|
||||
|
||||
scrPtr->hiDownArrow = makePixmap(scrPtr, HI_SCROLLER_ARROW_DOWN,
|
||||
SCROLLER_ARROW_DOWN_WIDTH,
|
||||
SCROLLER_ARROW_DOWN_HEIGHT, True);
|
||||
|
||||
scrPtr->hiLeftArrow = makePixmap(scrPtr, HI_SCROLLER_ARROW_LEFT,
|
||||
SCROLLER_ARROW_LEFT_WIDTH,
|
||||
SCROLLER_ARROW_LEFT_HEIGHT, True);
|
||||
|
||||
scrPtr->hiRightArrow = makePixmap(scrPtr, HI_SCROLLER_ARROW_RIGHT,
|
||||
SCROLLER_ARROW_RIGHT_WIDTH,
|
||||
SCROLLER_ARROW_RIGHT_HEIGHT, True);
|
||||
|
||||
scrPtr->popUpIndicator = makePixmap(scrPtr, POPUP_INDICATOR,
|
||||
POPUP_INDICATOR_WIDTH,
|
||||
POPUP_INDICATOR_HEIGHT, True);
|
||||
|
||||
scrPtr->pullDownIndicator = makePixmap(scrPtr, PULLDOWN_INDICATOR,
|
||||
PULLDOWN_INDICATOR_WIDTH,
|
||||
PULLDOWN_INDICATOR_HEIGHT, True);
|
||||
loadPixmaps(scrPtr);
|
||||
|
||||
scrPtr->defaultCursor = XCreateFontCursor(display, XC_left_ptr);
|
||||
|
||||
scrPtr->textCursor = XCreateFontCursor(display, XC_xterm);
|
||||
|
||||
scrPtr->internalMessage = XInternAtom(display, "_WINGS_MESSAGE", False);
|
||||
|
||||
scrPtr->attribsAtom = XInternAtom(display, "_GNUSTEP_WM_ATTR", False);
|
||||
|
||||
scrPtr->deleteWindowAtom = XInternAtom(display, "WM_DELETE_WINDOW", False);
|
||||
|
||||
scrPtr->protocolsAtom = XInternAtom(display, "WM_PROTOCOLS", False);
|
||||
|
||||
scrPtr->clipboardAtom = XInternAtom(display, "CLIPBOARD", False);
|
||||
|
||||
scrPtr->rootView = W_CreateRootView(scrPtr);
|
||||
|
||||
return scrPtr;
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
WMHangData(WMWidget *widget, void *data)
|
||||
{
|
||||
W_VIEW(widget)->hangedData = data;
|
||||
}
|
||||
|
||||
|
||||
void*
|
||||
WMGetHangedData(WMWidget *widget)
|
||||
{
|
||||
return W_VIEW(widget)->hangedData;
|
||||
}
|
||||
|
||||
|
||||
|
||||
void
|
||||
WMDestroyWidget(WMWidget *widget)
|
||||
{
|
||||
W_DestroyView(W_VIEW(widget));
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
WMSetFocusToWidget(WMWidget *widget)
|
||||
{
|
||||
W_SetFocusOfTopLevel(W_TopLevelOfView(W_VIEW(widget)), W_VIEW(widget));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* WMRealizeWidget-
|
||||
* Realizes the widget and all it's children.
|
||||
*
|
||||
*/
|
||||
void
|
||||
WMRealizeWidget(WMWidget *w)
|
||||
{
|
||||
W_RealizeView(W_VIEW(w));
|
||||
}
|
||||
|
||||
void
|
||||
WMMapWidget(WMWidget *w)
|
||||
{
|
||||
W_MapView(W_VIEW(w));
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
makeChildrenAutomap(W_View *view, int flag)
|
||||
{
|
||||
view = view->childrenList;
|
||||
|
||||
while (view) {
|
||||
view->flags.mapWhenRealized = flag;
|
||||
makeChildrenAutomap(view, flag);
|
||||
|
||||
view = view->nextSister;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
WMMapSubwidgets(WMWidget *w)
|
||||
{
|
||||
/* make sure that subwidgets created after the parent was realized
|
||||
* are mapped too */
|
||||
if (!W_VIEW(w)->flags.realized) {
|
||||
makeChildrenAutomap(W_VIEW(w), True);
|
||||
} else {
|
||||
W_MapSubviews(W_VIEW(w));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
WMUnmapSubwidgets(WMWidget *w)
|
||||
{
|
||||
if (!W_VIEW(w)->flags.realized) {
|
||||
makeChildrenAutomap(W_VIEW(w), False);
|
||||
} else {
|
||||
W_UnmapSubviews(W_VIEW(w));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
void
|
||||
WMUnmapWidget(WMWidget *w)
|
||||
{
|
||||
W_UnmapView(W_VIEW(w));
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
WMSetWidgetBackgroundColor(WMWidget *w, WMColor *color)
|
||||
{
|
||||
if (W_CLASS(w) < WC_UserWidget
|
||||
&& procedureTables[W_CLASS(w)]->setBackgroundColor) {
|
||||
|
||||
(*procedureTables[W_CLASS(w)]->setBackgroundColor)(w, color);
|
||||
|
||||
} else if (W_CLASS(w) >= WC_UserWidget
|
||||
&& userProcedureTable[W_CLASS(w)-WC_UserWidget]->setBackgroundColor) {
|
||||
|
||||
(*userProcedureTable[W_CLASS(w)-WC_UserWidget]->setBackgroundColor)(w, color);
|
||||
|
||||
} else {
|
||||
W_SetViewBackgroundColor(W_VIEW(w), color);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
WMMoveWidget(WMWidget *w, int x, int y)
|
||||
{
|
||||
if (W_CLASS(w) < WC_UserWidget
|
||||
&& procedureTables[W_CLASS(w)]->move) {
|
||||
|
||||
(*procedureTables[W_CLASS(w)]->move)(w, x, y);
|
||||
|
||||
} else if (W_CLASS(w) >= WC_UserWidget
|
||||
&& userProcedureTable[W_CLASS(w)-WC_UserWidget]->move) {
|
||||
|
||||
(*userProcedureTable[W_CLASS(w)-WC_UserWidget]->move)(w, x, y);
|
||||
|
||||
} else {
|
||||
W_MoveView(W_VIEW(w), x, y);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
WMResizeWidget(WMWidget *w, unsigned int width, unsigned int height)
|
||||
{
|
||||
if (W_CLASS(w) < WC_UserWidget
|
||||
&& procedureTables[W_CLASS(w)]->resize) {
|
||||
|
||||
(*procedureTables[W_CLASS(w)]->resize)(w, width, height);
|
||||
|
||||
} else if (W_CLASS(w) >= WC_UserWidget
|
||||
&& userProcedureTable[W_CLASS(w)-WC_UserWidget]->resize) {
|
||||
|
||||
(*userProcedureTable[W_CLASS(w)-WC_UserWidget]->resize)(w, width, height);
|
||||
|
||||
} else {
|
||||
W_ResizeView(W_VIEW(w), width, height);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
W_Class
|
||||
W_RegisterUserWidget(W_ViewProcedureTable *procTable)
|
||||
{
|
||||
W_ViewProcedureTable **newTable;
|
||||
|
||||
userWidgetCount++;
|
||||
newTable = wmalloc(sizeof(W_ViewProcedureTable*)*userWidgetCount);
|
||||
memcpy(newTable, userProcedureTable,
|
||||
sizeof(W_ViewProcedureTable*)*(userWidgetCount-1));
|
||||
|
||||
newTable[userWidgetCount-1] = procTable;
|
||||
|
||||
free(userProcedureTable);
|
||||
|
||||
userProcedureTable = newTable;
|
||||
|
||||
return userWidgetCount + WC_UserWidget - 1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
RContext*
|
||||
WMScreenRContext(WMScreen *scr)
|
||||
{
|
||||
return scr->rcontext;
|
||||
}
|
||||
|
||||
|
||||
|
||||
unsigned int
|
||||
WMWidgetWidth(WMWidget *w)
|
||||
{
|
||||
return W_VIEW(w)->size.width;
|
||||
}
|
||||
|
||||
|
||||
unsigned int
|
||||
WMWidgetHeight(WMWidget *w)
|
||||
{
|
||||
return W_VIEW(w)->size.height;
|
||||
}
|
||||
|
||||
|
||||
Window
|
||||
WMWidgetXID(WMWidget *w)
|
||||
{
|
||||
return W_VIEW(w)->window;
|
||||
}
|
||||
|
||||
|
||||
WMScreen*
|
||||
WMWidgetScreen(WMWidget *w)
|
||||
{
|
||||
return W_VIEW(w)->screen;
|
||||
}
|
||||
|
||||
|
||||
|
||||
void
|
||||
WMScreenMainLoop(WMScreen *scr)
|
||||
{
|
||||
XEvent event;
|
||||
|
||||
while (1) {
|
||||
WMNextEvent(scr->display, &event);
|
||||
WMHandleEvent(&event);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Display*
|
||||
WMScreenDisplay(WMScreen *scr)
|
||||
{
|
||||
return scr->display;
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
WMRedisplayWidget(WMWidget *w)
|
||||
{
|
||||
W_RedisplayView(W_VIEW(w));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user