More Motif stuff incl. beginnings of wxToolBar
[wxWidgets.git] / src / motif / button.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: button.cpp
3 // Purpose: wxButton
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 17/09/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "button.h"
14 #endif
15
16 #include "wx/button.h"
17 #include "wx/utils.h"
18
19 #include <Xm/PushBG.h>
20 #include <Xm/PushB.h>
21
22 #include "wx/motif/private.h"
23
24 void wxButtonCallback (Widget w, XtPointer clientData, XtPointer ptr);
25
26 #if !USE_SHARED_LIBRARY
27 IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl)
28 #endif
29
30 // Button
31
32 bool wxButton::Create(wxWindow *parent, wxWindowID id, const wxString& label,
33 const wxPoint& pos,
34 const wxSize& size, long style,
35 const wxValidator& validator,
36 const wxString& name)
37 {
38 SetName(name);
39 SetValidator(validator);
40 m_windowStyle = style;
41 m_backgroundColour = parent->GetBackgroundColour();
42 m_foregroundColour = parent->GetForegroundColour();
43
44 parent->AddChild((wxButton *)this);
45
46 if (id == -1)
47 m_windowId = NewControlId();
48 else
49 m_windowId = id;
50
51 wxString label1(wxStripMenuCodes(label));
52
53 XmString text = XmStringCreateSimple ((char*) (const char*) label1);
54 Widget parentWidget = (Widget) parent->GetClientWidget();
55
56 /*
57 * Patch Note (important)
58 * There is no major reason to put a defaultButtonThickness here.
59 * Not requesting it give the ability to put wxButton with a spacing
60 * as small as requested. However, if some button become a DefaultButton,
61 * other buttons are no more aligned -- This is why we set
62 * defaultButtonThickness of ALL buttons belonging to the same wxPanel,
63 * in the ::SetDefaultButton method.
64 */
65 m_mainWidget = (WXWidget) XtVaCreateManagedWidget ("button",
66 xmPushButtonWidgetClass,
67 parentWidget,
68 XmNlabelString, text,
69 // XmNdefaultButtonShadowThickness, 1, // See comment for wxButton::SetDefault
70 NULL);
71
72 XmStringFree (text);
73
74 XtAddCallback ((Widget) m_mainWidget, XmNactivateCallback, (XtCallbackProc) wxButtonCallback,
75 (XtPointer) this);
76
77
78 SetCanAddEventHandler(TRUE);
79 AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, size.x, size.y);
80
81 SetFont(* parent->GetFont());
82 ChangeBackgroundColour();
83
84 return TRUE;
85 }
86
87 void wxButton::SetDefault()
88 {
89 wxWindow *parent = (wxWindow *)GetParent();
90 if (parent)
91 parent->SetDefaultItem(this);
92
93 // We initially do not set XmNdefaultShadowThickness, to have small buttons.
94 // Unfortunately, buttons are now mis-aligned. We try to correct this
95 // now -- setting this ressource to 1 for each button in the same row.
96 // Because it's very hard to find wxButton in the same row,
97 // correction is straighforward: we set resource for all wxButton
98 // in this parent (but not sub panels)
99 for (wxNode * node = parent->GetChildren ()->First (); node; node = node->Next ())
100 {
101 wxButton *item = (wxButton *) node->Data ();
102 if (item->IsKindOf(CLASSINFO(wxButton)))
103 {
104 bool managed = XtIsManaged((Widget) item->GetMainWidget());
105 if (managed)
106 XtUnmanageChild ((Widget) item->GetMainWidget());
107
108 XtVaSetValues ((Widget) item->GetMainWidget(),
109 XmNdefaultButtonShadowThickness, 1,
110 NULL);
111
112 if (managed)
113 XtManageChild ((Widget) item->GetMainWidget());
114 }
115 } // while
116
117 // XtVaSetValues((Widget)handle, XmNshowAsDefault, 1, NULL);
118 XtVaSetValues ((Widget) parent->GetMainWidget(), XmNdefaultButton, (Widget) GetMainWidget(), NULL);
119 }
120
121 void wxButton::Command (wxCommandEvent & event)
122 {
123 ProcessCommand (event);
124 }
125
126 void wxButtonCallback (Widget w, XtPointer clientData, XtPointer ptr)
127 {
128 if (!wxGetWindowFromTable(w))
129 // Widget has been deleted!
130 return;
131
132 wxButton *item = (wxButton *) clientData;
133 wxCommandEvent event (wxEVT_COMMAND_BUTTON_CLICKED, item->GetId());
134 event.SetEventObject(item);
135 item->ProcessCommand (event);
136 }
137
138 void wxButton::ChangeFont()
139 {
140 // TODO
141 }
142
143 void wxButton::ChangeBackgroundColour()
144 {
145 // TODO
146 }
147
148 void wxButton::ChangeForegroundColour()
149 {
150 // TODO
151 }
152