2 * Copyright (c) 2000, Red Hat, Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * A copy of the GNU General Public License can be found at
12 * Written by DJ Delorie <dj@cygnus.com>
16 /* The purpose of this file is to manage the dialog box that lets the
17 user choose the source of the install - from the net, from the
18 current directory, or to just download files. */
28 static int rb[] = { IDC_SOURCE_DOWNLOAD, IDC_SOURCE_NETINST, IDC_SOURCE_CWD, 0 };
31 check_if_enable_next (HWND h)
33 EnableWindow (GetDlgItem (h, IDOK), source ? 1 : 0);
39 rbset (h, rb, source);
40 check_if_enable_next (h);
46 source = rbget (h, rb);
50 dialog_cmd (HWND h, int id, HWND hwndctl, UINT code)
55 case IDC_SOURCE_DOWNLOAD:
56 case IDC_SOURCE_NETINST:
59 check_if_enable_next (h);
80 dialog_proc (HWND h, UINT message, WPARAM wParam, LPARAM lParam)
88 return HANDLE_WM_COMMAND (h, wParam, lParam, dialog_cmd);
94 do_source (HINSTANCE h)
97 rv = DialogBox (h, MAKEINTRESOURCE (IDD_SOURCE), 0, dialog_proc);
99 fatal (IDS_DIALOG_FAILED);
101 log (0, "source: %s",
102 (source == IDC_SOURCE_DOWNLOAD) ? "download" :
103 (source == IDC_SOURCE_NETINST) ? "network install" : "from cwd");