Configuration methods
| 62 | |
| 63 | // Configuration methods |
| 64 | void CPointerAction::InitDefaults() |
| 65 | { |
| 66 | // General attributes |
| 67 | SetXSpeed (10); |
| 68 | SetYSpeed (10); |
| 69 | SetAcceleration (2); |
| 70 | SetClickMode (CPointerAction::DWELL); |
| 71 | SetBeepOnClick (true); |
| 72 | SetSmoothness (2); |
| 73 | SetEasyStopValue (1); |
| 74 | SetWrapPointer(false); |
| 75 | SetSendActionWait(0); |
| 76 | |
| 77 | // Workspace limits |
| 78 | SetRestrictedWorkingArea (false); |
| 79 | SetTopWorkspace(1); |
| 80 | SetLeftWorkspace(1); |
| 81 | SetRightWorkspace(1); |
| 82 | SetBottomWorkspace(1); |
| 83 | } |
| 84 | |
| 85 | void CPointerAction::WriteProfileData(wxConfigBase* pConfObj) |
| 86 | { |
nothing calls this directly
no outgoing calls
no test coverage detected