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

Contents of /trunk/Include/wptW32API.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 205 - (show annotations)
Thu Apr 27 12:46:03 2006 UTC (18 years, 10 months ago) by twoaday
File MIME type: text/plain
File size: 4583 byte(s)
2006-04-27  Timo Schulz  <ts@g10code.de>
                                                                                
        * wptKeyManager.cpp (km_get_key_ptr): New.
        * wptListview.cpp (listview_get_item_text): Drop utf8 support.
        * wptKeyCache.cpp (keycache_decode_uids): New.
        (free_native_uids): New.
        * wptKeyEdit.cpp (uid_inf_colon_handler): Do utf8 decodig here.
                                                                                
2006-04-26  Timo Schulz  <ts@g10code.de>
                                                                                
        * wptKeylist.cpp (get_keyid_from_fpr): New.
        * wptDecryptClipDlg.cpp (clip_decrypt_dlg): Use it here.
        * wptVerifyList.cpp (verlist_add_sig): Likewise.


1 /* wptW32API.h - Common API interface
2 * Copyright (C) 2001-2006 Timo Schulz
3 *
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 * You should have received a copy of the GNU General Public License
17 * along with WinPT; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #ifndef WPT_W32_API_H
22 #define WPT_W32_API_H
23
24 /* Macros to change the cursor */
25 #define op_begin() SetCursor (LoadCursor (NULL, IDC_WAIT))
26 #define op_end() SetCursor (LoadCursor (NULL, IDC_ARROW))
27
28 #include "wptCrypto.h"
29 #include "wptUtil.h"
30
31 struct curr_wnd_ctx {
32 HWND main;
33 HWND focus;
34 };
35
36 /*-- wptMAPI.cpp --*/
37 int mapi_init (void);
38 int mapi_send_pubkey (const char *keyid, char *keyfile);
39 int mapi_send_ascfile (char *ascfile);
40 void mapi_deinit (void);
41
42 /*-- wptSafeEditCtrl.cpp --*/
43 UINT SafeGetDlgItemText (HWND dlg, int id, char *buf, int buflen);
44 void safe_edit_control_init (HWND dlg, int ctlid);
45 void safe_edit_control_free (HWND dlg, int ctlid);
46
47 /*-- wptW32API.cpp --*/
48 char* make_filename (const char *path, const char *file, const char *ext);
49 char* make_special_filename (int folder, const char *file, const char *ext);
50 int file_exist_check (const char *fname);
51 int dir_exist_check (const char *dir);
52 DWORD get_file_size (const char *fname);
53 int get_file_version (const char *fname, WORD *major, WORD *minor,
54 WORD *patch1, WORD *patch2);
55
56 int get_window_contents( HWND old_hwnd, curr_wnd_ctx *ctx, int *r_hotkey );
57 int set_window_contents( HWND old_hwnd, curr_wnd_ctx *ctx );
58
59 void center_window (HWND hwndChild, HWND hwndParent);
60 void center_window2 (HWND hwndChild, HWND parent, HWND style);
61 void force_foreground_window (HWND dlg, int msecs);
62
63 void insert_menu_item (HMENU hm, int by_pos, UINT m_id, const char *text);
64 void set_menu_text (HMENU menu, UINT m_uid, const char *text);
65 void set_menu_text_bypos (HMENU menu, UINT pos, const char *text);
66 void set_menu_state (HMENU menu, UINT m_uid, UINT state);
67 UINT get_menu_state (HMENU menu, UINT m_uid);
68
69 char* get_clip_text (HWND hwnd);
70 int set_clip_text (HWND hwnd, const char *text, int nbytes);
71 int set_clip_text2 (HWND hwnd, const char *text, int nbytes, int as_footer);
72 int dialog_box_param( HINSTANCE hinst, LPCTSTR name, HWND parent, DLGPROC fnc,
73 LPARAM param, LPCTSTR title, int title_id );
74 int msg_box( HWND hwnd, const char *text, const char *title, int mode );
75 int check_date( SYSTEMTIME *st );
76 const char* get_filesave_dlg (HWND hwnd, const char *title,
77 const char *filter, const char *name);
78 const char* get_fileopen_dlg (HWND hwnd, const char *title,
79 const char *filter, const char *name);
80 const char * get_folder_dlg( HWND hwnd, const char * title, const char * name );
81 char * m_strdup (const char *str);
82 const char * strtimestamp (long timestamp);
83 const char* get_locale_date (long tm_t, char *buf, DWORD buflen);
84 int get_temp_name (char *buf, DWORD buflen, const char *name);
85
86 int GetDlgItemText_utf8 (HWND dlg, int id, char **r_txt);
87
88 #define listbox_add_string(lb, string) \
89 SendMessage( (lb), LB_ADDSTRING, 0, (LPARAM)(LPCSTR)(string) )
90
91 #define listbox_get_cursel(lb) \
92 SendMessage( (lb), LB_GETCURSEL, 0, 0 )
93
94 #define combox_add_string(cb, string) \
95 SendMessage( (cb), CB_ADDSTRING, 0, (LPARAM)(LPCSTR)(string) )
96
97 #define item_get_text_length(dlg, itm) \
98 SendDlgItemMessage ((dlg), (itm), WM_GETTEXTLENGTH, 0, 0)
99
100 #ifdef _MSC_VER
101 #include <htmlhelp.h>
102
103 #define html_help_init(cookie) \
104 HtmlHelp (NULL, NULL, HH_INITIALIZE, (DWORD)(cookie))
105
106 #define html_help_deinit(cookie) \
107 HtmlHelp (NULL, NULL, HH_UNINITIALIZE, (DWORD)(cookie))
108
109 #define html_help_dispatch(param, file, helparr) do { \
110 HELPINFO *inf; \
111 inf = (HELPINFO *)param; \
112 if (inf->iContextType == HELPINFO_WINDOW) \
113 HtmlHelp ((HWND)inf->hItemHandle, file, \
114 HH_TP_HELP_CONTEXTMENU, (DWORD)helparr); \
115 } while (0)
116 #else
117 #define html_help_init(cookie) do {} while (0)
118 #define html_help_deinit(cookie) do { (cookie) = 0; } while (0)
119 #define html_help_dispatch(param, file, helparr) do {} while (0)
120 #endif
121
122 #endif /* WPT_W32_API_H */

Properties

Name Value
svn:eol-style native

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26