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
53 #pragma message enable nosimpint
56 #include "wx/unix/execute.h"
59 #include "wx/motif/private.h"
63 #include "wx/x11/private.h"
66 #include "X11/Xresource.h"
67 #include "X11/Xutil.h"
69 // ----------------------------------------------------------------------------
71 // ----------------------------------------------------------------------------
73 // Yuck this is really BOTH site and platform dependent
74 // so we should use some other strategy!
76 #define DEFAULT_XRESOURCE_DIR "/usr/openwin/lib/app-defaults"
78 #define DEFAULT_XRESOURCE_DIR "/usr/lib/X11/app-defaults"
81 static char *GetIniFile (char *dest
, const char *filename
);
83 // ============================================================================
85 // ============================================================================
87 // ----------------------------------------------------------------------------
88 // async event processing
89 // ----------------------------------------------------------------------------
91 // Consume all events until no more left
94 Display
*display
= (Display
*) wxGetDisplay();
96 XSync (display
, FALSE
);
99 // XtAppPending returns availability of events AND timers/inputs, which
100 // are processed via callbacks, so XtAppNextEvent will not return if
101 // there are no events. So added '& XtIMXEvent' - Sergey.
102 while (XtAppPending ((XtAppContext
) wxTheApp
->GetAppContext()) & XtIMXEvent
)
104 XFlush (XtDisplay ((Widget
) wxTheApp
->GetTopLevelWidget()));
105 // Jan Lessner: works better when events are non-X events
106 XtAppProcessEvent((XtAppContext
) wxTheApp
->GetAppContext(), XtIMXEvent
);
115 // Check whether this window wants to process messages, e.g. Stop button
116 // in long calculations.
117 bool wxCheckForInterrupt(wxWindow
*wnd
)
120 wxCHECK_MSG( wnd
, FALSE
, "NULL window in wxCheckForInterrupt" );
122 Display
*dpy
=(Display
*) wnd
->GetXDisplay();
123 Window win
=(Window
) wnd
->GetXWindow();
126 if (wnd
->GetMainWidget())
128 XmUpdateDisplay((Widget
)(wnd
->GetMainWidget()));
131 bool hadEvents
= FALSE
;
132 while( XCheckMaskEvent(dpy
,
133 ButtonPressMask
|ButtonReleaseMask
|ButtonMotionMask
|
134 PointerMotionMask
|KeyPressMask
|KeyReleaseMask
,
137 if ( event
.xany
.window
== win
)
141 XtDispatchEvent(&event
);
147 wxASSERT_MSG(FALSE
, "wxCheckForInterrupt not yet implemented.");
152 // ----------------------------------------------------------------------------
154 // ----------------------------------------------------------------------------
156 static void xt_notify_end_process(XtPointer data
, int *WXUNUSED(fid
),
159 wxEndProcessData
*proc_data
= (wxEndProcessData
*)data
;
161 wxHandleProcessTermination(proc_data
);
163 // VZ: I think they should be the same...
164 wxASSERT( (int)*id
== proc_data
->tag
);
169 int wxAddProcessCallback(wxEndProcessData
*proc_data
, int fd
)
171 XtInputId id
= XtAppAddInput((XtAppContext
) wxTheApp
->GetAppContext(),
173 (XtPointer
*) XtInputReadMask
,
174 (XtInputCallbackProc
) xt_notify_end_process
,
175 (XtPointer
) proc_data
);
181 // ----------------------------------------------------------------------------
183 // ----------------------------------------------------------------------------
188 // Use current setting for the bell
189 XBell ((Display
*) wxGetDisplay(), 0);
192 int wxGetOsVersion(int *majorVsn
, int *minorVsn
)
196 // This code is WRONG!! Does NOT return the
197 // Motif version of the libs but the X protocol
199 Display
*display
= XtDisplay ((Widget
) wxTheApp
->GetTopLevelWidget());
201 *majorVsn
= ProtocolVersion (display
);
203 *minorVsn
= ProtocolRevision (display
);
216 // ----------------------------------------------------------------------------
217 // Reading and writing resources (eg WIN.INI, .Xdefaults)
218 // ----------------------------------------------------------------------------
220 // Read $HOME for what it says is home, if not
221 // read $USER or $LOGNAME for user name else determine
222 // the Real User, then determine the Real home dir.
223 static char * GetIniFile (char *dest
, const char *filename
)
226 if (filename
&& wxIsAbsolutePath(filename
))
228 strcpy(dest
, filename
);
230 else if ((home
= wxGetUserHome("")) != NULL
)
233 if (dest
[strlen(dest
) - 1] != '/')
235 if (filename
== NULL
)
237 if ((filename
= getenv ("XENVIRONMENT")) == NULL
)
238 filename
= ".Xdefaults";
240 else if (*filename
!= '.')
242 strcat (dest
, filename
);
252 static char *GetResourcePath(char *buf
, const char *name
, bool create
= FALSE
)
254 if (create
&& wxFileExists (name
) ) {
256 return buf
; // Exists so ...
262 // Put in standard place for resource files if not absolute
263 strcpy (buf
, DEFAULT_XRESOURCE_DIR
);
265 strcat (buf
, (const char*) wxFileNameFromPath (name
));
269 // Touch the file to create it
270 FILE *fd
= fopen (buf
, "w");
277 * We have a cache for writing different resource files,
278 * which will only get flushed when we call wxFlushResources().
279 * Build up a list of resource databases waiting to be written.
283 wxList
wxResourceCache (wxKEY_STRING
);
286 wxFlushResources (void)
288 char nameBuffer
[512];
290 wxNode
*node
= wxResourceCache
.First ();
293 const char *file
= node
->GetKeyString();
294 // If file doesn't exist, create it first.
295 (void)GetResourcePath(nameBuffer
, file
, TRUE
);
297 XrmDatabase database
= (XrmDatabase
) node
->Data ();
298 XrmPutFileDatabase (database
, nameBuffer
);
299 XrmDestroyDatabase (database
);
300 wxNode
*next
= node
->Next ();
306 static XrmDatabase wxResourceDatabase
= 0;
308 void wxXMergeDatabases (wxApp
* theApp
, Display
* display
);
310 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, const wxString
& value
, const wxString
& file
)
314 (void) GetIniFile (buffer
, file
);
316 XrmDatabase database
;
317 wxNode
*node
= wxResourceCache
.Find (buffer
);
319 database
= (XrmDatabase
) node
->Data ();
322 database
= XrmGetFileDatabase (buffer
);
323 wxResourceCache
.Append (buffer
, (wxObject
*) database
);
327 strcpy (resName
, (const char*) section
);
328 strcat (resName
, ".");
329 strcat (resName
, (const char*) entry
);
331 XrmPutStringResource (&database
, resName
, value
);
335 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, float value
, const wxString
& file
)
338 sprintf(buf
, "%.4f", value
);
339 return wxWriteResource(section
, entry
, buf
, file
);
342 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, long value
, const wxString
& file
)
345 sprintf(buf
, "%ld", value
);
346 return wxWriteResource(section
, entry
, buf
, file
);
349 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, int value
, const wxString
& file
)
352 sprintf(buf
, "%d", value
);
353 return wxWriteResource(section
, entry
, buf
, file
);
356 bool wxGetResource(const wxString
& section
, const wxString
& entry
, char **value
, const wxString
& file
)
358 if (!wxResourceDatabase
)
360 Display
*display
= (Display
*) wxGetDisplay();
361 wxXMergeDatabases (wxTheApp
, display
);
364 XrmDatabase database
;
370 // Is this right? Trying to get it to look in the user's
371 // home directory instead of current directory -- JACS
372 (void) GetIniFile (buffer
, file
);
374 wxNode
*node
= wxResourceCache
.Find (buffer
);
376 database
= (XrmDatabase
) node
->Data ();
379 database
= XrmGetFileDatabase (buffer
);
380 wxResourceCache
.Append (buffer
, (wxObject
*) database
);
384 database
= wxResourceDatabase
;
389 strcpy (buf
, section
);
393 Bool success
= XrmGetResource (database
, buf
, "*", str_type
,
395 // Try different combinations of upper/lower case, just in case...
398 buf
[0] = (isupper (buf
[0]) ? tolower (buf
[0]) : toupper (buf
[0]));
399 success
= XrmGetResource (database
, buf
, "*", str_type
,
407 *value
= new char[xvalue
.size
+ 1];
408 strncpy (*value
, xvalue
.addr
, (int) xvalue
.size
);
414 bool wxGetResource(const wxString
& section
, const wxString
& entry
, float *value
, const wxString
& file
)
417 bool succ
= wxGetResource(section
, entry
, (char **)&s
, file
);
420 *value
= (float)strtod(s
, NULL
);
427 bool wxGetResource(const wxString
& section
, const wxString
& entry
, long *value
, const wxString
& file
)
430 bool succ
= wxGetResource(section
, entry
, (char **)&s
, file
);
433 *value
= strtol(s
, NULL
, 10);
440 bool wxGetResource(const wxString
& section
, const wxString
& entry
, int *value
, const wxString
& file
)
443 bool succ
= wxGetResource(section
, entry
, (char **)&s
, file
);
446 // Handle True, False here
447 // True, Yes, Enables, Set or Activated
448 if (*s
== 'T' || *s
== 'Y' || *s
== 'E' || *s
== 'S' || *s
== 'A')
450 // False, No, Disabled, Reset, Cleared, Deactivated
451 else if (*s
== 'F' || *s
== 'N' || *s
== 'D' || *s
== 'R' || *s
== 'C')
455 *value
= (int) strtol (s
, NULL
, 10);
463 void wxXMergeDatabases (wxApp
* theApp
, Display
* display
)
465 XrmDatabase homeDB
, serverDB
, applicationDB
;
466 char filenamebuf
[1024];
468 char *filename
= &filenamebuf
[0];
470 wxString classname
= theApp
->GetClassName();
472 (void) strcpy (name
, "/usr/lib/X11/app-defaults/");
473 (void) strcat (name
, (const char*) classname
);
475 /* Get application defaults file, if any */
476 applicationDB
= XrmGetFileDatabase (name
);
477 (void) XrmMergeDatabases (applicationDB
, &wxResourceDatabase
);
479 /* Merge server defaults, created by xrdb, loaded as a property of the root
480 * window when the server initializes and loaded into the display
481 * structure on XOpenDisplay;
482 * if not defined, use .Xdefaults
485 if (XResourceManagerString (display
) != NULL
)
487 serverDB
= XrmGetStringDatabase (XResourceManagerString (display
));
491 (void) GetIniFile (filename
, NULL
);
492 serverDB
= XrmGetFileDatabase (filename
);
494 XrmMergeDatabases (serverDB
, &wxResourceDatabase
);
496 /* Open XENVIRONMENT file, or if not defined, the .Xdefaults,
497 * and merge into existing database
500 if ((environment
= getenv ("XENVIRONMENT")) == NULL
)
503 environment
= GetIniFile (filename
, NULL
);
504 len
= strlen (environment
);
505 wxString hostname
= wxGetHostName();
507 strncat(environment
, hostname
, 1024 - len
);
509 homeDB
= XrmGetFileDatabase (environment
);
510 XrmMergeDatabases (homeDB
, &wxResourceDatabase
);
516 * Not yet used but may be useful.
520 wxSetDefaultResources (const Widget w
, const char **resourceSpec
, const char *name
)
523 Display
*dpy
= XtDisplay (w
); // Retrieve the display pointer
525 XrmDatabase rdb
= NULL
; // A resource data base
527 // Create an empty resource database
528 rdb
= XrmGetStringDatabase ("");
530 // Add the Component resources, prepending the name of the component
533 while (resourceSpec
[i
] != NULL
)
537 sprintf (buf
, "*%s%s", name
, resourceSpec
[i
++]);
538 XrmPutLineResource (&rdb
, buf
);
541 // Merge them into the Xt database, with lowest precendence
545 #if (XlibSpecificationRelease>=5)
546 XrmDatabase db
= XtDatabase (dpy
);
547 XrmCombineDatabase (rdb
, &db
, FALSE
);
549 XrmMergeDatabases (dpy
->db
, &rdb
);
557 #endif // wxUSE_RESOURCES
559 // ----------------------------------------------------------------------------
561 // ----------------------------------------------------------------------------
563 void wxGetMousePosition( int* x
, int* y
)
567 XQueryPointer((Display
*) wxGetDisplay(),
568 DefaultRootWindow((Display
*) wxGetDisplay()),
570 &(xev
.x_root
), &(xev
.y_root
),
577 // Return TRUE if we have a colour display
578 bool wxColourDisplay()
580 return wxDisplayDepth() > 1;
583 // Returns depth of screen
586 Display
*dpy
= (Display
*) wxGetDisplay();
588 return DefaultDepth (dpy
, DefaultScreen (dpy
));
591 // Get size of display
592 void wxDisplaySize(int *width
, int *height
)
594 Display
*dpy
= (Display
*) wxGetDisplay();
597 *width
= DisplayWidth (dpy
, DefaultScreen (dpy
));
599 *height
= DisplayHeight (dpy
, DefaultScreen (dpy
));
602 void wxDisplaySizeMM(int *width
, int *height
)
604 Display
*dpy
= (Display
*) wxGetDisplay();
607 *width
= DisplayWidthMM(dpy
, DefaultScreen (dpy
));
609 *height
= DisplayHeightMM(dpy
, DefaultScreen (dpy
));
612 void wxClientDisplayRect(int *x
, int *y
, int *width
, int *height
)
614 // This is supposed to return desktop dimensions minus any window
615 // manager panels, menus, taskbars, etc. If there is a way to do that
616 // for this platform please fix this function, otherwise it defaults
617 // to the entire desktop.
620 wxDisplaySize(width
, height
);
624 // Configurable display in wxX11 and wxMotif
625 static WXDisplay
*gs_currentDisplay
= NULL
;
626 static wxString gs_displayName
;
628 WXDisplay
*wxGetDisplay()
630 if (gs_currentDisplay
)
631 return gs_currentDisplay
;
633 if (wxTheApp
&& wxTheApp
->GetTopLevelWidget())
634 return XtDisplay ((Widget
) wxTheApp
->GetTopLevelWidget());
636 return wxTheApp
->GetInitialDisplay();
640 return wxApp::GetDisplay();
644 bool wxSetDisplay(const wxString
& display_name
)
646 gs_displayName
= display_name
;
648 if ( display_name
.IsEmpty() )
650 gs_currentDisplay
= NULL
;
659 Display
*display
= XtOpenDisplay((XtAppContext
) wxTheApp
->GetAppContext(),
660 (const char*) display_name
,
661 (const char*) wxTheApp
->GetAppName(),
662 (const char*) wxTheApp
->GetClassName(),
664 #if XtSpecificationRelease < 5
673 gs_currentDisplay
= (WXDisplay
*) display
;
680 Display
* display
= XOpenDisplay((const char*) display_name
);
684 gs_currentDisplay
= (WXDisplay
*) display
;
693 wxString
wxGetDisplayName()
695 return gs_displayName
;
698 wxWindow
* wxFindWindowAtPoint(const wxPoint
& pt
)
700 return wxGenericFindWindowAtPoint(pt
);
703 // ----------------------------------------------------------------------------
704 // keycode translations
705 // ----------------------------------------------------------------------------
707 #include <X11/keysym.h>
709 // FIXME what about tables??
711 int wxCharCodeXToWX(KeySym keySym
)
718 id
= WXK_SHIFT
; break;
721 id
= WXK_CONTROL
; break;
723 id
= WXK_BACK
; break;
725 id
= WXK_DELETE
; break;
727 id
= WXK_CLEAR
; break;
733 id
= WXK_RETURN
; break;
735 id
= WXK_ESCAPE
; break;
738 id
= WXK_PAUSE
; break;
740 id
= WXK_NUMLOCK
; break;
742 id
= WXK_SCROLL
; break;
745 id
= WXK_HOME
; break;
749 id
= WXK_LEFT
; break;
751 id
= WXK_RIGHT
; break;
755 id
= WXK_DOWN
; break;
757 id
= WXK_NEXT
; break;
759 id
= WXK_PRIOR
; break;
761 id
= WXK_MENU
; break;
763 id
= WXK_SELECT
; break;
765 id
= WXK_CANCEL
; break;
767 id
= WXK_PRINT
; break;
769 id
= WXK_EXECUTE
; break;
771 id
= WXK_INSERT
; break;
773 id
= WXK_HELP
; break;
776 id
= WXK_MULTIPLY
; break;
780 id
= WXK_SUBTRACT
; break;
782 id
= WXK_DIVIDE
; break;
784 id
= WXK_DECIMAL
; break;
792 id
= WXK_RETURN
; break;
794 id
= WXK_NUMPAD0
; break;
796 id
= WXK_NUMPAD1
; break;
798 id
= WXK_NUMPAD2
; break;
800 id
= WXK_NUMPAD3
; break;
802 id
= WXK_NUMPAD4
; break;
804 id
= WXK_NUMPAD5
; break;
806 id
= WXK_NUMPAD6
; break;
808 id
= WXK_NUMPAD7
; break;
810 id
= WXK_NUMPAD8
; break;
812 id
= WXK_NUMPAD9
; break;
862 id
= (keySym
<= 255) ? (int)keySym
: -1;
868 KeySym
wxCharCodeWXToX(int id
)
874 case WXK_CANCEL
: keySym
= XK_Cancel
; break;
875 case WXK_BACK
: keySym
= XK_BackSpace
; break;
876 case WXK_TAB
: keySym
= XK_Tab
; break;
877 case WXK_CLEAR
: keySym
= XK_Clear
; break;
878 case WXK_RETURN
: keySym
= XK_Return
; break;
879 case WXK_SHIFT
: keySym
= XK_Shift_L
; break;
880 case WXK_CONTROL
: keySym
= XK_Control_L
; break;
881 case WXK_MENU
: keySym
= XK_Menu
; break;
882 case WXK_PAUSE
: keySym
= XK_Pause
; break;
883 case WXK_ESCAPE
: keySym
= XK_Escape
; break;
884 case WXK_SPACE
: keySym
= ' '; break;
885 case WXK_PRIOR
: keySym
= XK_Prior
; break;
886 case WXK_NEXT
: keySym
= XK_Next
; break;
887 case WXK_END
: keySym
= XK_End
; break;
888 case WXK_HOME
: keySym
= XK_Home
; break;
889 case WXK_LEFT
: keySym
= XK_Left
; break;
890 case WXK_UP
: keySym
= XK_Up
; break;
891 case WXK_RIGHT
: keySym
= XK_Right
; break;
892 case WXK_DOWN
: keySym
= XK_Down
; break;
893 case WXK_SELECT
: keySym
= XK_Select
; break;
894 case WXK_PRINT
: keySym
= XK_Print
; break;
895 case WXK_EXECUTE
: keySym
= XK_Execute
; break;
896 case WXK_INSERT
: keySym
= XK_Insert
; break;
897 case WXK_DELETE
: keySym
= XK_Delete
; break;
898 case WXK_HELP
: keySym
= XK_Help
; break;
899 case WXK_NUMPAD0
: keySym
= XK_KP_0
; break;
900 case WXK_NUMPAD1
: keySym
= XK_KP_1
; break;
901 case WXK_NUMPAD2
: keySym
= XK_KP_2
; break;
902 case WXK_NUMPAD3
: keySym
= XK_KP_3
; break;
903 case WXK_NUMPAD4
: keySym
= XK_KP_4
; break;
904 case WXK_NUMPAD5
: keySym
= XK_KP_5
; break;
905 case WXK_NUMPAD6
: keySym
= XK_KP_6
; break;
906 case WXK_NUMPAD7
: keySym
= XK_KP_7
; break;
907 case WXK_NUMPAD8
: keySym
= XK_KP_8
; break;
908 case WXK_NUMPAD9
: keySym
= XK_KP_9
; break;
909 case WXK_MULTIPLY
: keySym
= XK_KP_Multiply
; break;
910 case WXK_ADD
: keySym
= XK_KP_Add
; break;
911 case WXK_SUBTRACT
: keySym
= XK_KP_Subtract
; break;
912 case WXK_DECIMAL
: keySym
= XK_KP_Decimal
; break;
913 case WXK_DIVIDE
: keySym
= XK_KP_Divide
; break;
914 case WXK_F1
: keySym
= XK_F1
; break;
915 case WXK_F2
: keySym
= XK_F2
; break;
916 case WXK_F3
: keySym
= XK_F3
; break;
917 case WXK_F4
: keySym
= XK_F4
; break;
918 case WXK_F5
: keySym
= XK_F5
; break;
919 case WXK_F6
: keySym
= XK_F6
; break;
920 case WXK_F7
: keySym
= XK_F7
; break;
921 case WXK_F8
: keySym
= XK_F8
; break;
922 case WXK_F9
: keySym
= XK_F9
; break;
923 case WXK_F10
: keySym
= XK_F10
; break;
924 case WXK_F11
: keySym
= XK_F11
; break;
925 case WXK_F12
: keySym
= XK_F12
; break;
926 case WXK_F13
: keySym
= XK_F13
; break;
927 case WXK_F14
: keySym
= XK_F14
; break;
928 case WXK_F15
: keySym
= XK_F15
; break;
929 case WXK_F16
: keySym
= XK_F16
; break;
930 case WXK_F17
: keySym
= XK_F17
; break;
931 case WXK_F18
: keySym
= XK_F18
; break;
932 case WXK_F19
: keySym
= XK_F19
; break;
933 case WXK_F20
: keySym
= XK_F20
; break;
934 case WXK_F21
: keySym
= XK_F21
; break;
935 case WXK_F22
: keySym
= XK_F22
; break;
936 case WXK_F23
: keySym
= XK_F23
; break;
937 case WXK_F24
: keySym
= XK_F24
; break;
938 case WXK_NUMLOCK
: keySym
= XK_Num_Lock
; break;
939 case WXK_SCROLL
: keySym
= XK_Scroll_Lock
; break;
940 default: keySym
= id
<= 255 ? (KeySym
)id
: 0;
946 // ----------------------------------------------------------------------------
947 // Some colour manipulation routines
948 // ----------------------------------------------------------------------------
950 void wxHSVToXColor(wxHSV
*hsv
,XColor
*rgb
)
955 int r
= 0, g
= 0, b
= 0;
958 s
= (s
* wxMAX_RGB
) / wxMAX_SV
;
959 v
= (v
* wxMAX_RGB
) / wxMAX_SV
;
961 if (s
== 0) { h
= 0; r
= g
= b
= v
; }
964 p
= v
* (wxMAX_RGB
- s
) / wxMAX_RGB
;
965 q
= v
* (wxMAX_RGB
- s
* f
/ 60) / wxMAX_RGB
;
966 t
= v
* (wxMAX_RGB
- s
* (60 - f
) / 60) / wxMAX_RGB
;
969 case 0: r
= v
, g
= t
, b
= p
; break;
970 case 1: r
= q
, g
= v
, b
= p
; break;
971 case 2: r
= p
, g
= v
, b
= t
; break;
972 case 3: r
= p
, g
= q
, b
= v
; break;
973 case 4: r
= t
, g
= p
, b
= v
; break;
974 case 5: r
= v
, g
= p
, b
= q
; break;
981 void wxXColorToHSV(wxHSV
*hsv
,XColor
*rgb
)
983 int r
= rgb
->red
>> 8;
984 int g
= rgb
->green
>> 8;
985 int b
= rgb
->blue
>> 8;
986 int maxv
= wxMax3(r
, g
, b
);
987 int minv
= wxMin3(r
, g
, b
);
990 if (maxv
) s
= (maxv
- minv
) * wxMAX_RGB
/ maxv
;
995 int rc
, gc
, bc
, hex
= 0;
996 rc
= (maxv
- r
) * wxMAX_RGB
/ (maxv
- minv
);
997 gc
= (maxv
- g
) * wxMAX_RGB
/ (maxv
- minv
);
998 bc
= (maxv
- b
) * wxMAX_RGB
/ (maxv
- minv
);
999 if (r
== maxv
) { h
= bc
- gc
, hex
= 0; }
1000 else if (g
== maxv
) { h
= rc
- bc
, hex
= 2; }
1001 else if (b
== maxv
) { h
= gc
- rc
, hex
= 4; }
1002 h
= hex
* 60 + (h
* 60 / wxMAX_RGB
);
1003 if (h
< 0) h
+= 360;
1006 hsv
->s
= (s
* wxMAX_SV
) / wxMAX_RGB
;
1007 hsv
->v
= (v
* wxMAX_SV
) / wxMAX_RGB
;
1010 void wxAllocNearestColor(Display
*d
,Colormap cmp
,XColor
*xc
)
1014 int screen
= DefaultScreen(d
);
1015 int num_colors
= DisplayCells(d
,screen
);
1017 XColor
*color_defs
= new XColor
[num_colors
];
1018 for(llp
= 0;llp
< num_colors
;llp
++) color_defs
[llp
].pixel
= llp
;
1019 XQueryColors(d
,cmp
,color_defs
,num_colors
);
1021 wxHSV hsv_defs
, hsv
;
1022 wxXColorToHSV(&hsv
,xc
);
1024 int diff
, min_diff
= 0, pixel
= 0;
1026 for(llp
= 0;llp
< num_colors
;llp
++)
1028 wxXColorToHSV(&hsv_defs
,&color_defs
[llp
]);
1029 diff
= wxSIGN(wxH_WEIGHT
* (hsv
.h
- hsv_defs
.h
)) +
1030 wxSIGN(wxS_WEIGHT
* (hsv
.s
- hsv_defs
.s
)) +
1031 wxSIGN(wxV_WEIGHT
* (hsv
.v
- hsv_defs
.v
));
1032 if (llp
== 0) min_diff
= diff
;
1033 if (min_diff
> diff
) { min_diff
= diff
; pixel
= llp
; }
1034 if (min_diff
== 0) break;
1037 xc
-> red
= color_defs
[pixel
].red
;
1038 xc
-> green
= color_defs
[pixel
].green
;
1039 xc
-> blue
= color_defs
[pixel
].blue
;
1040 xc
-> flags
= DoRed
| DoGreen
| DoBlue
;
1043 if (!XAllocColor(d,cmp,xc))
1044 cout << "wxAllocNearestColor : Warning : Cannot find nearest color !\n";
1047 delete[] color_defs
;
1050 void wxAllocColor(Display
*d
,Colormap cmp
,XColor
*xc
)
1052 if (!XAllocColor(d
,cmp
,xc
))
1054 // cout << "wxAllocColor : Warning : Can not allocate color, attempt find nearest !\n";
1055 wxAllocNearestColor(d
,cmp
,xc
);
1060 // ----------------------------------------------------------------------------
1062 // ----------------------------------------------------------------------------
1064 // Find the letter corresponding to the mnemonic, for Motif
1065 char wxFindMnemonic (const char *s
)
1068 int len
= strlen (s
);
1070 for (i
= 0; i
< len
; i
++)
1074 // Carefully handle &&
1075 if ((i
+ 1) <= len
&& s
[i
+ 1] == '&')
1087 char * wxFindAccelerator (const char *s
)
1089 // VZ: this function returns incorrect keysym which completely breaks kbd
1094 // The accelerator text is after the \t char.
1095 while (*s
&& *s
!= '\t')
1101 Now we need to format it as X standard:
1106 Ctrl+N --> Ctrl<Key>N
1107 Alt+k --> Meta<Key>k
1108 Ctrl+Shift+A --> Ctrl Shift<Key>A
1113 char *tmp
= copystring (s
);
1119 while (*p
&& *p
!= '+')
1125 strcat (wxBuffer
, " ");
1126 if (strcmp (s
, "Alt"))
1127 strcat (wxBuffer
, s
);
1129 strcat (wxBuffer
, "Meta");
1134 strcat (wxBuffer
, "<Key>");
1135 strcat (wxBuffer
, s
);
1144 XmString
wxFindAcceleratorText (const char *s
)
1146 // VZ: this function returns incorrect keysym which completely breaks kbd
1151 // The accelerator text is after the \t char.
1152 while (*s
&& *s
!= '\t')
1157 XmString text
= XmStringCreateSimple ((char *)s
);
1163 // These functions duplicate those in wxWindow, but are needed
1164 // for use outside of wxWindow (e.g. wxMenu, wxMenuBar).
1166 // Change a widget's foreground and background colours.
1168 void wxDoChangeForegroundColour(WXWidget widget
, wxColour
& foregroundColour
)
1170 // When should we specify the foreground, if it's calculated
1171 // by wxComputeColours?
1172 // Solution: say we start with the default (computed) foreground colour.
1173 // If we call SetForegroundColour explicitly for a control or window,
1174 // then the foreground is changed.
1175 // Therefore SetBackgroundColour computes the foreground colour, and
1176 // SetForegroundColour changes the foreground colour. The ordering is
1179 XtVaSetValues ((Widget
) widget
,
1180 XmNforeground
, foregroundColour
.AllocColour(XtDisplay((Widget
) widget
)),
1184 void wxDoChangeBackgroundColour(WXWidget widget
, wxColour
& backgroundColour
, bool changeArmColour
)
1186 wxComputeColours (XtDisplay((Widget
) widget
), & backgroundColour
,
1189 XtVaSetValues ((Widget
) widget
,
1190 XmNbackground
, g_itemColors
[wxBACK_INDEX
].pixel
,
1191 XmNtopShadowColor
, g_itemColors
[wxTOPS_INDEX
].pixel
,
1192 XmNbottomShadowColor
, g_itemColors
[wxBOTS_INDEX
].pixel
,
1193 XmNforeground
, g_itemColors
[wxFORE_INDEX
].pixel
,
1196 if (changeArmColour
)
1197 XtVaSetValues ((Widget
) widget
,
1198 XmNarmColor
, g_itemColors
[wxSELE_INDEX
].pixel
,