Document domain parameter of wxTranslations::GetTranslatedString().
[wxWidgets.git] / src / motif / accel.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/motif/accel.cpp
3 // Purpose: wxAcceleratorTable
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 17/09/98
7 // Copyright: (c) Julian Smart
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
13
14 #include "wx/accel.h"
15
16 #ifndef WX_PRECOMP
17 #include "wx/string.h"
18 #include "wx/utils.h"
19 #endif
20
21 #include <ctype.h>
22
23 IMPLEMENT_DYNAMIC_CLASS(wxAcceleratorTable, wxObject)
24
25 class WXDLLEXPORT wxAcceleratorRefData: public wxObjectRefData
26 {
27 friend class wxAcceleratorTable;
28 public:
29 wxAcceleratorRefData();
30 virtual ~wxAcceleratorRefData();
31
32 public:
33 int m_count;
34 wxAcceleratorEntry* m_entries;
35 };
36
37 #define M_ACCELDATA ((wxAcceleratorRefData *)m_refData)
38
39 wxAcceleratorRefData::wxAcceleratorRefData()
40 {
41 m_count = 0;
42 m_entries = NULL;
43 }
44
45 wxAcceleratorRefData::~wxAcceleratorRefData()
46 {
47 wxDELETEA(m_entries);
48 m_count = 0;
49 }
50
51 wxAcceleratorTable::wxAcceleratorTable()
52 {
53 m_refData = NULL;
54 }
55
56 wxAcceleratorTable::~wxAcceleratorTable()
57 {
58 // Data deleted in ~wxObject
59 }
60
61 // Load from .rc resource
62 wxAcceleratorTable::wxAcceleratorTable(const wxString& WXUNUSED(resource))
63 {
64 m_refData = new wxAcceleratorRefData;
65 }
66
67 // Create from an array
68 wxAcceleratorTable::wxAcceleratorTable(int n, const wxAcceleratorEntry entries[])
69 {
70 wxAcceleratorRefData* data = new wxAcceleratorRefData;
71 m_refData = data;
72
73 data->m_count = n;
74 data->m_entries = new wxAcceleratorEntry[n];
75 int i;
76 for (i = 0; i < n; i++)
77 data->m_entries[i] = entries[i];
78
79 }
80
81 bool wxAcceleratorTable::IsOk() const
82 {
83 return (m_refData != NULL);
84 }
85
86 int wxAcceleratorTable::GetCount() const
87 {
88 return M_ACCELDATA->m_count;
89 }
90
91 wxAcceleratorEntry* wxAcceleratorTable::GetEntries() const
92 {
93 return M_ACCELDATA->m_entries;
94 }
95
96 // Implementation use only
97 bool wxAcceleratorEntry::MatchesEvent(const wxKeyEvent& event) const
98 {
99 bool eventAltDown = event.AltDown();
100 bool eventCtrlDown = event.ControlDown();
101 bool eventShiftDown = event.ShiftDown();
102 int eventKeyCode = event.GetKeyCode();
103
104 bool accAltDown = ((GetFlags() & wxACCEL_ALT) == wxACCEL_ALT);
105 bool accCtrlDown = ((GetFlags() & wxACCEL_CTRL) == wxACCEL_CTRL);
106 bool accShiftDown = ((GetFlags() & wxACCEL_SHIFT) == wxACCEL_SHIFT);
107 int accKeyCode = GetKeyCode();
108 int accKeyCode2 = GetKeyCode();
109 if (wxIsascii(accKeyCode2))
110 accKeyCode2 = wxTolower(accKeyCode2);
111
112 return ((eventAltDown == accAltDown) && (eventCtrlDown == accCtrlDown) &&
113 (eventShiftDown == accShiftDown) &&
114 ((eventKeyCode == accKeyCode || eventKeyCode == accKeyCode2))) ;
115 }