1 |
/* wptW32API.h - Common API interface |
2 |
* Copyright (C) 2001-2005 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 |
/*#include "wptCrypto.h"*/ |
25 |
#include "wptUtil.h" |
26 |
|
27 |
struct reminder_ctx_s { |
28 |
int msecs; |
29 |
}; |
30 |
|
31 |
struct curr_wnd_ctx { |
32 |
HWND main; |
33 |
HWND focus; |
34 |
}; |
35 |
|
36 |
struct LOCK { |
37 |
char *file; |
38 |
int size; |
39 |
HANDLE fh; |
40 |
}; |
41 |
|
42 |
|
43 |
/*-- wptMAPI.cpp --*/ |
44 |
int mapi_init (void); |
45 |
int mapi_send_pubkey (const char * keyid, char * keyfile); |
46 |
int mapi_send_ascfile (char * ascfile); |
47 |
void mapi_deinit (void); |
48 |
|
49 |
/*-- wptW32API.cpp --*/ |
50 |
char* make_filename (const char *path, const char *file, const char *ext); |
51 |
int init_file_lock (LOCK *ctx, const char *file); |
52 |
void release_file_lock (LOCK *ctx); |
53 |
int file_exist_check (const char *fname); |
54 |
int dir_exist_check (const char *dir); |
55 |
DWORD get_file_size (const char *fname); |
56 |
|
57 |
int get_window_contents( HWND old_hwnd, curr_wnd_ctx *ctx, int *r_hotkey ); |
58 |
int set_window_contents( HWND old_hwnd, curr_wnd_ctx *ctx ); |
59 |
|
60 |
void center_window (HWND hwndChild, HWND hwndParent); |
61 |
void center_window2 (HWND hwndChild, HWND parent, HWND style); |
62 |
HANDLE window_reminder (struct reminder_ctx_s * ctx); |
63 |
void set_active_window (HWND dlg); |
64 |
void reset_active_window (void); |
65 |
|
66 |
void set_menu_text (HMENU menu, int m_uid, const char *text); |
67 |
void set_menu_text_bypos (HMENU menu, int pos, const char *text); |
68 |
void set_menu_state (HMENU menu, int m_uid, int state); |
69 |
|
70 |
char* get_clip_text (HWND hwnd); |
71 |
int set_clip_text (HWND hwnd, const char *text, int nbytes); |
72 |
int set_clip_text2 (HWND hwnd, const char *text, int nbytes, int as_footer); |
73 |
int dialog_box_param( HINSTANCE hinst, LPCTSTR name, HWND parent, DLGPROC fnc, |
74 |
LPARAM param, LPCTSTR title, int title_id ); |
75 |
int msg_box( HWND hwnd, const char *text, const char *title, int mode ); |
76 |
int check_date( SYSTEMTIME *st ); |
77 |
const char* get_filesave_dlg (HWND hwnd, const char *title, |
78 |
const char *filter, const char *name); |
79 |
const char* get_fileopen_dlg (HWND hwnd, const char *title, |
80 |
const char *filter, const char *name); |
81 |
const char * get_folder_dlg( HWND hwnd, const char * title, const char * name ); |
82 |
char * m_strdup( const char *str ); |
83 |
const char * strtimestamp (long timestamp); |
84 |
|
85 |
|
86 |
#define listbox_add_string(lb, string) \ |
87 |
SendMessage( (lb), LB_ADDSTRING, 0, (LPARAM)(LPCSTR)(string) ) |
88 |
|
89 |
#define listbox_get_cursel(lb) \ |
90 |
SendMessage( (lb), LB_GETCURSEL, 0, 0 ) |
91 |
|
92 |
#define combox_add_string(cb, string) \ |
93 |
SendMessage( (cb), CB_ADDSTRING, 0, (LPARAM)(LPCSTR)(string) ) |
94 |
|
95 |
#define item_get_text_length(dlg, itm) \ |
96 |
SendDlgItemMessage ((dlg), (itm), WM_GETTEXTLENGTH, 0, 0) |
97 |
|
98 |
#ifdef _MSC_VER |
99 |
#include <htmlhelp.h> |
100 |
|
101 |
/* Support for the new html context sentensive help. For |
102 |
now it can be only used with native W32 compilers. */ |
103 |
#define html_help_init(cookie) \ |
104 |
HtmlHelp (NULL, NULL, HH_INITIALIZE, (DWORD)(cookie)) |
105 |
|
106 |
#define html_help_deinit() \ |
107 |
HtmlHelp (NULL, NULL, HH_UNINITIALIZE, 0) |
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) 0 |
118 |
#define html_help_deinit() 0 |
119 |
#define html_help_dispatch(param, file, helparr) 0 |
120 |
#endif |
121 |
|
122 |
#endif /* WPT_W32_API_H */ |