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

Contents of /trunk/Include/wptW32API.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 30 - (show annotations)
Sat Oct 22 10:17:59 2005 UTC (19 years, 4 months ago) by twoaday
File MIME type: text/plain
File size: 3581 byte(s)
Sync with old SVN repository.

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
26 enum {
27 FILE_OPEN = 0,
28 FILE_SAVE = 1
29 };
30
31 struct reminder_ctx_s {
32 int msecs;
33 };
34
35 struct curr_wnd_ctx {
36 HWND main;
37 HWND focus;
38 };
39
40 struct LOCK {
41 char *file;
42 int size;
43 HANDLE fh;
44 };
45
46
47 /*-- wptMAPI.cpp --*/
48 int mapi_init (void);
49 int mapi_send_pubkey (const char * keyid, char * keyfile);
50 int mapi_send_ascfile (char * ascfile);
51 void mapi_deinit (void);
52
53 /*-- wptW32API.cpp --*/
54 char* make_filename( const char *path, const char *file, const char *ext );
55 int init_file_lock( LOCK *ctx, const char *file );
56 void release_file_lock( LOCK *ctx );
57 int file_exist_check( const char *fname );
58 int dir_exist_check( const char *dir );
59 size_t get_file_size( const char *fname );
60
61 int get_window_contents( HWND old_hwnd, curr_wnd_ctx *ctx, int *r_hotkey );
62 int set_window_contents( HWND old_hwnd, curr_wnd_ctx *ctx );
63
64 void center_window (HWND hwndChild, HWND hwndParent);
65 void center_window2 (HWND hwndChild, HWND parent, HWND style);
66 HANDLE window_reminder (struct reminder_ctx_s * ctx);
67 void set_active_window (HWND dlg);
68 void reset_active_window (void);
69
70 void set_menu_text (HMENU menu, int m_uid, const char *text);
71 void set_menu_text_bypos (HMENU menu, int pos, const char *text);
72 void set_menu_state (HMENU menu, int m_uid, int state);
73
74 char* get_clip_text (HWND hwnd);
75 int set_clip_text (HWND hwnd, const char *text, int nbytes);
76 int set_clip_text2 (HWND hwnd, const char *text, int nbytes, int as_footer);
77 int dialog_box_param( HINSTANCE hinst, LPCTSTR name, HWND parent, DLGPROC fnc,
78 LPARAM param, LPCTSTR title, int title_id );
79 int msg_box( HWND hwnd, const char *text, const char *title, int mode );
80 int check_date( SYSTEMTIME *st );
81 const char * get_filename_dlg( HWND hwnd, int id, const char * title,
82 const char * filter, const char * name );
83 const char* get_filesave_dlg (HWND hwnd, const char *title,
84 const char *filter, const char *name);
85 const char* get_fileopen_dlg (HWND hwnd, const char *title,
86 const char *filter, const char *name);
87 const char * get_folder_dlg( HWND hwnd, const char * title, const char * name );
88 char * m_strdup( const char *str );
89 const char * strtimestamp (long timestamp);
90
91
92 #define listbox_add_string(lb, string) \
93 SendMessage( (lb), LB_ADDSTRING, 0, (LPARAM)(LPCSTR)(string) )
94
95 #define listbox_get_cursel(lb) \
96 SendMessage( (lb), LB_GETCURSEL, 0, 0 )
97
98 #define combox_add_string(cb, string) \
99 SendMessage( (cb), CB_ADDSTRING, 0, (LPARAM)(LPCSTR)(string) )
100
101 #define item_get_text_length(dlg, itm) \
102 SendDlgItemMessage ((dlg), (itm), WM_GETTEXTLENGTH, 0, 0)
103
104 #endif /* WPT_W32_API_H */

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26