00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef GTK_DIALOG_OPTIONS_H
00014 #define GTK_DIALOG_OPTIONS_H
00015
00016 #include "common.h"
00017
00018
00019 void dialogViewOptions(AppData* app);
00020
00021
00022
00023 static const char * const ambientLabels[]=
00024 {
00025 "None",
00026 "Low",
00027 "Medium",
00028 NULL
00029 };
00030
00031 static const char * const infoLabels[]=
00032 {
00033 "None",
00034 "Terse",
00035 "Verbose",
00036 NULL
00037 };
00038
00039 #endif