1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Various utilities
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #define XtDisplay XTDISPLAY
26 #include "wx/msgdlg.h"
27 #include "wx/cursor.h"
28 #include "wx/window.h" // for wxTopLevelWindows
35 #include <sys/types.h>
43 #if (defined(__SUNCC__) || defined(__CLCC__))
48 #pragma message disable nosimpint
51 #include "wx/unix/execute.h"
55 #include "wx/motif/private.h"
59 #include "wx/x11/private.h"
63 #include "X11/Xresource.h"
66 #include "X11/Xutil.h"
69 #pragma message enable nosimpint
72 // ----------------------------------------------------------------------------
74 // ----------------------------------------------------------------------------
76 // Yuck this is really BOTH site and platform dependent
77 // so we should use some other strategy!
79 #define DEFAULT_XRESOURCE_DIR "/usr/openwin/lib/app-defaults"
81 #define DEFAULT_XRESOURCE_DIR "/usr/lib/X11/app-defaults"
85 static char *GetIniFile (char *dest
, const char *filename
);
88 // ============================================================================
90 // ============================================================================
92 // ----------------------------------------------------------------------------
93 // async event processing
94 // ----------------------------------------------------------------------------
96 // Consume all events until no more left
99 Display
*display
= (Display
*) wxGetDisplay();
101 XSync (display
, FALSE
);
104 // XtAppPending returns availability of events AND timers/inputs, which
105 // are processed via callbacks, so XtAppNextEvent will not return if
106 // there are no events. So added '& XtIMXEvent' - Sergey.
107 while (XtAppPending ((XtAppContext
) wxTheApp
->GetAppContext()) & XtIMXEvent
)
109 XFlush (XtDisplay ((Widget
) wxTheApp
->GetTopLevelWidget()));
110 // Jan Lessner: works better when events are non-X events
111 XtAppProcessEvent((XtAppContext
) wxTheApp
->GetAppContext(), XtIMXEvent
);
120 // Check whether this window wants to process messages, e.g. Stop button
121 // in long calculations.
122 bool wxCheckForInterrupt(wxWindow
*wnd
)
125 wxCHECK_MSG( wnd
, FALSE
, "NULL window in wxCheckForInterrupt" );
127 Display
*dpy
=(Display
*) wnd
->GetXDisplay();
128 Window win
=(Window
) wnd
->GetXWindow();
131 if (wnd
->GetMainWidget())
133 XmUpdateDisplay((Widget
)(wnd
->GetMainWidget()));
136 bool hadEvents
= FALSE
;
137 while( XCheckMaskEvent(dpy
,
138 ButtonPressMask
|ButtonReleaseMask
|ButtonMotionMask
|
139 PointerMotionMask
|KeyPressMask
|KeyReleaseMask
,
142 if ( event
.xany
.window
== win
)
146 XtDispatchEvent(&event
);
152 wxASSERT_MSG(FALSE
, "wxCheckForInterrupt not yet implemented.");
157 // ----------------------------------------------------------------------------
159 // ----------------------------------------------------------------------------
161 static void xt_notify_end_process(XtPointer data
, int *WXUNUSED(fid
),
164 wxEndProcessData
*proc_data
= (wxEndProcessData
*)data
;
166 wxHandleProcessTermination(proc_data
);
168 // VZ: I think they should be the same...
169 wxASSERT( (int)*id
== proc_data
->tag
);
175 int wxAddProcessCallback(wxEndProcessData
*proc_data
, int fd
)
178 XtInputId id
= XtAppAddInput((XtAppContext
) wxTheApp
->GetAppContext(),
180 (XtPointer
*) XtInputReadMask
,
181 (XtInputCallbackProc
) xt_notify_end_process
,
182 (XtPointer
) proc_data
);
192 // ----------------------------------------------------------------------------
194 // ----------------------------------------------------------------------------
199 // Use current setting for the bell
200 XBell ((Display
*) wxGetDisplay(), 0);
203 int wxGetOsVersion(int *majorVsn
, int *minorVsn
)
207 // This code is WRONG!! Does NOT return the
208 // Motif version of the libs but the X protocol
210 Display
*display
= XtDisplay ((Widget
) wxTheApp
->GetTopLevelWidget());
212 *majorVsn
= ProtocolVersion (display
);
214 *minorVsn
= ProtocolRevision (display
);
227 // ----------------------------------------------------------------------------
228 // Reading and writing resources (eg WIN.INI, .Xdefaults)
229 // ----------------------------------------------------------------------------
233 // Read $HOME for what it says is home, if not
234 // read $USER or $LOGNAME for user name else determine
235 // the Real User, then determine the Real home dir.
236 static char * GetIniFile (char *dest
, const char *filename
)
239 if (filename
&& wxIsAbsolutePath(filename
))
241 strcpy(dest
, filename
);
243 else if ((home
= wxGetUserHome("")) != NULL
)
246 if (dest
[strlen(dest
) - 1] != '/')
248 if (filename
== NULL
)
250 if ((filename
= getenv ("XENVIRONMENT")) == NULL
)
251 filename
= ".Xdefaults";
253 else if (*filename
!= '.')
255 strcat (dest
, filename
);
263 static char *GetResourcePath(char *buf
, const char *name
, bool create
= FALSE
)
265 if (create
&& wxFileExists (name
) ) {
267 return buf
; // Exists so ...
273 // Put in standard place for resource files if not absolute
274 strcpy (buf
, DEFAULT_XRESOURCE_DIR
);
276 strcat (buf
, wxFileNameFromPath (name
).c_str());
280 // Touch the file to create it
281 FILE *fd
= fopen (buf
, "w");
288 * We have a cache for writing different resource files,
289 * which will only get flushed when we call wxFlushResources().
290 * Build up a list of resource databases waiting to be written.
294 wxList
wxResourceCache (wxKEY_STRING
);
297 wxFlushResources (void)
299 char nameBuffer
[512];
301 wxNode
*node
= wxResourceCache
.First ();
304 const char *file
= node
->GetKeyString();
305 // If file doesn't exist, create it first.
306 (void)GetResourcePath(nameBuffer
, file
, TRUE
);
308 XrmDatabase database
= (XrmDatabase
) node
->Data ();
309 XrmPutFileDatabase (database
, nameBuffer
);
310 XrmDestroyDatabase (database
);
311 wxNode
*next
= node
->Next ();
317 static XrmDatabase wxResourceDatabase
= 0;
319 void wxXMergeDatabases (wxApp
* theApp
, Display
* display
);
321 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, const wxString
& value
, const wxString
& file
)
325 (void) GetIniFile (buffer
, file
);
327 XrmDatabase database
;
328 wxNode
*node
= wxResourceCache
.Find (buffer
);
330 database
= (XrmDatabase
) node
->Data ();
333 database
= XrmGetFileDatabase (buffer
);
334 wxResourceCache
.Append (buffer
, (wxObject
*) database
);
338 strcpy (resName
, section
.c_str());
339 strcat (resName
, ".");
340 strcat (resName
, entry
.c_str());
342 XrmPutStringResource (&database
, resName
, value
);
346 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, float value
, const wxString
& file
)
349 sprintf(buf
, "%.4f", value
);
350 return wxWriteResource(section
, entry
, buf
, file
);
353 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, long value
, const wxString
& file
)
356 sprintf(buf
, "%ld", value
);
357 return wxWriteResource(section
, entry
, buf
, file
);
360 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, int value
, const wxString
& file
)
363 sprintf(buf
, "%d", value
);
364 return wxWriteResource(section
, entry
, buf
, file
);
367 bool wxGetResource(const wxString
& section
, const wxString
& entry
, char **value
, const wxString
& file
)
369 if (!wxResourceDatabase
)
371 Display
*display
= (Display
*) wxGetDisplay();
372 wxXMergeDatabases (wxTheApp
, display
);
375 XrmDatabase database
;
381 // Is this right? Trying to get it to look in the user's
382 // home directory instead of current directory -- JACS
383 (void) GetIniFile (buffer
, file
);
385 wxNode
*node
= wxResourceCache
.Find (buffer
);
387 database
= (XrmDatabase
) node
->Data ();
390 database
= XrmGetFileDatabase (buffer
);
391 wxResourceCache
.Append (buffer
, (wxObject
*) database
);
395 database
= wxResourceDatabase
;
400 strcpy (buf
, section
);
404 Bool success
= XrmGetResource (database
, buf
, "*", str_type
,
406 // Try different combinations of upper/lower case, just in case...
409 buf
[0] = (isupper (buf
[0]) ? tolower (buf
[0]) : toupper (buf
[0]));
410 success
= XrmGetResource (database
, buf
, "*", str_type
,
418 *value
= new char[xvalue
.size
+ 1];
419 strncpy (*value
, xvalue
.addr
, (int) xvalue
.size
);
425 bool wxGetResource(const wxString
& section
, const wxString
& entry
, float *value
, const wxString
& file
)
428 bool succ
= wxGetResource(section
, entry
, (char **)&s
, file
);
431 *value
= (float)strtod(s
, NULL
);
438 bool wxGetResource(const wxString
& section
, const wxString
& entry
, long *value
, const wxString
& file
)
441 bool succ
= wxGetResource(section
, entry
, (char **)&s
, file
);
444 *value
= strtol(s
, NULL
, 10);
451 bool wxGetResource(const wxString
& section
, const wxString
& entry
, int *value
, const wxString
& file
)
454 bool succ
= wxGetResource(section
, entry
, (char **)&s
, file
);
457 // Handle True, False here
458 // True, Yes, Enables, Set or Activated
459 if (*s
== 'T' || *s
== 'Y' || *s
== 'E' || *s
== 'S' || *s
== 'A')
461 // False, No, Disabled, Reset, Cleared, Deactivated
462 else if (*s
== 'F' || *s
== 'N' || *s
== 'D' || *s
== 'R' || *s
== 'C')
466 *value
= (int) strtol (s
, NULL
, 10);
474 void wxXMergeDatabases (wxApp
* theApp
, Display
* display
)
476 XrmDatabase homeDB
, serverDB
, applicationDB
;
477 char filenamebuf
[1024];
479 char *filename
= &filenamebuf
[0];
481 wxString classname
= theApp
->GetClassName();
483 (void) strcpy (name
, "/usr/lib/X11/app-defaults/");
484 (void) strcat (name
, classname
.c_str());
486 /* Get application defaults file, if any */
487 applicationDB
= XrmGetFileDatabase (name
);
488 (void) XrmMergeDatabases (applicationDB
, &wxResourceDatabase
);
490 /* Merge server defaults, created by xrdb, loaded as a property of the root
491 * window when the server initializes and loaded into the display
492 * structure on XOpenDisplay;
493 * if not defined, use .Xdefaults
496 if (XResourceManagerString (display
) != NULL
)
498 serverDB
= XrmGetStringDatabase (XResourceManagerString (display
));
502 (void) GetIniFile (filename
, NULL
);
503 serverDB
= XrmGetFileDatabase (filename
);
505 XrmMergeDatabases (serverDB
, &wxResourceDatabase
);
507 /* Open XENVIRONMENT file, or if not defined, the .Xdefaults,
508 * and merge into existing database
511 if ((environment
= getenv ("XENVIRONMENT")) == NULL
)
514 environment
= GetIniFile (filename
, NULL
);
515 len
= strlen (environment
);
516 wxString hostname
= wxGetHostName();
518 strncat(environment
, hostname
, 1024 - len
);
520 homeDB
= XrmGetFileDatabase (environment
);
521 XrmMergeDatabases (homeDB
, &wxResourceDatabase
);
527 * Not yet used but may be useful.
531 wxSetDefaultResources (const Widget w
, const char **resourceSpec
, const char *name
)
534 Display
*dpy
= XtDisplay (w
); // Retrieve the display pointer
536 XrmDatabase rdb
= NULL
; // A resource data base
538 // Create an empty resource database
539 rdb
= XrmGetStringDatabase ("");
541 // Add the Component resources, prepending the name of the component
544 while (resourceSpec
[i
] != NULL
)
548 sprintf (buf
, "*%s%s", name
, resourceSpec
[i
++]);
549 XrmPutLineResource (&rdb
, buf
);
552 // Merge them into the Xt database, with lowest precendence
556 #if (XlibSpecificationRelease>=5)
557 XrmDatabase db
= XtDatabase (dpy
);
558 XrmCombineDatabase (rdb
, &db
, FALSE
);
560 XrmMergeDatabases (dpy
->db
, &rdb
);
568 #endif // wxUSE_RESOURCES
570 // ----------------------------------------------------------------------------
572 // ----------------------------------------------------------------------------
574 void wxGetMousePosition( int* x
, int* y
)
583 XQueryPointer((Display
*) wxGetDisplay(),
584 DefaultRootWindow((Display
*) wxGetDisplay()),
586 &(xev
.x_root
), &(xev
.y_root
),
594 // Return TRUE if we have a colour display
595 bool wxColourDisplay()
597 return wxDisplayDepth() > 1;
600 // Returns depth of screen
603 Display
*dpy
= (Display
*) wxGetDisplay();
605 return DefaultDepth (dpy
, DefaultScreen (dpy
));
608 // Get size of display
609 void wxDisplaySize(int *width
, int *height
)
611 Display
*dpy
= (Display
*) wxGetDisplay();
614 *width
= DisplayWidth (dpy
, DefaultScreen (dpy
));
616 *height
= DisplayHeight (dpy
, DefaultScreen (dpy
));
619 void wxDisplaySizeMM(int *width
, int *height
)
621 Display
*dpy
= (Display
*) wxGetDisplay();
624 *width
= DisplayWidthMM(dpy
, DefaultScreen (dpy
));
626 *height
= DisplayHeightMM(dpy
, DefaultScreen (dpy
));
629 void wxClientDisplayRect(int *x
, int *y
, int *width
, int *height
)
631 // This is supposed to return desktop dimensions minus any window
632 // manager panels, menus, taskbars, etc. If there is a way to do that
633 // for this platform please fix this function, otherwise it defaults
634 // to the entire desktop.
637 wxDisplaySize(width
, height
);
641 // Configurable display in wxX11 and wxMotif
642 static WXDisplay
*gs_currentDisplay
= NULL
;
643 static wxString gs_displayName
;
645 WXDisplay
*wxGetDisplay()
647 if (gs_currentDisplay
)
648 return gs_currentDisplay
;
650 if (wxTheApp
&& wxTheApp
->GetTopLevelWidget())
651 return XtDisplay ((Widget
) wxTheApp
->GetTopLevelWidget());
653 return wxTheApp
->GetInitialDisplay();
657 return wxApp::GetDisplay();
661 bool wxSetDisplay(const wxString
& display_name
)
663 gs_displayName
= display_name
;
665 if ( display_name
.IsEmpty() )
667 gs_currentDisplay
= NULL
;
676 Display
*display
= XtOpenDisplay((XtAppContext
) wxTheApp
->GetAppContext(),
677 display_name
.c_str(),
678 wxTheApp
->GetAppName().c_str(),
679 wxTheApp
->GetClassName().c_str(),
681 #if XtSpecificationRelease < 5
690 gs_currentDisplay
= (WXDisplay
*) display
;
697 Display
* display
= XOpenDisplay((char*) display_name
.c_str());
701 gs_currentDisplay
= (WXDisplay
*) display
;
710 wxString
wxGetDisplayName()
712 return gs_displayName
;
715 wxWindow
* wxFindWindowAtPoint(const wxPoint
& pt
)
717 return wxGenericFindWindowAtPoint(pt
);
720 // ----------------------------------------------------------------------------
721 // keycode translations
722 // ----------------------------------------------------------------------------
724 #include <X11/keysym.h>
726 // FIXME what about tables??
728 int wxCharCodeXToWX(KeySym keySym
)
735 id
= WXK_SHIFT
; break;
738 id
= WXK_CONTROL
; break;
740 id
= WXK_BACK
; break;
742 id
= WXK_DELETE
; break;
744 id
= WXK_CLEAR
; break;
750 id
= WXK_RETURN
; break;
752 id
= WXK_ESCAPE
; break;
755 id
= WXK_PAUSE
; break;
757 id
= WXK_NUMLOCK
; break;
759 id
= WXK_SCROLL
; break;
762 id
= WXK_HOME
; break;
766 id
= WXK_LEFT
; break;
768 id
= WXK_RIGHT
; break;
772 id
= WXK_DOWN
; break;
774 id
= WXK_NEXT
; break;
776 id
= WXK_PRIOR
; break;
778 id
= WXK_MENU
; break;
780 id
= WXK_SELECT
; break;
782 id
= WXK_CANCEL
; break;
784 id
= WXK_PRINT
; break;
786 id
= WXK_EXECUTE
; break;
788 id
= WXK_INSERT
; break;
790 id
= WXK_HELP
; break;
793 id
= WXK_MULTIPLY
; break;
797 id
= WXK_SUBTRACT
; break;
799 id
= WXK_DIVIDE
; break;
801 id
= WXK_DECIMAL
; break;
809 id
= WXK_RETURN
; break;
811 id
= WXK_NUMPAD0
; break;
813 id
= WXK_NUMPAD1
; break;
815 id
= WXK_NUMPAD2
; break;
817 id
= WXK_NUMPAD3
; break;
819 id
= WXK_NUMPAD4
; break;
821 id
= WXK_NUMPAD5
; break;
823 id
= WXK_NUMPAD6
; break;
825 id
= WXK_NUMPAD7
; break;
827 id
= WXK_NUMPAD8
; break;
829 id
= WXK_NUMPAD9
; break;
879 id
= (keySym
<= 255) ? (int)keySym
: -1;
885 KeySym
wxCharCodeWXToX(int id
)
891 case WXK_CANCEL
: keySym
= XK_Cancel
; break;
892 case WXK_BACK
: keySym
= XK_BackSpace
; break;
893 case WXK_TAB
: keySym
= XK_Tab
; break;
894 case WXK_CLEAR
: keySym
= XK_Clear
; break;
895 case WXK_RETURN
: keySym
= XK_Return
; break;
896 case WXK_SHIFT
: keySym
= XK_Shift_L
; break;
897 case WXK_CONTROL
: keySym
= XK_Control_L
; break;
898 case WXK_MENU
: keySym
= XK_Menu
; break;
899 case WXK_PAUSE
: keySym
= XK_Pause
; break;
900 case WXK_ESCAPE
: keySym
= XK_Escape
; break;
901 case WXK_SPACE
: keySym
= ' '; break;
902 case WXK_PRIOR
: keySym
= XK_Prior
; break;
903 case WXK_NEXT
: keySym
= XK_Next
; break;
904 case WXK_END
: keySym
= XK_End
; break;
905 case WXK_HOME
: keySym
= XK_Home
; break;
906 case WXK_LEFT
: keySym
= XK_Left
; break;
907 case WXK_UP
: keySym
= XK_Up
; break;
908 case WXK_RIGHT
: keySym
= XK_Right
; break;
909 case WXK_DOWN
: keySym
= XK_Down
; break;
910 case WXK_SELECT
: keySym
= XK_Select
; break;
911 case WXK_PRINT
: keySym
= XK_Print
; break;
912 case WXK_EXECUTE
: keySym
= XK_Execute
; break;
913 case WXK_INSERT
: keySym
= XK_Insert
; break;
914 case WXK_DELETE
: keySym
= XK_Delete
; break;
915 case WXK_HELP
: keySym
= XK_Help
; break;
916 case WXK_NUMPAD0
: keySym
= XK_KP_0
; break;
917 case WXK_NUMPAD1
: keySym
= XK_KP_1
; break;
918 case WXK_NUMPAD2
: keySym
= XK_KP_2
; break;
919 case WXK_NUMPAD3
: keySym
= XK_KP_3
; break;
920 case WXK_NUMPAD4
: keySym
= XK_KP_4
; break;
921 case WXK_NUMPAD5
: keySym
= XK_KP_5
; break;
922 case WXK_NUMPAD6
: keySym
= XK_KP_6
; break;
923 case WXK_NUMPAD7
: keySym
= XK_KP_7
; break;
924 case WXK_NUMPAD8
: keySym
= XK_KP_8
; break;
925 case WXK_NUMPAD9
: keySym
= XK_KP_9
; break;
926 case WXK_MULTIPLY
: keySym
= XK_KP_Multiply
; break;
927 case WXK_ADD
: keySym
= XK_KP_Add
; break;
928 case WXK_SUBTRACT
: keySym
= XK_KP_Subtract
; break;
929 case WXK_DECIMAL
: keySym
= XK_KP_Decimal
; break;
930 case WXK_DIVIDE
: keySym
= XK_KP_Divide
; break;
931 case WXK_F1
: keySym
= XK_F1
; break;
932 case WXK_F2
: keySym
= XK_F2
; break;
933 case WXK_F3
: keySym
= XK_F3
; break;
934 case WXK_F4
: keySym
= XK_F4
; break;
935 case WXK_F5
: keySym
= XK_F5
; break;
936 case WXK_F6
: keySym
= XK_F6
; break;
937 case WXK_F7
: keySym
= XK_F7
; break;
938 case WXK_F8
: keySym
= XK_F8
; break;
939 case WXK_F9
: keySym
= XK_F9
; break;
940 case WXK_F10
: keySym
= XK_F10
; break;
941 case WXK_F11
: keySym
= XK_F11
; break;
942 case WXK_F12
: keySym
= XK_F12
; break;
943 case WXK_F13
: keySym
= XK_F13
; break;
944 case WXK_F14
: keySym
= XK_F14
; break;
945 case WXK_F15
: keySym
= XK_F15
; break;
946 case WXK_F16
: keySym
= XK_F16
; break;
947 case WXK_F17
: keySym
= XK_F17
; break;
948 case WXK_F18
: keySym
= XK_F18
; break;
949 case WXK_F19
: keySym
= XK_F19
; break;
950 case WXK_F20
: keySym
= XK_F20
; break;
951 case WXK_F21
: keySym
= XK_F21
; break;
952 case WXK_F22
: keySym
= XK_F22
; break;
953 case WXK_F23
: keySym
= XK_F23
; break;
954 case WXK_F24
: keySym
= XK_F24
; break;
955 case WXK_NUMLOCK
: keySym
= XK_Num_Lock
; break;
956 case WXK_SCROLL
: keySym
= XK_Scroll_Lock
; break;
957 default: keySym
= id
<= 255 ? (KeySym
)id
: 0;
963 // ----------------------------------------------------------------------------
964 // Some colour manipulation routines
965 // ----------------------------------------------------------------------------
967 void wxHSVToXColor(wxHSV
*hsv
,XColor
*rgb
)
972 int r
= 0, g
= 0, b
= 0;
975 s
= (s
* wxMAX_RGB
) / wxMAX_SV
;
976 v
= (v
* wxMAX_RGB
) / wxMAX_SV
;
978 if (s
== 0) { h
= 0; r
= g
= b
= v
; }
981 p
= v
* (wxMAX_RGB
- s
) / wxMAX_RGB
;
982 q
= v
* (wxMAX_RGB
- s
* f
/ 60) / wxMAX_RGB
;
983 t
= v
* (wxMAX_RGB
- s
* (60 - f
) / 60) / wxMAX_RGB
;
986 case 0: r
= v
, g
= t
, b
= p
; break;
987 case 1: r
= q
, g
= v
, b
= p
; break;
988 case 2: r
= p
, g
= v
, b
= t
; break;
989 case 3: r
= p
, g
= q
, b
= v
; break;
990 case 4: r
= t
, g
= p
, b
= v
; break;
991 case 5: r
= v
, g
= p
, b
= q
; break;
998 void wxXColorToHSV(wxHSV
*hsv
,XColor
*rgb
)
1000 int r
= rgb
->red
>> 8;
1001 int g
= rgb
->green
>> 8;
1002 int b
= rgb
->blue
>> 8;
1003 int maxv
= wxMax3(r
, g
, b
);
1004 int minv
= wxMin3(r
, g
, b
);
1007 if (maxv
) s
= (maxv
- minv
) * wxMAX_RGB
/ maxv
;
1012 int rc
, gc
, bc
, hex
= 0;
1013 rc
= (maxv
- r
) * wxMAX_RGB
/ (maxv
- minv
);
1014 gc
= (maxv
- g
) * wxMAX_RGB
/ (maxv
- minv
);
1015 bc
= (maxv
- b
) * wxMAX_RGB
/ (maxv
- minv
);
1016 if (r
== maxv
) { h
= bc
- gc
, hex
= 0; }
1017 else if (g
== maxv
) { h
= rc
- bc
, hex
= 2; }
1018 else if (b
== maxv
) { h
= gc
- rc
, hex
= 4; }
1019 h
= hex
* 60 + (h
* 60 / wxMAX_RGB
);
1020 if (h
< 0) h
+= 360;
1023 hsv
->s
= (s
* wxMAX_SV
) / wxMAX_RGB
;
1024 hsv
->v
= (v
* wxMAX_SV
) / wxMAX_RGB
;
1027 void wxAllocNearestColor(Display
*d
,Colormap cmp
,XColor
*xc
)
1032 int screen
= DefaultScreen(d
);
1033 int num_colors
= DisplayCells(d
,screen
);
1035 XColor
*color_defs
= new XColor
[num_colors
];
1036 for(llp
= 0;llp
< num_colors
;llp
++) color_defs
[llp
].pixel
= llp
;
1037 XQueryColors(d
,cmp
,color_defs
,num_colors
);
1039 wxHSV hsv_defs
, hsv
;
1040 wxXColorToHSV(&hsv
,xc
);
1042 int diff
, min_diff
= 0, pixel
= 0;
1044 for(llp
= 0;llp
< num_colors
;llp
++)
1046 wxXColorToHSV(&hsv_defs
,&color_defs
[llp
]);
1047 diff
= wxSIGN(wxH_WEIGHT
* (hsv
.h
- hsv_defs
.h
)) +
1048 wxSIGN(wxS_WEIGHT
* (hsv
.s
- hsv_defs
.s
)) +
1049 wxSIGN(wxV_WEIGHT
* (hsv
.v
- hsv_defs
.v
));
1050 if (llp
== 0) min_diff
= diff
;
1051 if (min_diff
> diff
) { min_diff
= diff
; pixel
= llp
; }
1052 if (min_diff
== 0) break;
1055 xc
-> red
= color_defs
[pixel
].red
;
1056 xc
-> green
= color_defs
[pixel
].green
;
1057 xc
-> blue
= color_defs
[pixel
].blue
;
1058 xc
-> flags
= DoRed
| DoGreen
| DoBlue
;
1061 if (!XAllocColor(d,cmp,xc))
1062 cout << "wxAllocNearestColor : Warning : Cannot find nearest color !\n";
1065 delete[] color_defs
;
1069 void wxAllocColor(Display
*d
,Colormap cmp
,XColor
*xc
)
1071 if (!XAllocColor(d
,cmp
,xc
))
1073 // cout << "wxAllocColor : Warning : Can not allocate color, attempt find nearest !\n";
1074 wxAllocNearestColor(d
,cmp
,xc
);
1079 wxString
wxGetXEventName(XEvent
& event
)
1082 wxString
str(wxT("(some event)"));
1085 int type
= event
.xany
.type
;
1086 static char* event_name
[] = {
1087 "", "unknown(-)", // 0-1
1088 "KeyPress", "KeyRelease", "ButtonPress", "ButtonRelease", // 2-5
1089 "MotionNotify", "EnterNotify", "LeaveNotify", "FocusIn", // 6-9
1090 "FocusOut", "KeymapNotify", "Expose", "GraphicsExpose", // 10-13
1091 "NoExpose", "VisibilityNotify", "CreateNotify", // 14-16
1092 "DestroyNotify", "UnmapNotify", "MapNotify", "MapRequest",// 17-20
1093 "ReparentNotify", "ConfigureNotify", "ConfigureRequest", // 21-23
1094 "GravityNotify", "ResizeRequest", "CirculateNotify", // 24-26
1095 "CirculateRequest", "PropertyNotify", "SelectionClear", // 27-29
1096 "SelectionRequest", "SelectionNotify", "ColormapNotify", // 30-32
1097 "ClientMessage", "MappingNotify", // 33-34
1098 "unknown(+)"}; // 35
1099 type
= wxMin(35, type
); type
= wxMax(1, type
);
1100 wxString
str(event_name
[type
]);
1107 // ----------------------------------------------------------------------------
1109 // ----------------------------------------------------------------------------
1111 // Find the letter corresponding to the mnemonic, for Motif
1112 char wxFindMnemonic (const char *s
)
1115 int len
= strlen (s
);
1117 for (i
= 0; i
< len
; i
++)
1121 // Carefully handle &&
1122 if ((i
+ 1) <= len
&& s
[i
+ 1] == '&')
1134 char * wxFindAccelerator (const char *s
)
1136 // VZ: this function returns incorrect keysym which completely breaks kbd
1141 // The accelerator text is after the \t char.
1142 while (*s
&& *s
!= '\t')
1148 Now we need to format it as X standard:
1153 Ctrl+N --> Ctrl<Key>N
1154 Alt+k --> Meta<Key>k
1155 Ctrl+Shift+A --> Ctrl Shift<Key>A
1159 static char buf
[256];
1161 char *tmp
= copystring (s
);
1167 while (*p
&& *p
!= '+')
1174 if (strcmp (s
, "Alt"))
1177 strcat (buf
, "Meta");
1182 strcat (buf
, "<Key>");
1192 XmString
wxFindAcceleratorText (const char *s
)
1194 // VZ: this function returns incorrect keysym which completely breaks kbd
1199 // The accelerator text is after the \t char.
1200 while (*s
&& *s
!= '\t')
1205 XmString text
= XmStringCreateSimple ((char *)s
);
1211 // These functions duplicate those in wxWindow, but are needed
1212 // for use outside of wxWindow (e.g. wxMenu, wxMenuBar).
1214 // Change a widget's foreground and background colours.
1216 void wxDoChangeForegroundColour(WXWidget widget
, wxColour
& foregroundColour
)
1218 // When should we specify the foreground, if it's calculated
1219 // by wxComputeColours?
1220 // Solution: say we start with the default (computed) foreground colour.
1221 // If we call SetForegroundColour explicitly for a control or window,
1222 // then the foreground is changed.
1223 // Therefore SetBackgroundColour computes the foreground colour, and
1224 // SetForegroundColour changes the foreground colour. The ordering is
1227 XtVaSetValues ((Widget
) widget
,
1228 XmNforeground
, foregroundColour
.AllocColour(XtDisplay((Widget
) widget
)),
1232 void wxDoChangeBackgroundColour(WXWidget widget
, wxColour
& backgroundColour
, bool changeArmColour
)
1234 wxComputeColours (XtDisplay((Widget
) widget
), & backgroundColour
,
1237 XtVaSetValues ((Widget
) widget
,
1238 XmNbackground
, g_itemColors
[wxBACK_INDEX
].pixel
,
1239 XmNtopShadowColor
, g_itemColors
[wxTOPS_INDEX
].pixel
,
1240 XmNbottomShadowColor
, g_itemColors
[wxBOTS_INDEX
].pixel
,
1241 XmNforeground
, g_itemColors
[wxFORE_INDEX
].pixel
,
1244 if (changeArmColour
)
1245 XtVaSetValues ((Widget
) widget
,
1246 XmNarmColor
, g_itemColors
[wxSELE_INDEX
].pixel
,
1250 extern void wxDoChangeFont(WXWidget widget
, wxFont
& font
)
1252 // Lesstif 0.87 hangs here, but 0.93 does not
1253 #if !wxCHECK_LESSTIF() || wxCHECK_LESSTIF_VERSION( 0, 93 )
1254 Widget w
= (Widget
)widget
;
1256 wxFont::GetFontTag(), font
.GetFontType( XtDisplay(w
) ),
1265 bool wxWindowIsVisible(Window win
)
1267 XWindowAttributes wa
;
1268 XGetWindowAttributes(wxGlobalDisplay(), win
, &wa
);
1270 return (wa
.map_state
== IsViewable
);
1273 wxString
wxXmStringToString( const XmString
& xmString
)
1276 if( XmStringGetLtoR( xmString
, XmSTRING_DEFAULT_CHARSET
, &txt
) )
1283 return wxEmptyString
;
1286 XmString
wxStringToXmString( const wxString
& str
)
1288 return XmStringCreateLtoR((char *)str
.c_str(), XmSTRING_DEFAULT_CHARSET
);
1291 XmString
wxStringToXmString( const char* str
)
1293 return XmStringCreateLtoR((char *)str
, XmSTRING_DEFAULT_CHARSET
);