1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxAcceleratorTable
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "accel.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
26 #include "wx/window.h"
29 #include "wx/msw/accel.h"
31 #include "wx/msw/private.h"
33 IMPLEMENT_DYNAMIC_CLASS(wxAcceleratorTable
, wxObject
)
35 class WXDLLEXPORT wxAcceleratorRefData
: public wxObjectRefData
37 friend class WXDLLEXPORT wxAcceleratorTable
;
39 wxAcceleratorRefData();
40 ~wxAcceleratorRefData();
42 inline HACCEL
GetHACCEL() const { return m_hAccel
; }
48 #define M_ACCELDATA ((wxAcceleratorRefData *)m_refData)
50 wxAcceleratorRefData::wxAcceleratorRefData()
56 wxAcceleratorRefData::~wxAcceleratorRefData()
60 // This function not available in WIN16
61 #if !defined(__WIN16__) && !defined(__TWIN32__)
62 DestroyAcceleratorTable((HACCEL
) m_hAccel
);
68 wxAcceleratorTable::wxAcceleratorTable()
73 wxAcceleratorTable::~wxAcceleratorTable()
77 // Load from .rc resource
78 wxAcceleratorTable::wxAcceleratorTable(const wxString
& resource
)
80 m_refData
= new wxAcceleratorRefData
;
83 #if defined(__WIN32__) && !defined(__TWIN32__)
85 ::LoadAcceleratorsW(wxGetInstance(), (const wxChar
*)resource
);
87 ::LoadAcceleratorsA(wxGetInstance(), (const char *)resource
);
90 ::LoadAccelerators(wxGetInstance(), (const wxChar
*)resource
);
92 M_ACCELDATA
->m_hAccel
= hAccel
;
93 M_ACCELDATA
->m_ok
= (hAccel
!= 0);
96 extern int wxCharCodeWXToMSW(int id
, bool *isVirtual
);
98 // Create from an array
99 #if !defined(__WIN16__) && !defined(__TWIN32__) && !defined(__WXWINE__)
100 wxAcceleratorTable::wxAcceleratorTable(int n
, const wxAcceleratorEntry entries
[])
102 // Not available in WIN16
103 m_refData
= new wxAcceleratorRefData
;
105 ACCEL
* arr
= new ACCEL
[n
];
107 for (i
= 0; i
< n
; i
++)
110 if (entries
[i
].m_flags
& wxACCEL_ALT
)
112 if (entries
[i
].m_flags
& wxACCEL_SHIFT
)
114 if (entries
[i
].m_flags
& wxACCEL_CTRL
)
118 WORD key
= wxCharCodeWXToMSW(entries
[i
].m_keyCode
, & isVirtual
);
121 WORD cmd
= entries
[i
].m_command
;
123 arr
[i
].fVirt
= fVirt
;
128 M_ACCELDATA
->m_hAccel
= ::CreateAcceleratorTable(arr
, n
);
131 M_ACCELDATA
->m_ok
= (M_ACCELDATA
->m_hAccel
!= 0);
134 wxAcceleratorTable::wxAcceleratorTable(int WXUNUSED(n
), const wxAcceleratorEntry
WXUNUSED(entries
)[])
136 // No, we simply gracefully degrade; we don't expect the
137 // developer to pepper their code with #ifdefs just for this.
138 // wxFAIL_MSG("not implemented");
142 bool wxAcceleratorTable::Ok() const
144 return (M_ACCELDATA
&& (M_ACCELDATA
->m_ok
));
147 void wxAcceleratorTable::SetHACCEL(WXHACCEL hAccel
)
150 m_refData
= new wxAcceleratorRefData
;
152 M_ACCELDATA
->m_hAccel
= (HACCEL
) hAccel
;
155 WXHACCEL
wxAcceleratorTable::GetHACCEL() const
159 return (WXHACCEL
) M_ACCELDATA
->m_hAccel
;
162 bool wxAcceleratorTable::Translate(wxWindow
*window
, WXMSG
*wxmsg
) const
164 MSG
*msg
= (MSG
*)wxmsg
;
166 return Ok() && ::TranslateAccelerator(GetHwndOf(window
), GetHaccel(), msg
);