xtd 0.2.0
trace_message_box.h
Go to the documentation of this file.
1 #pragma once
5 #include "application.h"
6 #include "message_box_buttons.h"
8 #include "message_box_icon.h"
9 #include "message_box_options.h"
10 #include "message_dialog.h"
11 #include <xtd/diagnostics/trace>
12 
14 namespace xtd {
16  namespace forms {
34  public:
36 
41 
47 
48  private:
50  #if defined(TRACE)
52  message_dialog dialog;
53  dialog.buttons(buttons);
54  dialog.default_button(default_button);
55  dialog.display_help_button(display_help_button);
56  dialog.icon(icon);
57  dialog.message(text);
58  dialog.options(options);
59  dialog.text(caption);
60  return owner ? dialog.show_sheet_dialog(*owner) : dialog.show_dialog();
61  #else
63  #endif
64  }
65  };
66  }
67 }
The first button on the message box is the default button.
message_dialog_default_button
Specifies constants defining the default button on a message_box.
Definition: message_dialog_default_button.h:20
dialog_result
Specifies identifiers to indicate the return value of a dialog box.
Definition: dialog_result.h:41
Nothing is returned from the dialog box. This means that the modal dialog continues running...
bool display_help_button() const noexcept
Gets a value indicate if help button is shown.
Contains xtd::forms::application class.
#define static_
This keyword is use to represent a static object. A static object can&#39;t be instantiated (constructors...
Definition: static.h:37
message_dialog_icon
Specifies constants defining which information to display.
Definition: message_dialog_icon.h:20
xtd::ustring message() const noexcept
Gets the text message.
xtd::forms::dialog_result show_sheet_dialog(const iwin32_window &owner)
Runs message dialog box.
xtd::forms::message_dialog_default_button default_button() const noexcept
Gets default button for the message dialog.
Contains xtd::forms::message_box_options enum class.
Contains xtd::forms::message_box_default_button enum class.
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
Contains xtd::forms::message_box_buttons enum class.
Contains xtd::forms::message_box_icon enum class.
message_dialog_options
Specifies options on a message_box.
Definition: message_dialog_options.h:22
Represents text as a sequence of UTF-8 code units.
Definition: ustring.h:46
Displays a dialog box and write trace.
Definition: trace_message_box.h:33
message_dialog_buttons
Specifies constants defining which buttons to display on a message_box.
Definition: message_dialog_buttons.h:20
Provides an interface to expose Win32 HWND handles.
Definition: iwin32_window.h:21
xtd::forms::message_dialog_buttons buttons() const noexcept
Gets buttons to display in the message dialog.
xtd::ustring text() const noexcept
Gets the dialog caption text.
The message box contains an OK button.
The message box contains a symbol consisting of white X in a circle with a red background.
static void write_line()
Writes a line terminator to the trace listeners in the listeners collection.
Definition: trace.h:352
Displays a message window, also known as a dialog box, which presents a message to the user...
Definition: message_dialog.h:40
Contains xtd::forms::message_dialog dialog.
Provides a collection of button objects for use by a Windows Forms application.
Definition: buttons.h:23
The message box contain no symbols.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
static xtd::ustring product_name() noexcept
Gets the product name associated with this application.
static xtd::forms::dialog_result show(const xtd::forms::iwin32_window &owner, const xtd::ustring &text)
Displays a message box in front of the specified window and write trace with specified text...
Definition: trace_message_box.h:45
static xtd::forms::dialog_result show(const xtd::ustring &text)
Displays a message box and write trace with specified text.
Definition: trace_message_box.h:40
xtd::forms::message_dialog_icon icon() const noexcept
Gets icon to display in the message dialog.
xtd::forms::dialog_result show_dialog()
Runs message dialog box.
The xtd::forms::status_bar_panel displays text in the standard font.
xtd::forms::message_dialog_options options() const noexcept
Gets options will be used for the message box.