/[winpt]/trunk/Include/wptHotkey.h
ViewVC logotype

Annotation of /trunk/Include/wptHotkey.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 329 - (hide annotations)
Fri Sep 25 16:08:14 2009 UTC (15 years, 5 months ago) by twoaday
File MIME type: text/plain
File size: 1858 byte(s)


1 werner 37 /* wptHotkey.h - Hotkey registration
2 twoaday 180 * Copyright (C) 2001-2006 Timo Schulz
3 werner 37 *
4     * This file is part of WinPT.
5     *
6     * WinPT is free software; you can redistribute it and/or
7     * modify it under the terms of the GNU General Public License
8     * as published by the Free Software Foundation; either version 2
9     * of the License, or (at your option) any later version.
10     *
11     * WinPT 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     * General Public License for more details.
15     */
16     #ifndef WPT_HOTKEY_H
17     #define WPT_HOTKEY_H
18    
19     /* Hotkey IDs. */
20     enum hotkey_id_t {
21 twoaday 329 // clipboard based
22 werner 37 WPT_CLIP_ENCRYPT_ID = 0x3000,
23     WPT_CLIP_DECRYPT_VERIFY_ID = 0x3001,
24     WPT_CLIP_SIGN_ID = 0x3002,
25     WPT_CLIP_SIGN_ENCRYPT_ID = 0x3003,
26 twoaday 329 // current window based
27 werner 37 WPT_CURRWND_ENCRYPT_ID = 0x4000,
28     WPT_CURRWND_DECRYPT_VERIFY_ID = 0x4001,
29     WPT_CURRWND_SIGN_ID = 0x4002,
30     WPT_CURRWND_SIGN_ENCRYPT_ID = 0x4003,
31 twoaday 329 // 'agent' hotkey
32 werner 37 WPT_AGENT_FORGET_ID = 0x5000,
33     };
34    
35     /* Hotkey context. */
36     struct hotkey_s {
37 twoaday 180 const char *name; /* name in the registry. */
38 werner 37 int enabled; /* 1 = enabled. */
39     int id; /* valid ID (see above). */
40     int alt_ctrl; /* hotkey used with ALT+ */
41     int alt_shift; /* hotkey used with SHIFT+ */
42     int key; /* actual key code. */
43     };
44 twoaday 180 typedef struct hotkey_s *hotkey_t;
45 werner 37
46 twoaday 180 extern hotkey_s wpt_hotkeys[];
47 werner 37
48     const char * hotkeys_strerror (void);
49     int hotkeys_register (HWND wnd);
50     int hotkeys_unregister (HWND wnd);
51     int hotkey_register_single (HWND wnd, hotkey_t hk);
52     int hotkey_unregister_single (HWND wnd, hotkey_t hk);
53 twoaday 180 void hotkey_disable (hotkey_t hk);
54     void hotkey_enable (hotkey_t hk, const char * key);
55 werner 37
56     #endif /* WPT_HOTKEY_H */

Properties

Name Value
svn:eol-style native

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26