1 /* 2 * Copyright 2014 Piotr Caban for CodeWeavers 3 * 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Lesser General Public 6 * License as published by the Free Software Foundation; either 7 * version 2.1 of the License, or (at your option) any later version. 8 * 9 * This library is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * Lesser General Public License for more details. 13 * 14 * You should have received a copy of the GNU Lesser General Public 15 * License along with this library; if not, write to the Free Software 16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 17 */ 18 19 #define IDS_STATE_NORMAL 0x1000 20 #define IDS_STATE_UNAVAILABLE 0x1001 21 #define IDS_STATE_SELECTED 0x1002 22 #define IDS_STATE_FOCUSED 0x1003 23 #define IDS_STATE_PRESSED 0x1004 24 #define IDS_STATE_CHECKED 0x1005 25 #define IDS_STATE_MIXED 0x1006 26 #define IDS_STATE_READONLY 0x1007 27 #define IDS_STATE_HOTTRACKED 0x1008 28 #define IDS_STATE_DEFAULT 0x1009 29 #define IDS_STATE_EXPANDED 0x100a 30 #define IDS_STATE_COLLAPSED 0x100b 31 #define IDS_STATE_BUSY 0x100c 32 #define IDS_STATE_FLOATING 0x100d 33 #define IDS_STATE_MARQUEED 0x100e 34 #define IDS_STATE_ANIMATED 0x100f 35 #define IDS_STATE_INVISIBLE 0x1010 36 #define IDS_STATE_OFFSCREEN 0x1011 37 #define IDS_STATE_SIZEABLE 0x1012 38 #define IDS_STATE_MOVEABLE 0x1013 39 #define IDS_STATE_SELFVOICING 0x1014 40 #define IDS_STATE_FOCUSABLE 0x1015 41 #define IDS_STATE_SELECTABLE 0x1016 42 #define IDS_STATE_LINKED 0x1017 43 #define IDS_STATE_TRAVERSED 0x1018 44 #define IDS_STATE_MULTISELECTABLE 0x1019 45 #define IDS_STATE_EXTSELECTABLE 0x101a 46 #define IDS_STATE_ALERT_LOW 0x101b 47 #define IDS_STATE_ALERT_MEDIUM 0x101c 48 #define IDS_STATE_ALERT_HIGH 0x101d 49 #define IDS_STATE_PROTECTED 0x101e 50 #define IDS_STATE_HASPOPUP 0x101f 51