1 |
/* wptFirstRunDlg.cpp - Welcome dialog |
/* wptFirstRunDlg.cpp - Welcome dialog |
2 |
* Copyright (C) 2002-2005 Timo Schulz |
* Copyright (C) 2002-2005 Timo Schulz |
3 |
* |
* |
4 |
* This file is part of WinPT. |
* This file is part of WinPT. |
5 |
* |
* |
6 |
* WinPT is free software; you can redistribute it and/or modify |
* 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 |
* 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 |
* the Free Software Foundation; either version 2 of the License, or |
9 |
* (at your option) any later version. |
* (at your option) any later version. |
10 |
* |
* |
11 |
* WinPT is distributed in the hope that it will be useful, |
* WinPT is distributed in the hope that it will be useful, |
12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU General Public License for more details. |
* GNU General Public License for more details. |
15 |
* |
* |
16 |
* You should have received a copy of the GNU General Public License |
* You should have received a copy of the GNU General Public License |
17 |
* along with WinPT; if not, write to the Free Software Foundation, |
* along with WinPT; if not, write to the Free Software Foundation, |
18 |
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
19 |
*/ |
*/ |
20 |
|
|
21 |
#include <windows.h> |
#ifdef HAVE_CONFIG_H |
22 |
|
#include <config.h> |
23 |
#include "../resource.h" |
#endif |
24 |
#include "wptW32API.h" |
|
25 |
#include "wptGPG.h" |
#include <windows.h> |
26 |
#include "wptTypes.h" |
#include <windows.h> |
27 |
#include "wptCommonCtl.h" |
|
28 |
#include "wptContext.h" |
#include "../resource.h" |
29 |
|
#include "wptW32API.h" |
30 |
|
#include "wptGPG.h" |
31 |
BOOL CALLBACK |
#include "wptTypes.h" |
32 |
first_run_dlg_proc (HWND dlg, UINT msg, WPARAM wparam, LPARAM lparam) |
#include "wptCommonCtl.h" |
33 |
{ |
#include "wptContext.h" |
34 |
static struct first_start_s * ctx; |
|
35 |
|
|
36 |
switch (msg) { |
BOOL CALLBACK |
37 |
case WM_INITDIALOG: |
first_run_dlg_proc (HWND dlg, UINT msg, WPARAM wparam, LPARAM lparam) |
38 |
ctx = (struct first_start_s *)lparam; |
{ |
39 |
if (!ctx) |
static struct first_start_s * ctx; |
40 |
BUG (0); |
|
41 |
CheckDlgButton( dlg, IDC_FIRST_KEYGEN, BST_CHECKED ); |
switch (msg) { |
42 |
SetDlgItemText (dlg, IDC_FIRST_KEYGEN, _("&Generate a GnuPG key pair")); |
case WM_INITDIALOG: |
43 |
SetDlgItemText (dlg, IDC_FIRST_IMPORT, _("&Copy GnuPG keyrings from another location")); |
ctx = (struct first_start_s *)lparam; |
44 |
SetDlgItemText (dlg, IDC_FIRST_SETUP, _("&Specify a new GnuPG home directory")); |
if (!ctx) |
45 |
SetForegroundWindow (dlg); |
BUG (0); |
46 |
center_window (dlg, NULL); |
CheckDlgButton( dlg, IDC_FIRST_KEYGEN, BST_CHECKED ); |
47 |
return TRUE; |
SetDlgItemText (dlg, IDC_FIRST_KEYGEN, _("&Generate a GnuPG key pair")); |
48 |
|
SetDlgItemText (dlg, IDC_FIRST_IMPORT, _("&Copy GnuPG keyrings from another location")); |
49 |
case WM_COMMAND: |
SetDlgItemText (dlg, IDC_FIRST_SETUP, _("&Specify a new GnuPG home directory")); |
50 |
switch (LOWORD (wparam)) { |
SetForegroundWindow (dlg); |
51 |
case IDOK: |
center_window (dlg, NULL); |
52 |
if (IsDlgButtonChecked (dlg, IDC_FIRST_KEYGEN)) |
return TRUE; |
53 |
ctx->choice = SETUP_KEYGEN; |
|
54 |
else if (IsDlgButtonChecked (dlg, IDC_FIRST_IMPORT)) |
case WM_COMMAND: |
55 |
ctx->choice = SETUP_IMPORT; |
switch (LOWORD (wparam)) { |
56 |
else |
case IDOK: |
57 |
ctx->choice = -1; |
if (IsDlgButtonChecked (dlg, IDC_FIRST_KEYGEN)) |
58 |
EndDialog (dlg, TRUE); |
ctx->choice = SETUP_KEYGEN; |
59 |
break; |
else if (IsDlgButtonChecked (dlg, IDC_FIRST_IMPORT)) |
60 |
|
ctx->choice = SETUP_IMPORT; |
61 |
case IDCANCEL: |
else |
62 |
ctx->choice = -1; |
ctx->choice = -1; |
63 |
EndDialog (dlg, FALSE); |
EndDialog (dlg, TRUE); |
64 |
break; |
break; |
65 |
} |
|
66 |
break; |
case IDCANCEL: |
67 |
} |
ctx->choice = -1; |
68 |
|
EndDialog (dlg, FALSE); |
69 |
return FALSE; |
break; |
70 |
} /* first_run_dlg_proc */ |
} |
71 |
|
break; |
72 |
|
} |
73 |
|
|
74 |
|
return FALSE; |
75 |
|
} /* first_run_dlg_proc */ |