]>
Commit | Line | Data |
---|---|---|
4bb6408c JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: control.cpp | |
3 | // Purpose: wxControl class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
dfe1eee3 | 9 | // Licence: wxWindows licence |
4bb6408c JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "control.h" | |
14 | #endif | |
15 | ||
f6045f99 GD |
16 | #include "wx/defs.h" |
17 | ||
4bb6408c | 18 | #include "wx/control.h" |
dfe1eee3 | 19 | #include "wx/panel.h" |
02e8b2f9 JS |
20 | #include "wx/utils.h" |
21 | ||
338dd992 JJ |
22 | #ifdef __VMS__ |
23 | #pragma message disable nosimpint | |
24 | #endif | |
02e8b2f9 | 25 | #include <Xm/Xm.h> |
338dd992 JJ |
26 | #ifdef __VMS__ |
27 | #pragma message enable nosimpint | |
28 | #endif | |
4bb6408c | 29 | |
ea19087e JS |
30 | #include "wx/motif/private.h" |
31 | ||
4bb6408c JS |
32 | IMPLEMENT_ABSTRACT_CLASS(wxControl, wxWindow) |
33 | ||
34 | BEGIN_EVENT_TABLE(wxControl, wxWindow) | |
35 | END_EVENT_TABLE() | |
4bb6408c JS |
36 | |
37 | // Item members | |
38 | wxControl::wxControl() | |
39 | { | |
40 | m_backgroundColour = *wxWHITE; | |
41 | m_foregroundColour = *wxBLACK; | |
31528cd3 VZ |
42 | |
43 | #if WXWIN_COMPATIBILITY | |
4bb6408c | 44 | m_callback = 0; |
31528cd3 VZ |
45 | #endif // WXWIN_COMPATIBILITY |
46 | ||
a4294b78 | 47 | m_inSetValue = FALSE; |
4bb6408c JS |
48 | } |
49 | ||
5a2155ef | 50 | bool wxControl::Create( wxWindow *parent, |
0148fe1e VZ |
51 | wxWindowID id, |
52 | const wxPoint &pos, | |
53 | const wxSize &size, | |
54 | long style, | |
55 | const wxValidator& validator, | |
56 | const wxString &name) | |
57 | { | |
5a2155ef | 58 | bool ret = wxWindow::Create(parent, id, pos, size, style, name); |
674ac8b9 VZ |
59 | |
60 | #if wxUSE_VALIDATORS | |
0148fe1e | 61 | SetValidator(validator); |
0148fe1e | 62 | #endif |
5a2155ef BJ |
63 | |
64 | return ret; | |
674ac8b9 | 65 | } |
0148fe1e | 66 | |
4bb6408c JS |
67 | void wxControl::SetLabel(const wxString& label) |
68 | { | |
a4294b78 JS |
69 | Widget widget = (Widget) GetLabelWidget() ; |
70 | if (!widget) | |
71 | return; | |
dfe1eee3 | 72 | |
ea19087e | 73 | wxString buf(wxStripMenuCodes(label)); |
45ff6421 | 74 | wxXmString label_str(buf); |
dfe1eee3 | 75 | |
a4294b78 | 76 | XtVaSetValues (widget, |
ea19087e | 77 | XmNlabelString, label_str(), |
2d120f83 JS |
78 | XmNlabelType, XmSTRING, |
79 | NULL); | |
4bb6408c JS |
80 | } |
81 | ||
82 | wxString wxControl::GetLabel() const | |
83 | { | |
a4294b78 JS |
84 | Widget widget = (Widget) GetLabelWidget() ; |
85 | if (!widget) | |
86 | return wxEmptyString; | |
dfe1eee3 | 87 | |
a4294b78 JS |
88 | XmString text; |
89 | char *s; | |
90 | XtVaGetValues (widget, | |
2d120f83 JS |
91 | XmNlabelString, &text, |
92 | NULL); | |
dfe1eee3 | 93 | |
a4294b78 | 94 | if (XmStringGetLtoR (text, XmSTRING_DEFAULT_CHARSET, &s)) |
02e8b2f9 | 95 | { |
a4294b78 JS |
96 | wxString str(s); |
97 | XtFree (s); | |
98 | XmStringFree(text); | |
99 | return str; | |
02e8b2f9 | 100 | } |
a4294b78 | 101 | else |
02e8b2f9 | 102 | { |
15d5ab67 | 103 | // XmStringFree(text); |
a4294b78 | 104 | return wxEmptyString; |
02e8b2f9 | 105 | } |
4bb6408c JS |
106 | } |
107 | ||
31528cd3 | 108 | bool wxControl::ProcessCommand(wxCommandEvent & event) |
4bb6408c | 109 | { |
31528cd3 VZ |
110 | #if WXWIN_COMPATIBILITY |
111 | if ( m_callback ) | |
4bb6408c | 112 | { |
31528cd3 VZ |
113 | (void)(*m_callback)(this, event); |
114 | ||
115 | return TRUE; | |
4bb6408c JS |
116 | } |
117 | else | |
31528cd3 | 118 | #endif // WXWIN_COMPATIBILITY |
dfe1eee3 | 119 | |
31528cd3 | 120 | return GetEventHandler()->ProcessEvent(event); |
4bb6408c | 121 | } |