|
typedef sigc::slot
< Glib::ustring, const
Glib::ustring& > | SlotTranslate |
| For example Glib::ustring on_translate(const Glib::ustring& original);. More...
|
|
typedef sigc::slot< bool,
const Glib::ustring&, const
Glib::ustring&, bool > | SlotOptionArgString |
| For example bool on_option_arg_string(const Glib::ustring& option_name, const Glib::ustring& value, bool has_value);. More...
|
|
typedef sigc::slot< bool,
const Glib::ustring&, const
std::string&, bool > | SlotOptionArgFilename |
| For example bool on_option_arg_filename(const Glib::ustring& option_name, const std::string& value, bool has_value);. More...
|
|
typedef std::vector
< Glib::ustring > | vecustrings |
|
typedef std::vector< std::string > | vecstrings |
|
|
| OptionGroup (const Glib::ustring& name, const Glib::ustring& description, const Glib::ustring& help_description=Glib::ustring()) |
|
| OptionGroup (GOptionGroup* castitem) |
| This always takes ownership of the underlying GOptionGroup, so it is only useful with C functions that return newly-allocated GOptionGroups. More...
|
|
virtual | ~OptionGroup () |
|
virtual bool | on_pre_parse (OptionContext& context, OptionGroup&group) |
|
virtual bool | on_post_parse (OptionContext& context, OptionGroup&group) |
|
virtual void | on_error (OptionContext& context, OptionGroup&group) |
|
void | add_entry (const OptionEntry& entry) |
|
void | add_entry (const OptionEntry& entry, bool&arg) |
|
void | add_entry (const OptionEntry& entry, int&arg) |
|
void | add_entry (const OptionEntry& entry, double&arg) |
|
void | add_entry (const OptionEntry& entry, Glib::ustring&arg) |
|
void | add_entry_filename (const OptionEntry& entry, std::string&arg) |
|
void | add_entry (const OptionEntry& entry, vecustrings&arg) |
|
void | add_entry_filename (const OptionEntry& entry, vecstrings&arg) |
|
void | add_entry (const OptionEntry& entry, const SlotOptionArgString& slot) |
|
void | add_entry_filename (const OptionEntry& entry, const SlotOptionArgFilename& slot) |
|
void | set_translate_func (const SlotTranslate& slot) |
| Sets the function which is used to translate user-visible strings, for –help output. More...
|
|
void | set_translation_domain (const Glib::ustring& domain) |
| A convenience function to use gettext() for translating user-visible strings. More...
|
|
GOptionGroup* | gobj () |
|
const GOptionGroup* | gobj () const |
|
GOptionGroup* | gobj_give_ownership () |
|
An OptionGroup defines the options in a single group.
Libraries which need to parse commandline options are expected to provide a function that allows their OptionGroups to be added to the application's OptionContext.
void Glib::OptionGroup::set_translate_func |
( |
const SlotTranslate& |
slot | ) |
|
Sets the function which is used to translate user-visible strings, for –help output.
Different groups can use a different SlotTranslate. If a translate function is not set, strings are not translated.
If you are using gettext(), you only need to set the translation domain, see set_translation_domain().
- Parameters
-
slot | the slot to be used for translation. |
- Since glibmm 2.28: