// Generated by gmmproc 2.66.7 -- DO NOT MODIFY! #ifndef _GTKMM_FONTBUTTON_H #define _GTKMM_FONTBUTTON_H #include #include /* * Copyright (C) 2003 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include //TODO: When we can break ABI: #include // gtk_font_button_set/get_font_name() and property font-name are deprecated // in gtk+ 3.22 in favor of gtk_font_chooser_set/get_font() and // GtkFontChooser:font. They can't be deprecated here because FontChooser // is not a base cvlass. #ifndef DOXYGEN_SHOULD_SKIP_THIS using GtkFontButton = struct _GtkFontButton; using GtkFontButtonClass = struct _GtkFontButtonClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class GTKMM_API FontButton_Class; } // namespace Gtk #endif //DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { /** A button to launch a font selection dialog. * * The Gtk::FontButton is a button which displays the currently selected font and * allows to open a font selection dialog to change the font. It is suitable widget * for selecting a font in a preference dialog. * * The FontButton widget looks like this: * @image html fontbutton1.png * * @ingroup Widgets */ class GTKMM_API FontButton : public Button //TODO: When we can break ABI: public FontChooser { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef FontButton CppObjectType; typedef FontButton_Class CppClassType; typedef GtkFontButton BaseObjectType; typedef GtkFontButtonClass BaseClassType; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ FontButton(FontButton&& src) noexcept; FontButton& operator=(FontButton&& src) noexcept; // noncopyable FontButton(const FontButton&) = delete; FontButton& operator=(const FontButton&) = delete; ~FontButton() noexcept override; #ifndef DOXYGEN_SHOULD_SKIP_THIS private: friend class GTKMM_API FontButton_Class; static CppClassType fontbutton_class_; protected: explicit FontButton(const Glib::ConstructParams& construct_params); explicit FontButton(GtkFontButton* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: /** Get the GType for this class, for use with the underlying GObject type system. */ static GType get_type() G_GNUC_CONST; #ifndef DOXYGEN_SHOULD_SKIP_THIS static GType get_base_type() G_GNUC_CONST; #endif /// Provides access to the underlying C GObject. GtkFontButton* gobj() { return reinterpret_cast(gobject_); } /// Provides access to the underlying C GObject. const GtkFontButton* gobj() const { return reinterpret_cast(gobject_); } public: //C++ methods used to invoke GTK+ virtual functions: protected: //GTK+ Virtual Functions (override these to change behaviour): //Default Signal Handlers:: /// This is a default handler for the signal signal_font_set(). virtual void on_font_set(); private: //TODO: When we can break ABI: _IMPLEMENTS_INTERFACE(FontChooser) public: FontButton(); explicit FontButton(const Glib::ustring& font_name); /** Retrieves the title of the font chooser dialog. * * @newin{2,4} * * @return An internal copy of the title string which must not be freed. */ Glib::ustring get_title() const; /** Sets the title for the font chooser dialog. * * @newin{2,4} * * @param title A string containing the font chooser dialog title. */ void set_title(const Glib::ustring& title); /** Returns whether the selected font is used in the label. * * @newin{2,4} * * @return Whether the selected font is used in the label. */ bool get_use_font() const; /** If @a use_font is true, the font name will be written using the selected font. * * @newin{2,4} * * @param use_font If true, font name will be written using font chosen. */ void set_use_font(bool use_font = true); /** Returns whether the selected size is used in the label. * * @newin{2,4} * * @return Whether the selected size is used in the label. */ bool get_use_size() const; /** If @a use_size is true, the font name will be written using the selected size. * * @newin{2,4} * * @param use_size If true, font name will be written using the selected size. */ void set_use_size(bool use_size = true); /** Retrieves the name of the currently selected font. This name includes * style and size information as well. If you want to render something * with the font, use this string with pango_font_description_from_string() . * If you’re interested in peeking certain values (family name, * style, size, weight) just query these properties from the * Pango::FontDescription object. * * @newin{2,4} * Deprecated: 3.22: Use Gtk::FontChooser::get_font() instead * * @return An internal copy of the font name which must not be freed. */ Glib::ustring get_font_name() const; /** Sets or updates the currently-displayed font in font picker dialog. * * @newin{2,4} * Deprecated: 3.22: Use Gtk::FontChooser::set_font() instead * * @param fontname Name of font to display in font chooser dialog. * @return true. */ bool set_font_name(const Glib::ustring& fontname); /** Returns whether the name of the font style will be shown in the label. * * @newin{2,4} * * @return Whether the font style will be shown in the label. */ bool get_show_style() const; /** If @a show_style is true, the font style will be displayed along with name of the selected font. * * @newin{2,4} * * @param show_style true if font style should be displayed in label. */ void set_show_style(bool show_style = true); /** Returns whether the font size will be shown in the label. * * @newin{2,4} * * @return Whether the font size will be shown in the label. */ bool get_show_size() const; /** If @a show_size is true, the font size will be displayed along with the name of the selected font. * * @newin{2,4} * * @param show_size true if font size should be displayed in dialog. */ void set_show_size(bool show_size = true); /** The title of the font chooser dialog. * * @newin{2,4} * * Default value: "Pick a Font" * * @return A PropertyProxy that allows you to get or set the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy< Glib::ustring > property_title() ; /** The title of the font chooser dialog. * * @newin{2,4} * * Default value: "Pick a Font" * * @return A PropertyProxy_ReadOnly that allows you to get the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy_ReadOnly< Glib::ustring > property_title() const; /** The name of the currently selected font. * * @newin{2,4} * * Deprecated: 3.22: Use the Gtk::FontChooser::property_font() property instead * * Default value: "Sans 12" * * @return A PropertyProxy that allows you to get or set the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy< Glib::ustring > property_font_name() ; /** The name of the currently selected font. * * @newin{2,4} * * Deprecated: 3.22: Use the Gtk::FontChooser::property_font() property instead * * Default value: "Sans 12" * * @return A PropertyProxy_ReadOnly that allows you to get the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy_ReadOnly< Glib::ustring > property_font_name() const; /** If this property is set to true, the label will be drawn * in the selected font. * * @newin{2,4} * * Default value: false * * @return A PropertyProxy that allows you to get or set the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy< bool > property_use_font() ; /** If this property is set to true, the label will be drawn * in the selected font. * * @newin{2,4} * * Default value: false * * @return A PropertyProxy_ReadOnly that allows you to get the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy_ReadOnly< bool > property_use_font() const; /** If this property is set to true, the label will be drawn * with the selected font size. * * @newin{2,4} * * Default value: false * * @return A PropertyProxy that allows you to get or set the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy< bool > property_use_size() ; /** If this property is set to true, the label will be drawn * with the selected font size. * * @newin{2,4} * * Default value: false * * @return A PropertyProxy_ReadOnly that allows you to get the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy_ReadOnly< bool > property_use_size() const; /** If this property is set to true, the name of the selected font style * will be shown in the label. For a more WYSIWYG way to show the selected * style, see the property_use_font() property. * * @newin{2,4} * * Default value: true * * @return A PropertyProxy that allows you to get or set the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy< bool > property_show_style() ; /** If this property is set to true, the name of the selected font style * will be shown in the label. For a more WYSIWYG way to show the selected * style, see the property_use_font() property. * * @newin{2,4} * * Default value: true * * @return A PropertyProxy_ReadOnly that allows you to get the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy_ReadOnly< bool > property_show_style() const; /** If this property is set to true, the selected font size will be shown * in the label. For a more WYSIWYG way to show the selected size, see the * property_use_size() property. * * @newin{2,4} * * Default value: true * * @return A PropertyProxy that allows you to get or set the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy< bool > property_show_size() ; /** If this property is set to true, the selected font size will be shown * in the label. For a more WYSIWYG way to show the selected size, see the * property_use_size() property. * * @newin{2,4} * * Default value: true * * @return A PropertyProxy_ReadOnly that allows you to get the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy_ReadOnly< bool > property_show_size() const; /** * @par Slot Prototype: * void on_my_%font_set() * * Flags: Run First * * The signal_font_set() signal is emitted when the user selects a font. * When handling this signal, use Gtk::FontChooser::get_font() * to find out which font was just selected. * * Note that this signal is only emitted when the user * changes the font. If you need to react to programmatic font changes * as well, use the notify::font signal. * * @newin{2,4} */ Glib::SignalProxy< void > signal_font_set(); }; } // namespace Gtk namespace Glib { /** A Glib::wrap() method for this object. * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. * * @relates Gtk::FontButton */ GTKMM_API Gtk::FontButton* wrap(GtkFontButton* object, bool take_copy = false); } //namespace Glib #endif /* _GTKMM_FONTBUTTON_H */