1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Various utilities
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
23 #include "wx/msgdlg.h"
24 #include "wx/cursor.h"
25 #include "wx/window.h" // for wxTopLevelWindows
32 #include <sys/types.h>
40 #if (defined(__SUNCC__) || defined(__CLCC__))
45 #pragma message disable nosimpint
49 #pragma message enable nosimpint
52 #include "wx/unix/execute.h"
54 #include "wx/x11/private.h"
56 // ----------------------------------------------------------------------------
58 // ----------------------------------------------------------------------------
60 // Yuck this is really BOTH site and platform dependent
61 // so we should use some other strategy!
63 #define DEFAULT_XRESOURCE_DIR "/usr/openwin/lib/app-defaults"
65 #define DEFAULT_XRESOURCE_DIR "/usr/lib/X11/app-defaults"
68 static char *GetIniFile (char *dest
, const char *filename
);
70 // ============================================================================
72 // ============================================================================
74 // ----------------------------------------------------------------------------
75 // async event processing
76 // ----------------------------------------------------------------------------
78 // Consume all events until no more left
81 Display
*display
= (Display
*) wxGetDisplay();
83 XSync (display
, FALSE
);
85 // XtAppPending returns availability of events AND timers/inputs, which
86 // are processed via callbacks, so XtAppNextEvent will not return if
87 // there are no events. So added '& XtIMXEvent' - Sergey.
88 while (XtAppPending ((XtAppContext
) wxTheApp
->GetAppContext()) & XtIMXEvent
)
90 XFlush (XtDisplay ((Widget
) wxTheApp
->GetTopLevelWidget()));
91 // Jan Lessner: works better when events are non-X events
92 XtAppProcessEvent((XtAppContext
) wxTheApp
->GetAppContext(), XtIMXEvent
);
96 // Check whether this window wants to process messages, e.g. Stop button
97 // in long calculations.
98 bool wxCheckForInterrupt(wxWindow
*wnd
)
100 wxASSERT_MSG(FALSE
, "wxCheckForInterrupt not yet implemented.");
103 wxCHECK_MSG( wnd
, FALSE
, "NULL window in wxCheckForInterrupt" );
105 Display
*dpy
=(Display
*) wnd
->GetXDisplay();
106 Window win
=(Window
) wnd
->GetXWindow();
109 if (wnd
->GetMainWidget())
111 XmUpdateDisplay((Widget
)(wnd
->GetMainWidget()));
114 bool hadEvents
= FALSE
;
115 while( XCheckMaskEvent(dpy
,
116 ButtonPressMask
|ButtonReleaseMask
|ButtonMotionMask
|
117 PointerMotionMask
|KeyPressMask
|KeyReleaseMask
,
120 if ( event
.xany
.window
== win
)
124 XtDispatchEvent(&event
);
132 // ----------------------------------------------------------------------------
134 // ----------------------------------------------------------------------------
136 static void xt_notify_end_process(XtPointer data
, int *WXUNUSED(fid
),
139 wxEndProcessData
*proc_data
= (wxEndProcessData
*)data
;
141 wxHandleProcessTermination(proc_data
);
143 // VZ: I think they should be the same...
144 wxASSERT( (int)*id
== proc_data
->tag
);
149 int wxAddProcessCallback(wxEndProcessData
*proc_data
, int fd
)
151 XtInputId id
= XtAppAddInput((XtAppContext
) wxTheApp
->GetAppContext(),
153 (XtPointer
*) XtInputReadMask
,
154 (XtInputCallbackProc
) xt_notify_end_process
,
155 (XtPointer
) proc_data
);
161 // ----------------------------------------------------------------------------
163 // ----------------------------------------------------------------------------
168 // Use current setting for the bell
169 XBell ((Display
*) wxGetDisplay(), 0);
172 int wxGetOsVersion(int *majorVsn
, int *minorVsn
)
176 // This code is WRONG!! Does NOT return the
177 // Motif version of the libs but the X protocol
179 Display
*display
= XtDisplay ((Widget
) wxTheApp
->GetTopLevelWidget());
181 *majorVsn
= ProtocolVersion (display
);
183 *minorVsn
= ProtocolRevision (display
);
195 // ----------------------------------------------------------------------------
196 // Reading and writing resources (eg WIN.INI, .Xdefaults)
197 // ----------------------------------------------------------------------------
199 // Read $HOME for what it says is home, if not
200 // read $USER or $LOGNAME for user name else determine
201 // the Real User, then determine the Real home dir.
202 static char * GetIniFile (char *dest
, const char *filename
)
205 if (filename
&& wxIsAbsolutePath(filename
))
207 strcpy(dest
, filename
);
209 else if ((home
= wxGetUserHome("")) != NULL
)
212 if (dest
[strlen(dest
) - 1] != '/')
214 if (filename
== NULL
)
216 if ((filename
= getenv ("XENVIRONMENT")) == NULL
)
217 filename
= ".Xdefaults";
219 else if (*filename
!= '.')
221 strcat (dest
, filename
);
231 static char *GetResourcePath(char *buf
, const char *name
, bool create
= FALSE
)
233 if (create
&& wxFileExists (name
) ) {
235 return buf
; // Exists so ...
241 // Put in standard place for resource files if not absolute
242 strcpy (buf
, DEFAULT_XRESOURCE_DIR
);
244 strcat (buf
, (const char*) wxFileNameFromPath (name
));
248 // Touch the file to create it
249 FILE *fd
= fopen (buf
, "w");
256 * We have a cache for writing different resource files,
257 * which will only get flushed when we call wxFlushResources().
258 * Build up a list of resource databases waiting to be written.
262 wxList
wxResourceCache (wxKEY_STRING
);
265 wxFlushResources (void)
267 char nameBuffer
[512];
269 wxNode
*node
= wxResourceCache
.First ();
272 const char *file
= node
->GetKeyString();
273 // If file doesn't exist, create it first.
274 (void)GetResourcePath(nameBuffer
, file
, TRUE
);
276 XrmDatabase database
= (XrmDatabase
) node
->Data ();
277 XrmPutFileDatabase (database
, nameBuffer
);
278 XrmDestroyDatabase (database
);
279 wxNode
*next
= node
->Next ();
285 static XrmDatabase wxResourceDatabase
= 0;
287 void wxXMergeDatabases (wxApp
* theApp
, Display
* display
);
289 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, const wxString
& value
, const wxString
& file
)
293 (void) GetIniFile (buffer
, file
);
295 XrmDatabase database
;
296 wxNode
*node
= wxResourceCache
.Find (buffer
);
298 database
= (XrmDatabase
) node
->Data ();
301 database
= XrmGetFileDatabase (buffer
);
302 wxResourceCache
.Append (buffer
, (wxObject
*) database
);
306 strcpy (resName
, (const char*) section
);
307 strcat (resName
, ".");
308 strcat (resName
, (const char*) entry
);
310 XrmPutStringResource (&database
, resName
, value
);
314 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, float value
, const wxString
& file
)
317 sprintf(buf
, "%.4f", value
);
318 return wxWriteResource(section
, entry
, buf
, file
);
321 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, long value
, const wxString
& file
)
324 sprintf(buf
, "%ld", value
);
325 return wxWriteResource(section
, entry
, buf
, file
);
328 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, int value
, const wxString
& file
)
331 sprintf(buf
, "%d", value
);
332 return wxWriteResource(section
, entry
, buf
, file
);
335 bool wxGetResource(const wxString
& section
, const wxString
& entry
, char **value
, const wxString
& file
)
337 if (!wxResourceDatabase
)
339 Display
*display
= (Display
*) wxGetDisplay();
340 wxXMergeDatabases (wxTheApp
, display
);
343 XrmDatabase database
;
349 // Is this right? Trying to get it to look in the user's
350 // home directory instead of current directory -- JACS
351 (void) GetIniFile (buffer
, file
);
353 wxNode
*node
= wxResourceCache
.Find (buffer
);
355 database
= (XrmDatabase
) node
->Data ();
358 database
= XrmGetFileDatabase (buffer
);
359 wxResourceCache
.Append (buffer
, (wxObject
*) database
);
363 database
= wxResourceDatabase
;
368 strcpy (buf
, section
);
372 Bool success
= XrmGetResource (database
, buf
, "*", str_type
,
374 // Try different combinations of upper/lower case, just in case...
377 buf
[0] = (isupper (buf
[0]) ? tolower (buf
[0]) : toupper (buf
[0]));
378 success
= XrmGetResource (database
, buf
, "*", str_type
,
386 *value
= new char[xvalue
.size
+ 1];
387 strncpy (*value
, xvalue
.addr
, (int) xvalue
.size
);
393 bool wxGetResource(const wxString
& section
, const wxString
& entry
, float *value
, const wxString
& file
)
396 bool succ
= wxGetResource(section
, entry
, (char **)&s
, file
);
399 *value
= (float)strtod(s
, NULL
);
406 bool wxGetResource(const wxString
& section
, const wxString
& entry
, long *value
, const wxString
& file
)
409 bool succ
= wxGetResource(section
, entry
, (char **)&s
, file
);
412 *value
= strtol(s
, NULL
, 10);
419 bool wxGetResource(const wxString
& section
, const wxString
& entry
, int *value
, const wxString
& file
)
422 bool succ
= wxGetResource(section
, entry
, (char **)&s
, file
);
425 // Handle True, False here
426 // True, Yes, Enables, Set or Activated
427 if (*s
== 'T' || *s
== 'Y' || *s
== 'E' || *s
== 'S' || *s
== 'A')
429 // False, No, Disabled, Reset, Cleared, Deactivated
430 else if (*s
== 'F' || *s
== 'N' || *s
== 'D' || *s
== 'R' || *s
== 'C')
434 *value
= (int) strtol (s
, NULL
, 10);
442 void wxXMergeDatabases (wxApp
* theApp
, Display
* display
)
444 XrmDatabase homeDB
, serverDB
, applicationDB
;
445 char filenamebuf
[1024];
447 char *filename
= &filenamebuf
[0];
449 wxString classname
= theApp
->GetClassName();
451 (void) strcpy (name
, "/usr/lib/X11/app-defaults/");
452 (void) strcat (name
, (const char*) classname
);
454 /* Get application defaults file, if any */
455 applicationDB
= XrmGetFileDatabase (name
);
456 (void) XrmMergeDatabases (applicationDB
, &wxResourceDatabase
);
458 /* Merge server defaults, created by xrdb, loaded as a property of the root
459 * window when the server initializes and loaded into the display
460 * structure on XOpenDisplay;
461 * if not defined, use .Xdefaults
464 if (XResourceManagerString (display
) != NULL
)
466 serverDB
= XrmGetStringDatabase (XResourceManagerString (display
));
470 (void) GetIniFile (filename
, NULL
);
471 serverDB
= XrmGetFileDatabase (filename
);
473 XrmMergeDatabases (serverDB
, &wxResourceDatabase
);
475 /* Open XENVIRONMENT file, or if not defined, the .Xdefaults,
476 * and merge into existing database
479 if ((environment
= getenv ("XENVIRONMENT")) == NULL
)
482 environment
= GetIniFile (filename
, NULL
);
483 len
= strlen (environment
);
484 wxString hostname
= wxGetHostName();
486 strncat(environment
, hostname
, 1024 - len
);
488 homeDB
= XrmGetFileDatabase (environment
);
489 XrmMergeDatabases (homeDB
, &wxResourceDatabase
);
495 * Not yet used but may be useful.
499 wxSetDefaultResources (const Widget w
, const char **resourceSpec
, const char *name
)
502 Display
*dpy
= XtDisplay (w
); // Retrieve the display pointer
504 XrmDatabase rdb
= NULL
; // A resource data base
506 // Create an empty resource database
507 rdb
= XrmGetStringDatabase ("");
509 // Add the Component resources, prepending the name of the component
512 while (resourceSpec
[i
] != NULL
)
516 sprintf (buf
, "*%s%s", name
, resourceSpec
[i
++]);
517 XrmPutLineResource (&rdb
, buf
);
520 // Merge them into the Xt database, with lowest precendence
524 #if (XlibSpecificationRelease>=5)
525 XrmDatabase db
= XtDatabase (dpy
);
526 XrmCombineDatabase (rdb
, &db
, FALSE
);
528 XrmMergeDatabases (dpy
->db
, &rdb
);
536 #endif // wxUSE_RESOURCES
538 // ----------------------------------------------------------------------------
540 // ----------------------------------------------------------------------------
542 static int wxBusyCursorCount
= 0;
546 wxXSetBusyCursor (wxWindow
* win
, wxCursor
* cursor
)
548 Display
*display
= (Display
*) win
->GetXDisplay();
550 Window xwin
= (Window
) win
->GetXWindow();
554 XSetWindowAttributes attrs
;
558 attrs
.cursor
= (Cursor
) cursor
->GetXCursor(display
);
562 // Restore old cursor
563 if (win
->GetCursor().Ok())
564 attrs
.cursor
= (Cursor
) win
->GetCursor().GetXCursor(display
);
569 XChangeWindowAttributes (display
, xwin
, CWCursor
, &attrs
);
573 for(wxNode
*node
= win
->GetChildren().First (); node
; node
= node
->Next())
575 wxWindow
*child
= (wxWindow
*) node
->Data ();
576 wxXSetBusyCursor (child
, cursor
);
580 // Set the cursor to the busy cursor for all windows
581 void wxBeginBusyCursor(wxCursor
*cursor
)
584 if (wxBusyCursorCount
== 1)
586 for(wxNode
*node
= wxTopLevelWindows
.First (); node
; node
= node
->Next())
588 wxWindow
*win
= (wxWindow
*) node
->Data ();
589 wxXSetBusyCursor (win
, cursor
);
594 // Restore cursor to normal
595 void wxEndBusyCursor()
597 if (wxBusyCursorCount
== 0)
601 if (wxBusyCursorCount
== 0)
603 for(wxNode
*node
= wxTopLevelWindows
.First (); node
; node
= node
->Next())
605 wxWindow
*win
= (wxWindow
*) node
->Data ();
606 wxXSetBusyCursor (win
, NULL
);
611 // TRUE if we're between the above two calls
614 return (wxBusyCursorCount
> 0);
617 // ----------------------------------------------------------------------------
619 // ----------------------------------------------------------------------------
621 void wxGetMousePosition( int* x
, int* y
)
625 XQueryPointer((Display
*) wxGetDisplay(),
626 DefaultRootWindow((Display
*) wxGetDisplay()),
628 &(xev
.x_root
), &(xev
.y_root
),
635 // Return TRUE if we have a colour display
636 bool wxColourDisplay()
638 return wxDisplayDepth() > 1;
641 // Returns depth of screen
644 Display
*dpy
= (Display
*) wxGetDisplay();
646 return DefaultDepth (dpy
, DefaultScreen (dpy
));
649 // Get size of display
650 void wxDisplaySize(int *width
, int *height
)
652 Display
*dpy
= (Display
*) wxGetDisplay();
655 *width
= DisplayWidth (dpy
, DefaultScreen (dpy
));
657 *height
= DisplayHeight (dpy
, DefaultScreen (dpy
));
660 void wxDisplaySizeMM(int *width
, int *height
)
662 Display
*dpy
= (Display
*) wxGetDisplay();
665 *width
= DisplayWidthMM(dpy
, DefaultScreen (dpy
));
667 *height
= DisplayHeightMM(dpy
, DefaultScreen (dpy
));
670 void wxClientDisplayRect(int *x
, int *y
, int *width
, int *height
)
672 // This is supposed to return desktop dimensions minus any window
673 // manager panels, menus, taskbars, etc. If there is a way to do that
674 // for this platform please fix this function, otherwise it defaults
675 // to the entire desktop.
678 wxDisplaySize(width
, height
);
682 // Configurable display in X11
683 static WXDisplay
*gs_currentDisplay
= NULL
;
684 static wxString gs_displayName
;
686 WXDisplay
*wxGetDisplay()
688 if (gs_currentDisplay
)
689 return gs_currentDisplay
;
691 return wxTheApp
->GetInitialDisplay();
693 return (WXDisplay
*) NULL
;
696 bool wxSetDisplay(const wxString
& display_name
)
698 gs_displayName
= display_name
;
700 if ( display_name
.IsEmpty() )
702 gs_currentDisplay
= NULL
;
710 Display
* display
= XOpenDisplay((const char*) display_name
);
714 gs_currentDisplay
= (WXDisplay
*) display
;
722 wxString
wxGetDisplayName()
724 return gs_displayName
;
727 wxWindow
* wxFindWindowAtPoint(const wxPoint
& pt
)
729 return wxGenericFindWindowAtPoint(pt
);
732 // ----------------------------------------------------------------------------
734 // ----------------------------------------------------------------------------
736 // Find the letter corresponding to the mnemonic, for Motif
737 char wxFindMnemonic (const char *s
)
740 int len
= strlen (s
);
742 for (i
= 0; i
< len
; i
++)
746 // Carefully handle &&
747 if ((i
+ 1) <= len
&& s
[i
+ 1] == '&')
759 char * wxFindAccelerator (const char *s
)
761 // VZ: this function returns incorrect keysym which completely breaks kbd
766 // The accelerator text is after the \t char.
767 while (*s
&& *s
!= '\t')
773 Now we need to format it as X standard:
778 Ctrl+N --> Ctrl<Key>N
780 Ctrl+Shift+A --> Ctrl Shift<Key>A
785 char *tmp
= copystring (s
);
791 while (*p
&& *p
!= '+')
797 strcat (wxBuffer
, " ");
798 if (strcmp (s
, "Alt"))
799 strcat (wxBuffer
, s
);
801 strcat (wxBuffer
, "Meta");
806 strcat (wxBuffer
, "<Key>");
807 strcat (wxBuffer
, s
);
816 XmString
wxFindAcceleratorText (const char *s
)
818 // VZ: this function returns incorrect keysym which completely breaks kbd
823 // The accelerator text is after the \t char.
824 while (*s
&& *s
!= '\t')
829 XmString text
= XmStringCreateSimple ((char *)s
);
834 // ----------------------------------------------------------------------------
835 // keycode translations
836 // ----------------------------------------------------------------------------
838 #include <X11/keysym.h>
840 // FIXME what about tables??
842 int wxCharCodeXToWX(KeySym keySym
)
849 id
= WXK_SHIFT
; break;
852 id
= WXK_CONTROL
; break;
854 id
= WXK_BACK
; break;
856 id
= WXK_DELETE
; break;
858 id
= WXK_CLEAR
; break;
864 id
= WXK_RETURN
; break;
866 id
= WXK_ESCAPE
; break;
869 id
= WXK_PAUSE
; break;
871 id
= WXK_NUMLOCK
; break;
873 id
= WXK_SCROLL
; break;
876 id
= WXK_HOME
; break;
880 id
= WXK_LEFT
; break;
882 id
= WXK_RIGHT
; break;
886 id
= WXK_DOWN
; break;
888 id
= WXK_NEXT
; break;
890 id
= WXK_PRIOR
; break;
892 id
= WXK_MENU
; break;
894 id
= WXK_SELECT
; break;
896 id
= WXK_CANCEL
; break;
898 id
= WXK_PRINT
; break;
900 id
= WXK_EXECUTE
; break;
902 id
= WXK_INSERT
; break;
904 id
= WXK_HELP
; break;
907 id
= WXK_MULTIPLY
; break;
911 id
= WXK_SUBTRACT
; break;
913 id
= WXK_DIVIDE
; break;
915 id
= WXK_DECIMAL
; break;
923 id
= WXK_RETURN
; break;
925 id
= WXK_NUMPAD0
; break;
927 id
= WXK_NUMPAD1
; break;
929 id
= WXK_NUMPAD2
; break;
931 id
= WXK_NUMPAD3
; break;
933 id
= WXK_NUMPAD4
; break;
935 id
= WXK_NUMPAD5
; break;
937 id
= WXK_NUMPAD6
; break;
939 id
= WXK_NUMPAD7
; break;
941 id
= WXK_NUMPAD8
; break;
943 id
= WXK_NUMPAD9
; break;
993 id
= (keySym
<= 255) ? (int)keySym
: -1;
999 KeySym
wxCharCodeWXToX(int id
)
1005 case WXK_CANCEL
: keySym
= XK_Cancel
; break;
1006 case WXK_BACK
: keySym
= XK_BackSpace
; break;
1007 case WXK_TAB
: keySym
= XK_Tab
; break;
1008 case WXK_CLEAR
: keySym
= XK_Clear
; break;
1009 case WXK_RETURN
: keySym
= XK_Return
; break;
1010 case WXK_SHIFT
: keySym
= XK_Shift_L
; break;
1011 case WXK_CONTROL
: keySym
= XK_Control_L
; break;
1012 case WXK_MENU
: keySym
= XK_Menu
; break;
1013 case WXK_PAUSE
: keySym
= XK_Pause
; break;
1014 case WXK_ESCAPE
: keySym
= XK_Escape
; break;
1015 case WXK_SPACE
: keySym
= ' '; break;
1016 case WXK_PRIOR
: keySym
= XK_Prior
; break;
1017 case WXK_NEXT
: keySym
= XK_Next
; break;
1018 case WXK_END
: keySym
= XK_End
; break;
1019 case WXK_HOME
: keySym
= XK_Home
; break;
1020 case WXK_LEFT
: keySym
= XK_Left
; break;
1021 case WXK_UP
: keySym
= XK_Up
; break;
1022 case WXK_RIGHT
: keySym
= XK_Right
; break;
1023 case WXK_DOWN
: keySym
= XK_Down
; break;
1024 case WXK_SELECT
: keySym
= XK_Select
; break;
1025 case WXK_PRINT
: keySym
= XK_Print
; break;
1026 case WXK_EXECUTE
: keySym
= XK_Execute
; break;
1027 case WXK_INSERT
: keySym
= XK_Insert
; break;
1028 case WXK_DELETE
: keySym
= XK_Delete
; break;
1029 case WXK_HELP
: keySym
= XK_Help
; break;
1030 case WXK_NUMPAD0
: keySym
= XK_KP_0
; break;
1031 case WXK_NUMPAD1
: keySym
= XK_KP_1
; break;
1032 case WXK_NUMPAD2
: keySym
= XK_KP_2
; break;
1033 case WXK_NUMPAD3
: keySym
= XK_KP_3
; break;
1034 case WXK_NUMPAD4
: keySym
= XK_KP_4
; break;
1035 case WXK_NUMPAD5
: keySym
= XK_KP_5
; break;
1036 case WXK_NUMPAD6
: keySym
= XK_KP_6
; break;
1037 case WXK_NUMPAD7
: keySym
= XK_KP_7
; break;
1038 case WXK_NUMPAD8
: keySym
= XK_KP_8
; break;
1039 case WXK_NUMPAD9
: keySym
= XK_KP_9
; break;
1040 case WXK_MULTIPLY
: keySym
= XK_KP_Multiply
; break;
1041 case WXK_ADD
: keySym
= XK_KP_Add
; break;
1042 case WXK_SUBTRACT
: keySym
= XK_KP_Subtract
; break;
1043 case WXK_DECIMAL
: keySym
= XK_KP_Decimal
; break;
1044 case WXK_DIVIDE
: keySym
= XK_KP_Divide
; break;
1045 case WXK_F1
: keySym
= XK_F1
; break;
1046 case WXK_F2
: keySym
= XK_F2
; break;
1047 case WXK_F3
: keySym
= XK_F3
; break;
1048 case WXK_F4
: keySym
= XK_F4
; break;
1049 case WXK_F5
: keySym
= XK_F5
; break;
1050 case WXK_F6
: keySym
= XK_F6
; break;
1051 case WXK_F7
: keySym
= XK_F7
; break;
1052 case WXK_F8
: keySym
= XK_F8
; break;
1053 case WXK_F9
: keySym
= XK_F9
; break;
1054 case WXK_F10
: keySym
= XK_F10
; break;
1055 case WXK_F11
: keySym
= XK_F11
; break;
1056 case WXK_F12
: keySym
= XK_F12
; break;
1057 case WXK_F13
: keySym
= XK_F13
; break;
1058 case WXK_F14
: keySym
= XK_F14
; break;
1059 case WXK_F15
: keySym
= XK_F15
; break;
1060 case WXK_F16
: keySym
= XK_F16
; break;
1061 case WXK_F17
: keySym
= XK_F17
; break;
1062 case WXK_F18
: keySym
= XK_F18
; break;
1063 case WXK_F19
: keySym
= XK_F19
; break;
1064 case WXK_F20
: keySym
= XK_F20
; break;
1065 case WXK_F21
: keySym
= XK_F21
; break;
1066 case WXK_F22
: keySym
= XK_F22
; break;
1067 case WXK_F23
: keySym
= XK_F23
; break;
1068 case WXK_F24
: keySym
= XK_F24
; break;
1069 case WXK_NUMLOCK
: keySym
= XK_Num_Lock
; break;
1070 case WXK_SCROLL
: keySym
= XK_Scroll_Lock
; break;
1071 default: keySym
= id
<= 255 ? (KeySym
)id
: 0;
1077 // ----------------------------------------------------------------------------
1078 // Some colour manipulation routines
1079 // ----------------------------------------------------------------------------
1081 void wxHSVToXColor(wxHSV
*hsv
,XColor
*rgb
)
1086 int r
= 0, g
= 0, b
= 0;
1089 s
= (s
* wxMAX_RGB
) / wxMAX_SV
;
1090 v
= (v
* wxMAX_RGB
) / wxMAX_SV
;
1091 if (h
== 360) h
= 0;
1092 if (s
== 0) { h
= 0; r
= g
= b
= v
; }
1095 p
= v
* (wxMAX_RGB
- s
) / wxMAX_RGB
;
1096 q
= v
* (wxMAX_RGB
- s
* f
/ 60) / wxMAX_RGB
;
1097 t
= v
* (wxMAX_RGB
- s
* (60 - f
) / 60) / wxMAX_RGB
;
1100 case 0: r
= v
, g
= t
, b
= p
; break;
1101 case 1: r
= q
, g
= v
, b
= p
; break;
1102 case 2: r
= p
, g
= v
, b
= t
; break;
1103 case 3: r
= p
, g
= q
, b
= v
; break;
1104 case 4: r
= t
, g
= p
, b
= v
; break;
1105 case 5: r
= v
, g
= p
, b
= q
; break;
1108 rgb
->green
= g
<< 8;
1112 void wxXColorToHSV(wxHSV
*hsv
,XColor
*rgb
)
1114 int r
= rgb
->red
>> 8;
1115 int g
= rgb
->green
>> 8;
1116 int b
= rgb
->blue
>> 8;
1117 int maxv
= wxMax3(r
, g
, b
);
1118 int minv
= wxMin3(r
, g
, b
);
1121 if (maxv
) s
= (maxv
- minv
) * wxMAX_RGB
/ maxv
;
1126 int rc
, gc
, bc
, hex
= 0;
1127 rc
= (maxv
- r
) * wxMAX_RGB
/ (maxv
- minv
);
1128 gc
= (maxv
- g
) * wxMAX_RGB
/ (maxv
- minv
);
1129 bc
= (maxv
- b
) * wxMAX_RGB
/ (maxv
- minv
);
1130 if (r
== maxv
) { h
= bc
- gc
, hex
= 0; }
1131 else if (g
== maxv
) { h
= rc
- bc
, hex
= 2; }
1132 else if (b
== maxv
) { h
= gc
- rc
, hex
= 4; }
1133 h
= hex
* 60 + (h
* 60 / wxMAX_RGB
);
1134 if (h
< 0) h
+= 360;
1137 hsv
->s
= (s
* wxMAX_SV
) / wxMAX_RGB
;
1138 hsv
->v
= (v
* wxMAX_SV
) / wxMAX_RGB
;
1141 void wxAllocNearestColor(Display
*d
,Colormap cmp
,XColor
*xc
)
1145 int screen
= DefaultScreen(d
);
1146 int num_colors
= DisplayCells(d
,screen
);
1148 XColor
*color_defs
= new XColor
[num_colors
];
1149 for(llp
= 0;llp
< num_colors
;llp
++) color_defs
[llp
].pixel
= llp
;
1150 XQueryColors(d
,cmp
,color_defs
,num_colors
);
1152 wxHSV hsv_defs
, hsv
;
1153 wxXColorToHSV(&hsv
,xc
);
1155 int diff
, min_diff
= 0, pixel
= 0;
1157 for(llp
= 0;llp
< num_colors
;llp
++)
1159 wxXColorToHSV(&hsv_defs
,&color_defs
[llp
]);
1160 diff
= wxSIGN(wxH_WEIGHT
* (hsv
.h
- hsv_defs
.h
)) +
1161 wxSIGN(wxS_WEIGHT
* (hsv
.s
- hsv_defs
.s
)) +
1162 wxSIGN(wxV_WEIGHT
* (hsv
.v
- hsv_defs
.v
));
1163 if (llp
== 0) min_diff
= diff
;
1164 if (min_diff
> diff
) { min_diff
= diff
; pixel
= llp
; }
1165 if (min_diff
== 0) break;
1168 xc
-> red
= color_defs
[pixel
].red
;
1169 xc
-> green
= color_defs
[pixel
].green
;
1170 xc
-> blue
= color_defs
[pixel
].blue
;
1171 xc
-> flags
= DoRed
| DoGreen
| DoBlue
;
1174 if (!XAllocColor(d,cmp,xc))
1175 cout << "wxAllocNearestColor : Warning : Cannot find nearest color !\n";
1178 delete[] color_defs
;
1181 void wxAllocColor(Display
*d
,Colormap cmp
,XColor
*xc
)
1183 if (!XAllocColor(d
,cmp
,xc
))
1185 // cout << "wxAllocColor : Warning : Can not allocate color, attempt find nearest !\n";
1186 wxAllocNearestColor(d
,cmp
,xc
);