75 lines
2.2 KiB
C
75 lines
2.2 KiB
C
/*++
|
|
|
|
Copyright (c) 2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
buttons.h
|
|
|
|
Abstract: Contains definitions of the TabletPC Buttons.
|
|
|
|
Environment:
|
|
|
|
User mode
|
|
|
|
Author:
|
|
|
|
Michael Tsang (MikeTs) 20-Apr-2000
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _BUTTONS_H
|
|
#define _BUTTONS_H
|
|
|
|
#define NUM_BUTTONS 5
|
|
|
|
#define BUTCOMBO_NONE 0
|
|
#define BUTCOMBO_CLICK 1
|
|
#define BUTCOMBO_RCLICK 2
|
|
#define BUTCOMBO_AUTOSCROLL 3
|
|
#define BUTCOMBO_BACK 4
|
|
#define BUTCOMBO_FORWARD 5
|
|
#define BUTCOMBO_ALT 6
|
|
#define BUTCOMBO_BACKSPACE 7
|
|
#define BUTCOMBO_CLOSE 8
|
|
#define BUTCOMBO_COPY 9
|
|
#define BUTCOMBO_CTRL 10
|
|
#define BUTCOMBO_CUT 11
|
|
#define BUTCOMBO_DELETE 12
|
|
#define BUTCOMBO_DBLCLICK 13
|
|
#define BUTCOMBO_ENTER 14
|
|
#define BUTCOMBO_EXPLORE_COMPUTER 15
|
|
#define BUTCOMBO_F1 16
|
|
#define BUTCOMBO_F2 17
|
|
#define BUTCOMBO_F3 18
|
|
#define BUTCOMBO_F4 19
|
|
#define BUTCOMBO_F5 20
|
|
#define BUTCOMBO_F6 21
|
|
#define BUTCOMBO_F7 22
|
|
#define BUTCOMBO_F8 23
|
|
#define BUTCOMBO_F9 24
|
|
#define BUTCOMBO_F10 25
|
|
#define BUTCOMBO_F11 26
|
|
#define BUTCOMBO_F12 27
|
|
#define BUTCOMBO_FAVORITES 28
|
|
#define BUTCOMBO_FIND_COMPUTER 29
|
|
#define BUTCOMBO_FIND_FILES 30
|
|
#define BUTCOMBO_MAXIMIZE 31
|
|
#define BUTCOMBO_MINIMIZE 32
|
|
#define BUTCOMBO_PAGE_DOWN 33
|
|
#define BUTCOMBO_PAGE_UP 34
|
|
#define BUTCOMBO_PASTE 35
|
|
#define BUTCOMBO_RECALL_WINDOW 36
|
|
#define BUTCOMBO_REDO 37
|
|
#define BUTCOMBO_RUN 38
|
|
#define BUTCOMBO_SELECT_ALL 39
|
|
#define BUTCOMBO_SHIFT 40
|
|
#define BUTCOMBO_SHOWHIDE_DESKTOP 41
|
|
#define BUTCOMBO_START_MENU 42
|
|
#define BUTCOMBO_STOP 43
|
|
#define BUTCOMBO_UNDO 44
|
|
|
|
#endif //ifndef _BUTTONS_H
|