Freeciv21
Develop your civilization from humble roots to a global empire
optiondlg_g.h
Go to the documentation of this file.
1 /**************************************************************************
2  Copyright (c) 1996-2020 Freeciv21 and Freeciv contributors. This file is
3  __ __ part of Freeciv21. Freeciv21 is free software: you can
4 / \\..// \ redistribute it and/or modify it under the terms of the GNU
5  ( oo ) General Public License as published by the Free Software
6  \__/ Foundation, either version 3 of the License, or (at your
7  option) any later version. You should have received
8  a copy of the GNU General Public License along with Freeciv21. If not,
9  see https://www.gnu.org/licenses/.
10 **************************************************************************/
11 #pragma once
12 
13 struct option;
14 struct option_set;
15 
16 void option_dialog_popup(const char *name, const struct option_set *poptset);
17 void option_dialog_popdown(const struct option_set *poptset);
18 
19 void option_gui_update(struct option *poption);
const char * name
Definition: inputfile.cpp:118
void option_dialog_popdown(const struct option_set *poptset)
Popdown the option dialog for the option set.
Definition: optiondlg.cpp:798
void option_gui_update(struct option *poption)
Update the GUI for the option.
Definition: optiondlg.cpp:812
void option_dialog_popup(const char *name, const struct option_set *poptset)
Popup the option dialog for the option set.
Definition: optiondlg.cpp:722
Option set structure.
Definition: options.cpp:88
The base class for options.
Definition: options.cpp:209