2 * Joystick testing control panel applet resources and definitions
4 * Copyright 2012 Lucas Fialho Zawacki
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #ifndef __WINE_JOYSTICKCPL__
23 #define __WINE_JOYSTICKCPL__
33 IDirectInputEffect
*effect
;
39 IDirectInputDevice8W
*device
;
40 DIDEVICEINSTANCEW instance
;
49 struct Effect
*effects
;
52 #define TEST_MAX_BUTTONS 32
53 #define TEST_MAX_AXES 4
57 HWND buttons
[TEST_MAX_BUTTONS
];
58 HWND axes
[TEST_MAX_AXES
];
64 struct Joystick
*joysticks
;
69 struct Graphics graphics
;
73 #define NUM_PROPERTY_PAGES 3
76 #define IDS_CPL_NAME 1
77 #define IDS_CPL_INFO 2
84 #define IDD_FORCEFEEDBACK 1002
86 #define IDC_JOYSTICKLIST 2000
87 #define IDC_DISABLEDLIST 2001
88 #define IDC_XINPUTLIST 2002
89 #define IDC_BUTTONDISABLE 2010
90 #define IDC_BUTTONENABLE 2011
91 #define IDC_BUTTONRESET 2012
92 #define IDC_BUTTONOVERRIDE 2013
94 #define IDC_TESTSELECTCOMBO 2100
95 #define IDC_TESTGROUPXY 2101
96 #define IDC_TESTGROUPRXRY 2102
97 #define IDC_TESTGROUPZRZ 2103
98 #define IDC_TESTGROUPPOV 2104
100 #define IDC_FFSELECTCOMBO 2200
101 #define IDC_FFEFFECTLIST 2201
106 #define TEST_POLL_TIME 100
108 #define TEST_BUTTON_COL_MAX 8
109 #define TEST_BUTTON_X 8
110 #define TEST_BUTTON_Y 122
111 #define TEST_NEXT_BUTTON_X 30
112 #define TEST_NEXT_BUTTON_Y 25
113 #define TEST_BUTTON_SIZE_X 20
114 #define TEST_BUTTON_SIZE_Y 18
116 #define TEST_AXIS_X 43
117 #define TEST_AXIS_Y 60
118 #define TEST_NEXT_AXIS_X 77
119 #define TEST_AXIS_SIZE_X 3
120 #define TEST_AXIS_SIZE_Y 3
121 #define TEST_AXIS_MIN -25
122 #define TEST_AXIS_MAX 25
124 #define FF_AXIS_X 248
126 #define FF_AXIS_SIZE_X 3
127 #define FF_AXIS_SIZE_Y 3
129 #define FF_PLAY_TIME 2*DI_SECONDS
130 #define FF_PERIOD_TIME FF_PLAY_TIME/4