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

Annotation of /trunk/Src/wptGPGOptDlg.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 48 - (hide annotations)
Mon Oct 31 21:14:11 2005 UTC (19 years, 4 months ago) by werner
File size: 3831 byte(s)
More changes.  Compiles again but there are at least gettext issues with
w32-gettext.c.  I can't get a gpg-error build with ENABLE_NLS.

1 werner 36 /* wptGPGOptDlg.cpp - WinPT GnuPG GPG Config
2     * Copyright (C) 2001, 2002, 2003, 2005 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    
27     #include "wptTypes.h"
28     #include "wptNLS.h"
29     #include "wptGPG.h"
30     #include "wptCommonCtl.h"
31     #include "wptContext.h" /* for passphrase_s */
32     #include "wptDlgs.h"
33     #include "wptW32API.h"
34     #include "wptErrors.h"
35 werner 47 #include "resource.h"
36 werner 36
37    
38     /* Dialog box procedure for the GPG config file. */
39     BOOL CALLBACK
40     gpgopt_dlg_proc (HWND dlg, UINT msg, WPARAM wparam, LPARAM lparam)
41     {
42     int id, nbytes = 8192;
43     char t[4], *optbuf = NULL;
44    
45     switch (msg) {
46     case WM_INITDIALOG:
47     optbuf = get_gnupg_config ();
48     if (!optbuf)
49     dlg_fatal_error (dlg, _("Could not load GnuPG config file!"));
50     SetDlgItemText (dlg, IDC_GPGOPT_FILE, optbuf);
51     #ifndef LANG_DE
52     SetWindowText (dlg, _("GnuPG Configuration File" ));
53     SetDlgItemText (dlg, IDC_GPGOPT_SAVE, _("&Save"));
54     SetDlgItemText (dlg, IDC_GPGOPT_LOAD, _("&Load"));
55     #endif
56     free_if_alloc( optbuf );
57     SetForegroundWindow( dlg );
58     return TRUE;
59    
60     case WM_SYSCOMMAND:
61     if( LOWORD (wparam) == SC_CLOSE )
62     EndDialog(dlg, TRUE);
63     return FALSE;
64    
65     case WM_COMMAND:
66     switch( LOWORD( wparam ) ) {
67     case IDC_GPGOPT_SAVE:
68     optbuf = new char[nbytes + 1];
69     if( !optbuf )
70     BUG( dlg);
71     nbytes = GetDlgItemText( dlg, IDC_GPGOPT_FILE, optbuf, nbytes );
72     if( !nbytes ) {
73     msg_box( dlg, _("The 'gpg.conf' file is not loaded."), _("GPG Config"), MB_ERR );
74     free_if_alloc( optbuf );
75     return FALSE;
76     }
77     optbuf[nbytes] = '\0';
78     if( check_gnupg_options( optbuf ) ) {
79     msg_box( dlg, _("File contains invalid GnuPG keywords!"), _("GPG Config"), MB_ERR );
80     free_if_alloc( optbuf );
81     return FALSE;
82     }
83     if( set_gnupg_options( optbuf, strlen( optbuf ) ) ) {
84     msg_box( dlg, _("Could not save GnuPG config file."), _("GPG Config"), MB_ERR );
85     free_if_alloc( optbuf );
86     return FALSE;
87     }
88     msg_box( dlg, _("Successfully saved."), _("GPG Config"), MB_OK );
89     free_if_alloc( optbuf );
90     return TRUE;
91    
92     case IDC_GPGOPT_LOAD:
93     if( GetDlgItemText(dlg, IDC_GPGOPT_FILE, t, sizeof t - 1 ) ) {
94     id = msg_box( dlg, _("Current data will be lost!\n"
95     "Are you sure?"), _("GPG Config"), MB_INFO|MB_YESNO );
96     if (id == IDNO)
97     return TRUE;
98     }
99     optbuf = get_gnupg_config ();
100     if (!optbuf)
101     msg_box (dlg, _("Could not load GnuPG config file!"), _("GPG Config"), MB_ERR);
102     SetDlgItemText (dlg, IDC_GPGOPT_FILE, optbuf);
103     free_if_alloc (optbuf);
104     return TRUE;
105    
106     case IDCANCEL:
107     EndDialog( dlg, FALSE );
108     return FALSE;
109     }
110     break;
111     }
112    
113     return 0;
114     }

Properties

Name Value
svn:eol-style native

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26