]> cygwin.com Git - cygwin-apps/setup.git/blame - dialog.h
2002-05-02 Robert Collins <rbtcollins@hotmail.com>
[cygwin-apps/setup.git] / dialog.h
CommitLineData
23c9e63c
DD
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
3c054baf
RC
16#include "String++.h"
17
23c9e63c
DD
18/* global instance for the application; set in main.cc */
19extern HINSTANCE hinstance;
20
21/* used by main.cc to select the next do_* function */
22extern int next_dialog;
23
f57c332f
DD
24/* either "nothing to do" or "setup complete" or something like that */
25extern int exit_msg;
26
ab57ceaa 27#define D(x) void x(HINSTANCE _h, HWND owner)
23c9e63c 28
904d24fe
DD
29/* prototypes for all the do_* functions (most called by main.cc) */
30
b24c88b3
RC
31D (do_choose);
32D (do_desktop);
33D (do_download);
34D (do_fromcwd);
35D (do_ini);
36D (do_install);
37D (do_local_dir);
38D (do_net);
39D (do_other);
40D (do_postinstall);
41D (do_root);
42D (do_site);
43D (do_source);
44D (do_splash);
23c9e63c
DD
45
46#undef D
47
48/* end this dialog and select the next. Pass 0 to exit the program */
ed96c6da 49#define NEXT(id) EndDialog((HWND)h, 0), next_dialog = id
23c9e63c
DD
50
51/* Get the value of an EditText control. Pass the previously stored
52 value and it will free the memory if needed. */
b24c88b3 53
23c9e63c
DD
54char *eget (HWND h, int id, char *var);
55
3c054baf
RC
56/* Get the value of an EditText control. */
57
58String egetString (HWND h, int id);
59
23c9e63c
DD
60/* Same, but convert the value to an integer */
61
b24c88b3 62int eget (HWND h, int id);
23c9e63c 63
3c054baf 64/* Set the EditText control to the given value */
23c9e63c 65
b24c88b3 66void eset (HWND h, int id, const char *var);
3c054baf 67void eset (HWND h, int id, String const);
b24c88b3 68void eset (HWND h, int id, int var);
23c9e63c
DD
69
70/* RadioButtons. ids is a null-terminated list of IDs. Get
71 returns the selected ID (or zero), pass an ID to set */
72
b24c88b3
RC
73int rbget (HWND h, int *ids);
74void rbset (HWND h, int *ids, int id);
23c9e63c
DD
75
76/* *This* version of fatal (compare with msg.h) uses GetLastError() to
77 format a suitable error message. Similar to perror() */
78
b24c88b3 79void fatal (const char *msg) __attribute__ ((noreturn));
This page took 0.038741 seconds and 5 git commands to generate.