123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733 |
- #include "copyright.h"
- #include <config.h>
- #include "XMenuInt.h"
- #include <stdlib.h>
- #ifdef EMACS_BITMAP_FILES
- #include "../src/bitmaps/dimple1.xbm"
- #include "../src/bitmaps/dimple3.xbm"
- #include "../src/bitmaps/gray1.xbm"
- #include "../src/bitmaps/gray3.xbm"
- #include "../src/bitmaps/crosswv.xbm"
- #include "../src/bitmaps/leftptr.xbm"
- #include "../src/bitmaps/leftpmsk.xbm"
- #include "../src/bitmaps/rtptr.xbm"
- #include "../src/bitmaps/rtpmsk.xbm"
- #include "../src/bitmaps/cntrptr.xbm"
- #include "../src/bitmaps/cntrpmsk.xbm"
- #include "../src/bitmaps/stipple.xbm"
- #else
- #include <X11/bitmaps/dimple1>
- #include <X11/bitmaps/dimple3>
- #include <X11/bitmaps/gray1>
- #include <X11/bitmaps/gray3>
- #include <X11/bitmaps/cross_weave>
- #include <X11/bitmaps/left_ptr>
- #include <X11/bitmaps/left_ptrmsk>
- #include <X11/bitmaps/right_ptr>
- #include <X11/bitmaps/right_ptrmsk>
- #include <X11/bitmaps/cntr_ptr>
- #include <X11/bitmaps/cntr_ptrmsk>
- #include <X11/bitmaps/stipple>
- #endif
- #define DEF_FREEZE 0
- #define DEF_REVERSE 0
- #define DEF_MENU_STYLE LEFT
- #define DEF_MENU_MODE BOX
- #define DEF_INACT_PNUM 3
- #define DEF_P_STYLE CENTER
- #define DEF_P_EVENTS (EnterWindowMask | ExposureMask)
- #define DEF_P_FNT_NAME "fixed"
- #define DEF_P_SPREAD 0.5
- #define DEF_P_BDR_WIDTH 2
- #define DEF_S_STYLE LEFT
- #define DEF_S_EVENTS (EnterWindowMask | LeaveWindowMask)
- #define DEF_S_FNT_NAME "fixed"
- #define DEF_S_SPREAD 0.10
- #define DEF_S_BDR_WIDTH 1
- #define XASSOC_TABLE_SIZE 64
- char *x_get_resource_string (char const *, char const *);
- static Status
- XAllocDisplayColor(Display *display, Colormap map, char const *colorName,
- XColor *color, XColor *junk)
- {
- return (colorName!=0 &&
- XParseColor(display, map, colorName, color) &&
- XAllocColor(display, map, color));
- }
- XMenu *
- XMenuCreate(Display *display, Window parent, register char const *def_env)
-
-
-
- {
- register char *def_val;
- register XMenu *menu;
- XMStyle menu_style;
- XMMode menu_mode;
- XMPane *pane;
- XAssocTable *assoc_tab;
- int freeze;
- int reverse;
- XMStyle p_style;
- char const *p_fnt_name;
- XFontStruct *p_fnt_info;
- int p_fnt_pad;
- double p_spread;
- int p_fnt_height;
- int p_bdr_width;
- int flag_height;
- int p_height;
- int p_x_off;
- int p_y_off;
- GC pane_GC;
- XMStyle s_style;
- char const *s_fnt_name;
- XFontStruct *s_fnt_info;
- int s_fnt_pad;
- int s_fnt_height;
- double s_spread;
- int s_bdr_width;
- int s_height;
- int s_x_off;
- int s_y_off;
- GC normal_select_GC;
- GC inverse_select_GC;
- GC inact_GC;
-
- XColor color_def;
- XColor p_bdr_color;
- XColor s_bdr_color;
- XColor p_frg_color;
- XColor s_frg_color;
- XColor bkgnd_color;
- XColor mouse_color;
- Cursor mouse_cursor;
- Pixmap inact_bitmap;
- int inact_pnum;
- Pixmap cursor;
- Pixmap cursor_mask;
- Pixmap stipple_pixmap;
- unsigned long valuemask;
- XGCValues *values;
- Window root = RootWindow (display, DefaultScreen (display));
-
- menu = (XMenu *)calloc(1, sizeof(XMenu));
- if (menu == NULL) {
- _XMErrorCode = XME_CALLOC;
- return(NULL);
- }
- pane = (XMPane *)calloc(1, sizeof(XMPane));
- if (pane == NULL) {
- _XMErrorCode = XME_CALLOC;
- return(NULL);
- }
-
- assoc_tab = (XAssocTable *)XCreateAssocTable(XASSOC_TABLE_SIZE);
- if(assoc_tab == NULL) {
- _XMErrorCode= XME_CREATE_ASSOC;
- return(NULL);
- }
-
- if (def_env == NULL || *def_env == '\0') def_env = "XMenu";
-
- freeze = DEF_FREEZE;
- reverse = DEF_REVERSE;
- menu_style = DEF_MENU_STYLE;
- menu_mode = DEF_MENU_MODE;
- inact_pnum = DEF_INACT_PNUM;
- p_style = DEF_P_STYLE;
- p_spread = DEF_P_SPREAD;
- p_fnt_name = DEF_P_FNT_NAME;
- p_bdr_width = DEF_P_BDR_WIDTH;
- s_style = DEF_S_STYLE;
- s_spread = DEF_S_SPREAD;
- s_fnt_name = DEF_S_FNT_NAME;
- s_bdr_width = DEF_S_BDR_WIDTH;
-
- def_val = x_get_resource_string ("menuFreeze", "MenuFreeze");
- if (def_val != NULL) {
- if (strcmp(def_val, "on") == 0) freeze = 1;
- else if (strcmp(def_val, "off") == 0) freeze = 0;
- }
- def_val = x_get_resource_string ("menuReverseVideo", "MenuReverseVideo");
- if (def_val != NULL) {
- if (strcmp(def_val, "on") == 0) reverse = 1;
- else if (strcmp(def_val, "off") == 0) reverse = 0;
- }
- def_val = x_get_resource_string ("menuStyle", "MenuStyle");
- if (def_val != NULL) {
- if (strcmp(def_val, "right_hand") == 0) menu_style = RIGHT;
- else if (strcmp(def_val, "left_hand") == 0) menu_style = LEFT;
- else if (strcmp(def_val, "center") == 0) menu_style = CENTER;
- }
- def_val = x_get_resource_string ("menuMode", "MenuMode");
- if (def_val != NULL) {
- if (strcmp(def_val, "box") == 0) menu_mode = BOX;
- else if (strcmp(def_val, "invert") == 0) menu_mode = INVERT;
- }
- def_val = x_get_resource_string ("menuMouse", "MenuMouse");
- if (
- def_val != NULL &&
- DisplayCells(display, DefaultScreen(display)) > 2 &&
- XAllocDisplayColor(display,
- DefaultColormap(display, DefaultScreen(display)),
- def_val,
- &mouse_color, &color_def)
- );
- else if (reverse &&
- XAllocDisplayColor(display,
- DefaultColormap(display, DefaultScreen(display)),
- "white",
- &mouse_color, &color_def)
- );
- else if (XAllocDisplayColor(display,
- DefaultColormap(display, DefaultScreen(display)),
- "black",
- &mouse_color, &color_def)
- );
- else {}
- def_val = x_get_resource_string ("menuBackground", "MenuBackground");
- if (
- def_val != NULL &&
- DisplayCells(display, DefaultScreen(display)) > 2 &&
- XAllocDisplayColor(display,
- DefaultColormap(display, DefaultScreen(display)),
- def_val,
- &bkgnd_color, &color_def)
- );
- else if (reverse &&
- XAllocDisplayColor(display,
- DefaultColormap(display, DefaultScreen(display)),
- "black",
- &bkgnd_color, &color_def)
- );
- else if (XAllocDisplayColor(display,
- DefaultColormap(display, DefaultScreen(display)),
- "white",
- &bkgnd_color, &color_def)
- );
- else {}
- def_val = x_get_resource_string ("menuInactivePattern", "MenuInactivePattern");
- if (def_val != NULL) {
- if (strcmp(def_val, "dimple1") == 0) inact_pnum = 0;
- else if (strcmp(def_val, "dimple3") == 0) inact_pnum = 1;
- else if (strcmp(def_val, "gray1") == 0) inact_pnum = 2;
- else if (strcmp(def_val, "gray3") == 0) inact_pnum = 3;
- else if (strcmp(def_val, "cross_weave") == 0) inact_pnum = 4;
- }
- def_val = x_get_resource_string ("paneStyle", "PaneStyle");
- if (def_val != NULL) {
- if (strcmp(def_val, "flush_left") == 0) p_style = LEFT;
- else if (strcmp(def_val, "flush_right") == 0) p_style = RIGHT;
- else if (strcmp(def_val, "center") == 0) p_style = CENTER;
- }
- def_val = x_get_resource_string ("paneFont", "PaneFont");
- if (def_val != NULL) p_fnt_name = def_val;
- def_val = x_get_resource_string ("paneForeground", "PaneForeground");
- if (
- def_val != NULL &&
- DisplayCells(display, DefaultScreen(display)) > 2
- )
- XAllocDisplayColor(display, DefaultColormap(display,
- DefaultScreen(display)),
- def_val,
- &p_frg_color, &color_def);
- else if (reverse) XAllocDisplayColor(display,
- DefaultColormap(display,
- DefaultScreen(display)),
- "white",
- &p_frg_color, &color_def);
- else XAllocDisplayColor(display,
- DefaultColormap(display, DefaultScreen(display)),
- "black",
- &p_frg_color, &color_def);
- def_val = x_get_resource_string ("paneBorder", "PaneBorder");
- if (
- def_val != NULL &&
- DisplayCells(display, DefaultScreen(display)) > 2 &&
- XAllocDisplayColor(display,
- DefaultColormap(display, DefaultScreen(display)),
- def_val,
- &p_bdr_color, &color_def)
- );
- else if (reverse &&
- XAllocDisplayColor(display,
- DefaultColormap(display, DefaultScreen(display)),
- "white",
- &p_bdr_color, &color_def)
- );
- else XAllocDisplayColor(display,
- DefaultColormap(display, DefaultScreen(display)),
- "black",
- &p_bdr_color, &color_def);
- def_val = x_get_resource_string ("paneBorderWidth", "PaneBorderWidth");
- if (def_val != NULL) p_bdr_width = atoi(def_val);
- def_val = x_get_resource_string ("paneSpread", "PaneSpread");
- if (def_val != NULL) p_spread = atof(def_val);
- def_val = x_get_resource_string ("selectionStyle", "SelectionStyle");
- if (def_val != NULL) {
- if (strcmp(def_val, "flush_left") == 0) s_style = LEFT;
- else if (strcmp(def_val, "flush_right") == 0) s_style = RIGHT;
- else if (strcmp(def_val, "center") == 0) s_style = CENTER;
- }
- def_val = x_get_resource_string ("selectionFont", "SelectionFont");
- if (def_val != NULL) s_fnt_name = def_val;
- def_val = x_get_resource_string ("selectionForeground", "SelectionForeground");
- if (
- def_val != NULL &&
- DisplayCells(display, DefaultScreen(display)) > 2 &&
- XAllocDisplayColor(display,
- DefaultColormap(display, DefaultScreen(display)),
- def_val,
- &s_frg_color, &color_def)
- );
- else if (reverse &&
- XAllocDisplayColor(display,
- DefaultColormap(display, DefaultScreen(display)),
- "white",
- &s_frg_color, &color_def)
- ) ;
- else if (XAllocDisplayColor(display,
- DefaultColormap(display, DefaultScreen(display)),
- "black",
- &s_frg_color, &color_def)
- ) ;
- else {}
- def_val = x_get_resource_string ("selectionBorder", "SelectionBorder");
- if (
- def_val != NULL &&
- DisplayCells(display, DefaultScreen(display)) > 2 &&
- XAllocDisplayColor(display,
- DefaultColormap(display, DefaultScreen(display)),
- def_val,
- &s_bdr_color, &color_def)
- ) ;
- else if (reverse &&
- XAllocDisplayColor(display,
- DefaultColormap(display, DefaultScreen(display)),
- "white",
- &s_bdr_color, &color_def)
- ) ;
- else if (XAllocDisplayColor(display,
- DefaultColormap(display, DefaultScreen(display)),
- "black",
- &s_bdr_color, &color_def)
- ) ;
- else {}
- def_val = x_get_resource_string ("selectionBorderWidth", "SelectionBorderWidth");
- if (def_val != NULL) s_bdr_width = atoi(def_val);
- def_val = x_get_resource_string ("selectionSpread", "SelectionSpread");
- if (def_val != NULL) s_spread = atof(def_val);
-
- {
- char *data = NULL;
- int width, height;
- switch (inact_pnum)
- {
- case 0:
- data = (char *)dimple1_bits;
- width = dimple1_width;
- height = dimple1_height;
- break;
- case 1:
- data = (char *)dimple3_bits;
- width = dimple3_width;
- height = dimple3_height;
- break;
- case 2:
- data = (char *)gray1_bits;
- width = gray1_width;
- height = gray1_height;
- break;
- case 3:
- data = (char *)gray3_bits;
- width = gray3_width;
- height = gray3_height;
- break;
- case 4:
- data = (char *)cross_weave_bits;
- width = cross_weave_width;
- height = cross_weave_height;
- break;
- }
- if (! data)
- {
- _XMErrorCode = XME_STORE_BITMAP;
- return(NULL);
- }
- inact_bitmap =
- XCreatePixmapFromBitmapData
- (display, root, data, width, height,
- p_frg_color.pixel, bkgnd_color.pixel,
- DisplayPlanes (display, DefaultScreen (display)));
- }
-
- switch (menu_style) {
- case LEFT:
- cursor = XCreateBitmapFromData(display,
- root,
- left_ptr_bits,
- left_ptr_width,
- left_ptr_height);
- cursor_mask = XCreateBitmapFromData(display,
- root,
- left_ptrmsk_bits,
- left_ptrmsk_width,
- left_ptrmsk_height);
- mouse_cursor = XCreatePixmapCursor(
- display,
- cursor, cursor_mask,
- &mouse_color, &bkgnd_color,
- left_ptr_x_hot,
- left_ptr_y_hot
- );
- XFreePixmap(display, cursor);
- XFreePixmap(display, cursor_mask);
- break;
- case RIGHT:
- cursor = XCreateBitmapFromData(display,
- root,
- right_ptr_bits,
- right_ptr_width,
- right_ptr_height);
- cursor_mask = XCreateBitmapFromData(display,
- root,
- right_ptrmsk_bits,
- right_ptrmsk_width,
- right_ptrmsk_height);
- mouse_cursor = XCreatePixmapCursor(
- display,
- cursor, cursor_mask,
- &mouse_color, &bkgnd_color,
- right_ptr_x_hot,
- right_ptr_y_hot
- );
- XFreePixmap(display, cursor);
- XFreePixmap(display, cursor_mask);
- break;
- case CENTER:
- cursor = XCreateBitmapFromData(display,
- root,
- cntr_ptr_bits,
- cntr_ptr_width,
- cntr_ptr_height);
- cursor_mask = XCreateBitmapFromData(display,
- root,
- cntr_ptrmsk_bits,
- cntr_ptrmsk_width,
- cntr_ptrmsk_height);
- mouse_cursor = XCreatePixmapCursor(
- display,
- cursor, cursor_mask,
- &mouse_color, &bkgnd_color,
- cntr_ptr_x_hot,
- cntr_ptr_y_hot
- );
- XFreePixmap(display, cursor);
- XFreePixmap(display, cursor_mask);
- break;
- default:
-
- _XMErrorCode = XME_STYLE_PARAM;
- return(NULL);
- }
- if (mouse_cursor == _X_FAILURE) {
- _XMErrorCode = XME_CREATE_CURSOR;
- return(NULL);
- }
-
- p_fnt_info = XLoadQueryFont(display, p_fnt_name);
- if (p_fnt_info == NULL) {
- _XMErrorCode = XME_OPEN_FONT;
- return(NULL);
- }
- s_fnt_info = XLoadQueryFont(display, s_fnt_name);
- if (s_fnt_info == NULL) {
- _XMErrorCode = XME_OPEN_FONT;
- return(NULL);
- }
-
- p_fnt_height = p_fnt_info->max_bounds.ascent + p_fnt_info->max_bounds.descent;
- s_fnt_height = s_fnt_info->max_bounds.ascent + s_fnt_info->max_bounds.descent;
- p_fnt_pad = s_spread * p_fnt_height;
- s_fnt_pad = s_spread * s_fnt_height;
-
- flag_height = p_fnt_height + (p_fnt_pad << 1);
- p_height = 0;
- p_y_off = flag_height + p_bdr_width;
- p_x_off = p_y_off * p_spread;
- s_height = s_fnt_height + (s_fnt_pad << 1) + (s_bdr_width << 1);
- s_y_off = s_height;
- s_x_off = p_x_off;
-
- pane->next = pane;
- pane->prev = pane;
- pane->type = PL_HEADER;
- pane->serial = -1;
-
- _XMWinQueInit();
-
- values = (XGCValues *)malloc(sizeof(XGCValues));
- valuemask = (GCForeground | GCBackground | GCFont | GCLineWidth);
-
- values->foreground = p_frg_color.pixel;
- values->background = bkgnd_color.pixel;
- values->font = p_fnt_info->fid;
- values->line_width = p_bdr_width;
- pane_GC = XCreateGC(
- display,
- root,
- valuemask,
- values);
-
- values->foreground = s_frg_color.pixel;
- values->background = bkgnd_color.pixel;
- values->font = s_fnt_info->fid;
- values->line_width = s_bdr_width;
- normal_select_GC = XCreateGC(display,
- root,
- valuemask,
- values);
-
- values->foreground = bkgnd_color.pixel;
- values->background = s_frg_color.pixel;
- values->font = s_fnt_info->fid;
- values->line_width = s_bdr_width;
- inverse_select_GC = XCreateGC(display,
- root,
- valuemask,
- values);
- stipple_pixmap = XCreateBitmapFromData(display,
- root,
- stipple_bits,
- stipple_width,
- stipple_height);
-
- valuemask |= (GCFillStyle | GCStipple);
- values->foreground = s_frg_color.pixel;
- values->background = bkgnd_color.pixel;
- values->font = s_fnt_info->fid;
- values->line_width = s_bdr_width;
- values->fill_style = FillStippled;
- values->stipple = stipple_pixmap;
- inact_GC = XCreateGC(display,
- root,
- valuemask,
- values);
- valuemask |= (GCGraphicsExposures);
- values->graphics_exposures = False;
-
-
- menu->menu_style = menu_style;
- menu->menu_mode = menu_mode;
- menu->freeze = freeze;
- menu->aeq = 0;
- menu->recompute = 1;
- menu->parent = parent;
- menu->height = 0;
- menu->width = 0;
- menu->mouse_cursor = mouse_cursor;
- menu->assoc_tab = assoc_tab;
- menu->p_list = pane;
-
- menu->p_style = p_style;
- menu->p_events = DEF_P_EVENTS;
- menu->p_fnt_info = p_fnt_info;
- menu->p_fnt_pad = p_fnt_pad;
- menu->p_spread = p_spread;
- menu->p_bdr_width = p_bdr_width;
- menu->flag_height = flag_height;
- menu->p_width = 0;
- menu->p_height = p_height;
- menu->p_x_off = p_x_off;
- menu->p_y_off = p_y_off;
- menu->p_count = 0;
- menu->pane_GC = pane_GC;
- menu->x_pos = 0;
- menu->y_pos = 0;
-
- menu->s_style = s_style;
- menu->s_events = DEF_S_EVENTS;
- menu->s_fnt_info = s_fnt_info;
- menu->s_fnt_pad = s_fnt_pad;
- menu->s_spread = s_spread;
- menu->s_bdr_width = s_bdr_width;
- menu->s_width = 0;
- menu->s_height = s_height;
- menu->s_x_off = s_x_off;
- menu->s_y_off = s_y_off;
- menu->s_count = 0;
- menu->normal_select_GC = normal_select_GC;
- menu->inverse_select_GC = inverse_select_GC;
- menu->inact_GC = inact_GC;
-
- menu->p_bdr_color = p_bdr_color.pixel;
- menu->s_bdr_color = s_bdr_color.pixel;
- menu->p_frg_color = p_frg_color.pixel;
- menu->s_frg_color = s_frg_color.pixel;
- menu->bkgnd_color = bkgnd_color.pixel;
-
- menu->p_bdr_pixmap = None;
- menu->s_bdr_pixmap = None;
- menu->p_frg_pixmap = None;
- menu->s_frg_pixmap = None;
- menu->bkgnd_pixmap = None;
- menu->inact_pixmap = inact_bitmap;
-
- _XMErrorCode = XME_NO_ERROR;
- return(menu);
- }
|