Initial import of the CDE 2.1.30 sources from the Open Group.
[oweals/cde.git] / cde / lib / DtHelp / VolSelectI.h
1 /* $XConsortium: VolSelectI.h /main/5 1995/10/26 12:34:32 rswiston $ */
2 /************************************<+>*************************************
3  ****************************************************************************
4  **
5  **   File:        VolSelectI.h
6  **
7  **   Project:     DtHelp Project
8  **
9  **   Description: File locating and handling utilities
10  ** 
11  **  (c) Copyright 1993, 1994 Hewlett-Packard Company
12  **  (c) Copyright 1993, 1994 International Business Machines Corp.
13  **  (c) Copyright 1993, 1994 Sun Microsystems, Inc.
14  **  (c) Copyright 1993, 1994 Novell, Inc.
15  **
16  **
17  **
18  ****************************************************************************
19  ************************************<+>*************************************/
20 #ifndef _DtHelp_VolSelectI_h
21 #define _DtHelp_VolSelectI_h
22
23 #include <Xm/Xm.h>
24
25 /* collects all the dlg children together */
26 /* sort of a pseudo widget rec */
27 typedef struct _DtHelpFileDlgChildren {
28           Widget        shell;
29           Widget        form;
30           Widget        label;
31           Widget        list;
32           Widget        prompt;
33           Widget        separator;
34           Widget        closeBtn;
35           Widget        helpBtn;
36 } _DtHelpFileDlgChildren;
37
38 Widget _DtHelpFileListCreateSelectionDialog (
39         DtHelpDialogWidget hw,
40         Widget         parent,
41         Boolean        modalDialog,
42         char *         dlgTitle,
43         XmFontList *   io_titlesFontList,
44         _DtHelpFileList   in_out_list,
45         _DtHelpFileDlgChildren * out_struct);
46
47 #endif /* _DtHelp_VolSelectI_h */
48 /* DON'T ADD ANYTHING AFTER THIS #endif */
49