]>
git.saurik.com Git - wxWidgets.git/blob - src/common/uiactioncmn.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/uiactioncmn.cpp
3 // Purpose: wxUIActionSimulator common implementation
4 // Author: Kevin Ollivier, Steven Lamerton, Vadim Zeitlin
8 // Copyright: (c) Kevin Ollivier
9 // (c) 2010 Steven Lamerton
10 // (c) 2010 Vadim Zeitlin
11 // Licence: wxWindows licence
12 /////////////////////////////////////////////////////////////////////////////
14 #include "wx/wxprec.h"
16 #if wxUSE_UIACTIONSIMULATOR
18 #include "wx/uiaction.h"
20 bool wxUIActionSimulator::MouseClick(int button
)
30 bool wxUIActionSimulator::MouseDblClick(int button
)
40 bool wxUIActionSimulator::MouseDragDrop(long x1
, long y1
, long x2
, long y2
,
54 wxUIActionSimulator::Key(int keycode
, int modifiers
, bool isDown
)
56 wxASSERT_MSG( (modifiers
& wxMOD_ALTGR
) != wxMOD_ALTGR
,
57 "wxMOD_ALTGR is not implemented" );
58 wxASSERT_MSG( !(modifiers
& wxMOD_META
),
59 "wxMOD_META is not implemented" );
60 wxASSERT_MSG( !(modifiers
& wxMOD_WIN
),
61 "wxMOD_WIN is not implemented" );
64 SimulateModifiers(modifiers
, true);
66 bool rc
= DoKey(keycode
, modifiers
, isDown
);
69 SimulateModifiers(modifiers
, false);
74 void wxUIActionSimulator::SimulateModifiers(int modifiers
, bool isDown
)
76 if ( modifiers
& wxMOD_SHIFT
)
77 DoKey(WXK_SHIFT
, modifiers
, isDown
);
78 if ( modifiers
& wxMOD_ALT
)
79 DoKey(WXK_ALT
, modifiers
, isDown
);
80 if ( modifiers
& wxMOD_CONTROL
)
81 DoKey(WXK_CONTROL
, modifiers
, isDown
);
84 bool wxUIActionSimulator::Char(int keycode
, int modifiers
)
131 Key(keycode
, modifiers
, true);
132 Key(keycode
, modifiers
, false);
137 bool wxUIActionSimulator::Text(const char *s
)
141 const char ch
= *s
++;
142 if ( !Char(ch
, isupper(ch
) ? wxMOD_SHIFT
: 0) )
149 #endif // wxUSE_UIACTIONSIMULATOR