1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "button.h"
16 #include "wx/button.h"
19 #include <Xm/PushBG.h>
22 #include "wx/motif/private.h"
24 void wxButtonCallback (Widget w
, XtPointer clientData
, XtPointer ptr
);
26 #if !USE_SHARED_LIBRARY
27 IMPLEMENT_DYNAMIC_CLASS(wxButton
, wxControl
)
32 bool wxButton::Create(wxWindow
*parent
, wxWindowID id
, const wxString
& label
,
34 const wxSize
& size
, long style
,
35 const wxValidator
& validator
,
39 SetValidator(validator
);
40 m_windowStyle
= style
;
41 m_backgroundColour
= parent
->GetBackgroundColour();
42 m_foregroundColour
= parent
->GetForegroundColour();
44 parent
->AddChild((wxButton
*)this);
47 m_windowId
= NewControlId();
51 wxString
label1(wxStripMenuCodes(label
));
53 XmString text
= XmStringCreateSimple ((char*) (const char*) label1
);
54 Widget parentWidget
= (Widget
) parent
->GetClientWidget();
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.
65 m_mainWidget
= (WXWidget
) XtVaCreateManagedWidget ("button",
66 xmPushButtonWidgetClass
,
69 // XmNdefaultButtonShadowThickness, 1, // See comment for wxButton::SetDefault
74 XtAddCallback ((Widget
) m_mainWidget
, XmNactivateCallback
, (XtCallbackProc
) wxButtonCallback
,
77 m_windowFont
= parent
->GetFont();
80 SetCanAddEventHandler(TRUE
);
81 AttachWidget (parent
, m_mainWidget
, (WXWidget
) NULL
, pos
.x
, pos
.y
, size
.x
, size
.y
);
83 ChangeBackgroundColour();
88 void wxButton::SetDefault()
90 wxWindow
*parent
= (wxWindow
*)GetParent();
92 parent
->SetDefaultItem(this);
94 // We initially do not set XmNdefaultShadowThickness, to have small buttons.
95 // Unfortunately, buttons are now mis-aligned. We try to correct this
96 // now -- setting this ressource to 1 for each button in the same row.
97 // Because it's very hard to find wxButton in the same row,
98 // correction is straighforward: we set resource for all wxButton
99 // in this parent (but not sub panels)
100 for (wxNode
* node
= parent
->GetChildren ()->First (); node
; node
= node
->Next ())
102 wxButton
*item
= (wxButton
*) node
->Data ();
103 if (item
->IsKindOf(CLASSINFO(wxButton
)))
105 bool managed
= XtIsManaged((Widget
) item
->GetMainWidget());
107 XtUnmanageChild ((Widget
) item
->GetMainWidget());
109 XtVaSetValues ((Widget
) item
->GetMainWidget(),
110 XmNdefaultButtonShadowThickness
, 1,
114 XtManageChild ((Widget
) item
->GetMainWidget());
118 // XtVaSetValues((Widget)handle, XmNshowAsDefault, 1, NULL);
119 XtVaSetValues ((Widget
) parent
->GetMainWidget(), XmNdefaultButton
, (Widget
) GetMainWidget(), NULL
);
122 void wxButton::Command (wxCommandEvent
& event
)
124 ProcessCommand (event
);
127 void wxButtonCallback (Widget w
, XtPointer clientData
, XtPointer
WXUNUSED(ptr
))
129 if (!wxGetWindowFromTable(w
))
130 // Widget has been deleted!
133 wxButton
*item
= (wxButton
*) clientData
;
134 wxCommandEvent
event (wxEVT_COMMAND_BUTTON_CLICKED
, item
->GetId());
135 event
.SetEventObject(item
);
136 item
->ProcessCommand (event
);
139 void wxButton::ChangeFont(bool keepOriginalSize
)
141 wxWindow::ChangeFont(keepOriginalSize
);
144 void wxButton::ChangeBackgroundColour()
146 DoChangeBackgroundColour(m_mainWidget
, m_backgroundColour
, TRUE
);
149 void wxButton::ChangeForegroundColour()
151 wxWindow::ChangeForegroundColour();