]> cygwin.com Git - cygwin-apps/setup.git/blob - other.cc
* Replace everything with a new GUI version
[cygwin-apps/setup.git] / other.cc
1 /*
2 * Copyright (c) 2000, Red Hat, Inc.
3 *
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.
8 *
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
11 *
12 * Written by DJ Delorie <dj@cygnus.com>
13 *
14 */
15
16 /* This handles the "other URL" option from the mirror site
17 selection. */
18
19 #include "win32.h"
20 #include <shlobj.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include "dialog.h"
24 #include "resource.h"
25 #include "state.h"
26 #include "msg.h"
27
28
29 static void
30 check_if_enable_next (HWND h)
31 {
32 EnableWindow (GetDlgItem (h, IDOK), other_url ? 1 : 0);
33 }
34
35 static void
36 load_dialog (HWND h)
37 {
38 eset (h, IDC_OTHER_URL, other_url);
39 check_if_enable_next (h);
40 }
41
42 static void
43 save_dialog (HWND h)
44 {
45 other_url = eget (h, IDC_OTHER_URL, other_url);
46 }
47
48 static BOOL
49 dialog_cmd (HWND h, int id, HWND hwndctl, UINT code)
50 {
51 switch (id)
52 {
53
54 case IDC_OTHER_URL:
55 save_dialog (h);
56 check_if_enable_next (h);
57 break;
58
59 case IDOK:
60 save_dialog(h);
61 NEXT(IDD_S_LOAD_INI);
62 break;
63
64 case IDC_BACK:
65 save_dialog(h);
66 NEXT(IDD_SITE);
67 break;
68
69 case IDCANCEL:
70 NEXT(0);
71 break;
72 }
73 }
74
75 static BOOL CALLBACK
76 dialog_proc (HWND h, UINT message, WPARAM wParam, LPARAM lParam)
77 {
78 switch (message)
79 {
80 case WM_INITDIALOG:
81 load_dialog(h);
82 return FALSE;
83 case WM_COMMAND:
84 return HANDLE_WM_COMMAND(h, wParam, lParam, dialog_cmd);
85 }
86 return FALSE;
87 }
88
89 void
90 do_other (HINSTANCE h)
91 {
92 int rv = 0;
93 rv = DialogBox (h, MAKEINTRESOURCE (IDD_OTHER_URL), 0, dialog_proc);
94 if (rv == -1)
95 fatal (IDS_DIALOG_FAILED);
96 }
97
This page took 0.040672 seconds and 5 git commands to generate.