// Generated by gmmproc 2.84.0 -- DO NOT MODIFY! #ifndef _GTKMM_APPCHOOSERDIALOG_H #define _GTKMM_APPCHOOSERDIALOG_H #ifndef GTKMM_DISABLE_DEPRECATED #include #include /* Copyright (C) 2011 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, see . */ #include #include #include // The entire file is deprecated. #ifndef DOXYGEN_SHOULD_SKIP_THIS using GtkAppChooserDialog = struct _GtkAppChooserDialog; using GtkAppChooserDialogClass = struct _GtkAppChooserDialogClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class GTKMM_API AppChooserDialog_Class; } // namespace Gtk #endif //DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { /** An application chooser dialog. * * This dialog shows an AppChooserWidget inside a Dialog. * * Note that AppChooserDialog does not have any interesting methods of its own. * Instead, you should get the embedded AppChooserWidget using get_widget() and * call its methods if the generic AppChooser base class API is not sufficient for your needs. * * To set the heading that is shown above the AppChooserWidget, use set_heading(). * * See @ref giommContentType in glibmm for more information about content types. * * The AppChooserDialog dialog looks like this: * @image html appchooserdialog1.png * * @ingroup Dialogs * * @newin{3,0} * @deprecated 4.10: The application selection widgets should be * implemented according to the design of each platform and/or * application requiring them. * This dialog will be removed in GTK 5. */ class GTKMM_API AppChooserDialog : public Dialog, public AppChooser { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef AppChooserDialog CppObjectType; typedef AppChooserDialog_Class CppClassType; typedef GtkAppChooserDialog BaseObjectType; typedef GtkAppChooserDialogClass BaseClassType; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ AppChooserDialog(AppChooserDialog&& src) noexcept; AppChooserDialog& operator=(AppChooserDialog&& src) noexcept; // noncopyable AppChooserDialog(const AppChooserDialog&) = delete; AppChooserDialog& operator=(const AppChooserDialog&) = delete; ~AppChooserDialog() noexcept override; #ifndef DOXYGEN_SHOULD_SKIP_THIS private: friend GTKMM_API class AppChooserDialog_Class; static CppClassType appchooserdialog_class_; protected: explicit AppChooserDialog(const Glib::ConstructParams& construct_params); explicit AppChooserDialog(GtkAppChooserDialog* 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. GtkAppChooserDialog* gobj() { return reinterpret_cast(gobject_); } /// Provides access to the underlying C GObject. const GtkAppChooserDialog* gobj() const { return reinterpret_cast(gobject_); } private: public: explicit AppChooserDialog(const Glib::ustring& content_type); AppChooserDialog(const Glib::ustring& content_type, Gtk::Window& parent); explicit AppChooserDialog(const Glib::RefPtr& file); AppChooserDialog(const Glib::RefPtr& file, Gtk::Window& parent); /** Returns the `Gtk::AppChooserWidget` of this dialog. * * Deprecated: 4.10: This widget will be removed in GTK 5 * * @return The `Gtk::AppChooserWidget` of @a self. */ Widget* get_widget(); /** Returns the `Gtk::AppChooserWidget` of this dialog. * * Deprecated: 4.10: This widget will be removed in GTK 5 * * @return The `Gtk::AppChooserWidget` of @a self. */ const Widget* get_widget() const; /** Sets the text to display at the top of the dialog. * * If the heading is not set, the dialog displays a default text. * * Deprecated: 4.10: This widget will be removed in GTK 5 * * @param heading A string containing Pango markup. */ void set_heading(const Glib::ustring& heading); /** Returns the text to display at the top of the dialog. * * Deprecated: 4.10: This widget will be removed in GTK 5 * * @return The text to display at the top of the dialog, * or nullptr, in which case a default text is displayed. */ Glib::ustring get_heading() const; /** The GFile used by the `Gtk::AppChooserDialog`. * * The dialog's `Gtk::AppChooserWidget` content type will * be guessed from the file, if present. * * @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::RefPtr > property_gfile() const; /** The text to show at the top of the dialog. * * The string may contain Pango markup. * * Default value: "" * * @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_heading() ; /** The text to show at the top of the dialog. * * The string may contain Pango markup. * * Default value: "" * * @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_heading() const; public: public: //C++ methods used to invoke GTK+ virtual functions: protected: //GTK+ Virtual Functions (override these to change behaviour): //Default Signal Handlers:: }; } // 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::AppChooserDialog */ GTKMM_API Gtk::AppChooserDialog* wrap(GtkAppChooserDialog* object, bool take_copy = false); } //namespace Glib #endif // GTKMM_DISABLE_DEPRECATED #endif /* _GTKMM_APPCHOOSERDIALOG_H */