xtd 0.2.0
assert_dialog.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "component.hpp"
6#include "dialog_result.hpp"
9#include "iwin32_window.hpp"
10#include <xtd/diagnostics/stack_frame>
11#include <xtd/event>
12
14namespace xtd {
16 namespace forms {
35 class forms_export_ assert_dialog final : public component {
36 struct data;
37
38 public:
40
45
47
52
60
63 xtd::string message() const noexcept;
67 assert_dialog& message(const xtd::string& value);
68
72 [[deprecated("Will be removed in version 0.4.0.")]]
78 [[deprecated("Use xtd::forms::assert_dialog::show_dialog ([owner,] stack_frame) or xtd::forms::assert_dialog::show_sheet (owner, stack_frame) - Will be removed in version 0.4.0.")]]
81
83
86 void reset() noexcept;
87
92
96
100
102
108
109 protected:
111
118
119 private:
120 void set_message() noexcept;
121 xtd::sptr<data> data_;
122 };
123 }
124}
Represents an event.
Definition event.hpp:21
void on_dialog_closed(const dialog_closed_event_args &e)
Raises the close event.
xtd::diagnostics::stack_frame stack_frame() const noexcept
Gets stack frame.
xtd::forms::dialog_appearance dialog_appearance() const noexcept
Gets the dialog appearance.
event< assert_dialog, dialog_closed_event_handler > dialog_closed
Occurs when the user close an assert dialog box with dialog close button or other dialog buttons.
Definition assert_dialog.hpp:106
xtd::string message() const noexcept
Gets the dialog message text.
void show_sheet(const iwin32_window &owner, const xtd::diagnostics::stack_frame &stack_frame=xtd::diagnostics::stack_frame::current())
Runs assert dialog box.
void reset() noexcept
Resets all properties to empty string.
xtd::forms::dialog_result dialog_result() const noexcept
Gets async dialog_result result after dialog box is closing.
assert_dialog()
Initializes a new instance of the assert_dialog class.
xtd::forms::dialog_result show_dialog(const xtd::diagnostics::stack_frame &stack_frame=xtd::diagnostics::stack_frame::current())
Runs assert dialog box.
xtd::forms::dialog_result show_sheet_dialog(const iwin32_window &owner, const xtd::diagnostics::stack_frame &stack_frame=xtd::diagnostics::stack_frame::current())
Runs assert dialog box.
component()
Initialises a new instance of the component class.
Provides data for a dialog closed event.
Definition dialog_closed_event_args.hpp:22
Provides an interface to expose Win32 HWND handles.
Definition iwin32_window.hpp:23
Contains xtd::forms::component class.
Contains xtd::forms::dialog_appearance enum class.
Contains xtd::forms::dialog_closed_event_handler handler.
Contains xtd::forms::dialog_result enum class.
xtd::delegate< void(object &sender, const dialog_closed_event_args &e)> dialog_closed_event_handler
Provides handler for a dialog closed event.
Definition dialog_closed_event_handler.hpp:27
#define forms_export_
Define shared library export.
Definition forms_export.hpp:13
xtd::shared_ptr_object< type_t > sptr
The xtd::sptr object is a shared pointer.
Definition sptr.hpp:25
dialog_result
Specifies identifiers to indicate the return value of a dialog box.
Definition dialog_result.hpp:43
@ e
The E key.
Definition keys.hpp:207
Contains xtd::forms::iwin32_window interface.
The xtd::diagnostics namespace provides classes that allow you to interact with system processes,...
Definition assert_dialog_result.hpp:10
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition texts.hpp:219
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
constexpr const_pointer data() const noexcept
Gets direct access to the underlying contiguous storage.
Definition read_only_span.hpp:201