/[winpt]/trunk/Src/wptFilePrefsDlg.cpp
ViewVC logotype

Annotation of /trunk/Src/wptFilePrefsDlg.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 36 - (hide annotations)
Thu Oct 27 15:25:13 2005 UTC (19 years, 4 months ago) by werner
File size: 1973 byte(s)
First set of changes to use autotools for building.
1 werner 36 /* wptFilePrefs.cpp - File Manager preferences
2     * Copyright (C) 2001, 2002 Timo Schulz
3     *
4     * This file is part of WinPT.
5     *
6     * WinPT is free software; you can redistribute it and/or modify
7     * it under the terms of the GNU General Public License as published by
8     * the Free Software Foundation; either version 2 of the License, or
9     * (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
14     * GNU 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     #ifdef HAVE_CONFIG_H
22     #include <config.h>
23     #endif
24    
25     #include <windows.h>
26     #include <windows.h>
27    
28     #include "../resource.h"
29     #include "wptW32API.h"
30    
31     LRESULT CALLBACK
32     file_prefs_dlg_proc( HWND dlg, UINT msg, WPARAM wparam, LPARAM lparam )
33     {
34     HWND cb;
35    
36     switch( msg ) {
37     case WM_INITDIALOG:
38     cb = GetDlgItem( dlg, IDC_FILE_PREFS_ALGO );
39     combox_add_string( cb, (char *)"3DES" );
40     combox_add_string( cb, (char *)"CAST5" );
41     combox_add_string( cb, (char *)"BLOWFISH" );
42     combox_add_string( cb, (char *)"AES128" );
43     combox_add_string( cb, (char *)"AES192" );
44     combox_add_string( cb, (char *)"AES256" );
45     combox_add_string( cb, (char *)"TWOFISH" );
46     combox_add_string( cb, CB_SETCURSEL, (WPARAM)1, 0 );
47     return TRUE;
48    
49     case WM_SYSCOMMAND:
50     if( LOWORD( wparam ) == SC_CLOSE )
51     EndDialog( dlg, TRUE );
52     return FALSE;
53    
54     case WM_COMMAND:
55     switch( LOWORD(wparam) ) {
56     case IDOK:
57     EndDialog( dlg, TRUE );
58     return TRUE;
59     }
60     break;
61     }
62    
63     return FALSE;
64     } /* file_prefs_dlg_proc */

Properties

Name Value
svn:eol-style native

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26