// Generated by gmmproc 2.84.0 -- DO NOT MODIFY! #ifndef _GTKMM_MESSAGEDIALOG_H #define _GTKMM_MESSAGEDIALOG_H #ifndef GTKMM_DISABLE_DEPRECATED #include #include /* Copyright (C) 1998-2002 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 // The entire file is deprecated. #ifndef DOXYGEN_SHOULD_SKIP_THIS using GtkMessageDialog = struct _GtkMessageDialog; using GtkMessageDialogClass = struct _GtkMessageDialogClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class GTKMM_API MessageDialog_Class; } // namespace Gtk #endif //DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { /** @addtogroup gtkmmEnums gtkmm Enums and Flags */ /** * @var ButtonsType::NONE * No buttons at all. * * @var ButtonsType::OK * An OK button. * * @var ButtonsType::CLOSE * A Close button. * * @var ButtonsType::CANCEL * A Cancel button. * * @var ButtonsType::YES_NO * Yes and No buttons. * * @var ButtonsType::OK_CANCEL * OK and Cancel buttons. */ /** Prebuilt sets of buttons for `Gtk::Dialog`. * * If none of these choices are appropriate, simply use * Gtk::ButtonsType::NONE and call Gtk::Dialog::add_buttons(). * * > Please note that Gtk::ButtonsType::OK, Gtk::ButtonsType::YES_NO * > and Gtk::ButtonsType::OK_CANCEL are discouraged by the * > [GNOME Human Interface Guidelines](https://developer.gnome.org/hig/). * * @ingroup gtkmmEnums */ enum class ButtonsType { NONE, OK, CLOSE, CANCEL, YES_NO, OK_CANCEL }; } // namespace Gtk #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { template <> class GTKMM_API Value : public Glib::Value_Enum { public: static GType value_type() G_GNUC_CONST; }; } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gtk { /** Convenient message window. * * Gtk::MessageDialog presents a dialog with an image representing the type * of message (Error, Question, etc.) alongside some message text. It's * simply a convenience widget; you could construct the equivalent of * Gtk::MessageDialog from Gtk::Dialog without too much effort, but * Gtk::MessageDialog saves typing. * * A MessageDialog looks like this: * @image html messagedialog1.png * * @ingroup Dialogs * @deprecated 4.10: Use Gtk::AlertDialog instead. */ class GTKMM_API MessageDialog : public Dialog { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef MessageDialog CppObjectType; typedef MessageDialog_Class CppClassType; typedef GtkMessageDialog BaseObjectType; typedef GtkMessageDialogClass BaseClassType; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ MessageDialog(MessageDialog&& src) noexcept; MessageDialog& operator=(MessageDialog&& src) noexcept; // noncopyable MessageDialog(const MessageDialog&) = delete; MessageDialog& operator=(const MessageDialog&) = delete; ~MessageDialog() noexcept override; #ifndef DOXYGEN_SHOULD_SKIP_THIS private: friend GTKMM_API class MessageDialog_Class; static CppClassType messagedialog_class_; protected: explicit MessageDialog(const Glib::ConstructParams& construct_params); explicit MessageDialog(GtkMessageDialog* 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. GtkMessageDialog* gobj() { return reinterpret_cast(gobject_); } /// Provides access to the underlying C GObject. const GtkMessageDialog* gobj() const { return reinterpret_cast(gobject_); } private: public: explicit MessageDialog(const Glib::ustring& message, bool use_markup = false, MessageType type = MessageType::INFO, ButtonsType buttons = ButtonsType::OK, bool modal = false); MessageDialog(Gtk::Window& parent, const Glib::ustring& message, bool use_markup = false, MessageType type = MessageType::INFO, ButtonsType buttons = ButtonsType::OK, bool modal = false); /** Sets the primary text of the message dialog. * * @param message The message. * @param use_markup Whether @a message contains pango markup. */ void set_message(const Glib::ustring& message, bool use_markup = false); /** Sets the secondary text of the message dialog. * Note that setting a secondary text makes the primary text become bold, unless you have provided explicit markup. * * @param text The message. * @param use_markup Whether @a message contains pango markup. */ void set_secondary_text(const Glib::ustring& text, bool use_markup = false); /** Returns the message area of the dialog. * * This is the box where the dialog’s primary and secondary labels * are packed. You can add your own extra content to that box and it * will appear below those labels. See Gtk::Dialog::get_content_area() * for the corresponding function in the parent Gtk::Dialog. * * Deprecated: 4.10: Use Gtk::AlertDialog instead * * @return A `Gtk::Box` corresponding to the * “message area” in the @a message_dialog. */ Box* get_message_area(); /** Returns the message area of the dialog. * * This is the box where the dialog’s primary and secondary labels * are packed. You can add your own extra content to that box and it * will appear below those labels. See Gtk::Dialog::get_content_area() * for the corresponding function in the parent Gtk::Dialog. * * Deprecated: 4.10: Use Gtk::AlertDialog instead * * @return A `Gtk::Box` corresponding to the * “message area” in the @a message_dialog. */ const Box* get_message_area() const; /** The type of the message. * * Default value: Gtk::MessageType::INFO * * @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< MessageType > property_message_type() ; /** The type of the message. * * Default value: Gtk::MessageType::INFO * * @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< MessageType > property_message_type() const; //Not wrapped because it is write-only and construct: _WRAP_PROPERTY("buttons", ButtonsType) /** The primary text of the message dialog. * * If the dialog has a secondary text, this will appear as the title. * * 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_text() ; /** The primary text of the message dialog. * * If the dialog has a secondary text, this will appear as the title. * * 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_text() const; /** true if the primary text of the dialog includes Pango markup. * * See pango_parse_markup(). * * 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_markup() ; /** true if the primary text of the dialog includes Pango markup. * * See pango_parse_markup(). * * 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_markup() const; /** The secondary text of the message dialog. * * 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_secondary_text() ; /** The secondary text of the message dialog. * * 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_secondary_text() const; /** true if the secondary text of the dialog includes Pango markup. * * See pango_parse_markup(). * * 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_secondary_use_markup() ; /** true if the secondary text of the dialog includes Pango markup. * * See pango_parse_markup(). * * 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_secondary_use_markup() const; /** The `Gtk::Box` that corresponds to the message area of this dialog. * * See Gtk::MessageDialog::get_message_area() for a detailed * description of this area. * * @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< Box* > property_message_area() 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::MessageDialog */ GTKMM_API Gtk::MessageDialog* wrap(GtkMessageDialog* object, bool take_copy = false); } //namespace Glib #endif // GTKMM_DISABLE_DEPRECATED #endif /* _GTKMM_MESSAGEDIALOG_H */