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

Annotation of /trunk/Include/wptW32API.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 279 - (hide annotations)
Mon Jan 15 22:02:32 2007 UTC (18 years, 1 month ago) by twoaday
File MIME type: text/plain
File size: 4675 byte(s)


1 werner 37 /* wptW32API.h - Common API interface
2 twoaday 151 * 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     * 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 twoaday 195 /* 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 twoaday 121 #include "wptCrypto.h"
29 werner 37 #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 twoaday 151 int mapi_send_pubkey (const char *keyid, char *keyfile);
39     int mapi_send_ascfile (char *ascfile);
40 werner 37 void mapi_deinit (void);
41    
42 twoaday 182 /*-- 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 werner 37 /*-- wptW32API.cpp --*/
48 twoaday 77 char* make_filename (const char *path, const char *file, const char *ext);
49 twoaday 151 char* make_special_filename (int folder, const char *file, const char *ext);
50 twoaday 77 int file_exist_check (const char *fname);
51     int dir_exist_check (const char *dir);
52     DWORD get_file_size (const char *fname);
53 twoaday 129 int get_file_version (const char *fname, WORD *major, WORD *minor,
54 twoaday 121 WORD *patch1, WORD *patch2);
55 werner 37
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 twoaday 129 void force_foreground_window (HWND dlg, int msecs);
62 werner 37
63 twoaday 192 void insert_menu_item (HMENU hm, int by_pos, UINT m_id, const char *text);
64 twoaday 129 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 werner 37
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 twoaday 129 char * m_strdup (const char *str);
82     const char* get_locale_date (long tm_t, char *buf, DWORD buflen);
83 twoaday 279 const char* get_locale_time (long tm_t, char *buf, DWORD buflen);
84     const char* get_locale_timedate (long tm_t, char *buf, DWORD buflen);
85 twoaday 175 int get_temp_name (char *buf, DWORD buflen, const char *name);
86 werner 37
87 twoaday 204 int GetDlgItemText_utf8 (HWND dlg, int id, char **r_txt);
88    
89 werner 37 #define listbox_add_string(lb, string) \
90     SendMessage( (lb), LB_ADDSTRING, 0, (LPARAM)(LPCSTR)(string) )
91    
92     #define listbox_get_cursel(lb) \
93     SendMessage( (lb), LB_GETCURSEL, 0, 0 )
94    
95     #define combox_add_string(cb, string) \
96     SendMessage( (cb), CB_ADDSTRING, 0, (LPARAM)(LPCSTR)(string) )
97    
98     #define item_get_text_length(dlg, itm) \
99     SendDlgItemMessage ((dlg), (itm), WM_GETTEXTLENGTH, 0, 0)
100    
101 twoaday 80 #ifdef _MSC_VER
102     #include <htmlhelp.h>
103    
104     #define html_help_init(cookie) \
105     HtmlHelp (NULL, NULL, HH_INITIALIZE, (DWORD)(cookie))
106    
107 twoaday 174 #define html_help_deinit(cookie) \
108     HtmlHelp (NULL, NULL, HH_UNINITIALIZE, (DWORD)(cookie))
109 twoaday 80
110     #define html_help_dispatch(param, file, helparr) do { \
111     HELPINFO *inf; \
112     inf = (HELPINFO *)param; \
113     if (inf->iContextType == HELPINFO_WINDOW) \
114     HtmlHelp ((HWND)inf->hItemHandle, file, \
115     HH_TP_HELP_CONTEXTMENU, (DWORD)helparr); \
116     } while (0)
117     #else
118 twoaday 129 #define html_help_init(cookie) do {} while (0)
119 twoaday 174 #define html_help_deinit(cookie) do { (cookie) = 0; } while (0)
120 twoaday 129 #define html_help_dispatch(param, file, helparr) do {} while (0)
121 twoaday 80 #endif
122    
123 werner 37 #endif /* WPT_W32_API_H */

Properties

Name Value
svn:eol-style native

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26