1 /*
2  *  Celestia GTK+ Front-End
3  *  Copyright (C) 2005 Pat Suwalski <pat@suwalski.net>
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  $Id: dialog-options.h,v 1.1 2005-12-06 03:19:35 suwalski Exp $
11  */
12 
13 #ifndef GTK_DIALOG_OPTIONS_H
14 #define GTK_DIALOG_OPTIONS_H
15 
16 #include "common.h"
17 
18 /* Entry Function */
19 void dialogViewOptions(AppData* app);
20 
21 
22 /* Local data */
23 static const char * const ambientLabels[]=
24 {
25     "None",
26     "Low",
27     "Medium",
28     NULL
29 };
30 
31 static const char * const infoLabels[]=
32 {
33     "None",
34     "Terse",
35     "Verbose",
36     NULL
37 };
38 
39 #endif /* GTK_DIALOG_OPTIONS_H */
40