xtd - Reference Guide  0.1.0
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
Loading...
Searching...
No Matches
debug_message_box.h
Go to the documentation of this file.
1
4#pragma once
5#include "application.h"
6#include "message_box.h"
7
9namespace xtd {
11 namespace forms {
19 public:
23
28
29 private:
31#if !defined(NDEBUG) || defined(DEBUG) || defined(TRACE)
33 message_dialog dialog;
34 dialog.buttons(buttons);
35 dialog.default_button(default_button);
36 dialog.display_help_button(display_help_button);
37 dialog.icon(icon);
38 dialog.message(text);
39 dialog.options(options);
40 dialog.text(caption);
41 return owner ? dialog.show_sheet_dialog(*owner) : dialog.show_dialog();
42#else
44#endif
45 }
46 };
47 }
48}
Contains xtd::forms::application class.
static void write_line()
Writes a line terminator to the trace listeners in the listeners collection.
Definition: debug.h:336
static xtd::ustring product_name()
Gets the product name associated with this application.
Provides a collection of button objects for use by a Windows Forms application.
Definition: buttons.h:21
Displays a dialog box and write debug.
Definition: debug_message_box.h:18
static xtd::forms::dialog_result show(const xtd::ustring &text)
Displays a message box and write debug with specified text.
Definition: debug_message_box.h:22
static dialog_result show(const iwin32_window &owner, const xtd::ustring &text)
Displays a message box in front of the specified window and write debug with specified text.
Definition: debug_message_box.h:27
Provides an interface to expose Win32 HWND handles.
Definition: iwin32_window.h:19
Displays a message window, also known as a dialog box, which presents a message to the user....
Definition: message_dialog.h:34
xtd::forms::message_dialog_default_button default_button() const
Gets default button for the message dialog.
Definition: message_dialog.h:53
xtd::forms::message_dialog_buttons buttons() const
Gets buttons to display in the message dialog.
Definition: message_dialog.h:41
xtd::forms::message_dialog_icon icon() const
Gets icon to display in the message dialog.
Definition: message_dialog.h:93
xtd::forms::message_dialog_options options() const
Gets options will be used for the message box.
Definition: message_dialog.h:105
xtd::forms::dialog_result show_dialog()
Runs message dialog box.
xtd::ustring text() const
Gets the dialog caption text.
Definition: message_dialog.h:129
xtd::ustring message() const
Gets the text message.
Definition: message_dialog.h:117
xtd::forms::dialog_result show_sheet_dialog(const iwin32_window &owner)
Runs message dialog box.
bool display_help_button() const
Gets a value indicate if help button is shown.
Definition: message_dialog.h:65
Represents text as a sequence of UTF-8 code units.
Definition: ustring.h:48
#define static_
This keyword is use to represent a static object. A static object can't be instantiated (constructors...
Definition: static.h:38
message_dialog_icon
Specifies constants defining which information to display.
Definition: message_dialog_icon.h:18
dialog_result
Specifies identifiers to indicate the return value of a dialog box.
Definition: dialog_result.h:39
message_dialog_default_button
Specifies constants defining the default button on a message_box.
Definition: message_dialog_default_button.h:18
message_dialog_options
Specifies options on a message_box.
Definition: message_dialog_options.h:20
message_dialog_buttons
Specifies constants defining which buttons to display on a message_box.
Definition: message_dialog_buttons.h:18
@ none
The message box contain no symbols.
@ error
The message box contains a symbol consisting of white X in a circle with a red background.
@ none
Nothing is returned from the dialog box. This means that the modal dialog continues running.
@ button1
The first button on the message box is the default button.
@ ok
The message box contains an OK button.
Contains xtd::forms::message_box dialog.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17