xtd 0.2.0
Loading...
Searching...
No Matches
exception_dialog.h
Go to the documentation of this file.
1
4#pragma once
5#include "component.h"
6#include "dialog_result.h"
7#include "dialog_appearance.h"
9#include "iwin32_window.h"
11#include <xtd/version>
12#include <xtd/drawing/icon>
13#include <xtd/system_exception>
14#include <functional>
15
17namespace xtd {
19 namespace forms {
37 struct data;
38
39 public:
41
46
48
53
61
64 std::reference_wrapper<const std::exception> exception() const noexcept;
69 exception_dialog& exception(const std::exception& exception);
70
73 xtd::ustring text() const noexcept;
77 exception_dialog& text(const xtd::ustring& text);
79
81
84 void reset() noexcept;
85
87 xtd::forms::dialog_result show_dialog();
89 xtd::forms::dialog_result show_dialog(const iwin32_window& owner);
92 void show_sheet(const iwin32_window& owner);
94 xtd::forms::dialog_result show_sheet_dialog(const iwin32_window& owner);
96
98
104
105 protected:
107
112 void on_dialog_closed(const dialog_closed_event_args& e);
114
115 private:
116 std::shared_ptr<data> data_;
117 };
118 }
119}
Contains xtd::forms::layout::arranged_element_collection collection.
Represents an event.
Definition event.h:21
Provides the base implementation and enables object sharing between applications.
Definition component.h:23
Provides data for a dialog closed event.
Definition dialog_closed_event_args.h:20
Represents a common dialog box that displays exception dialog.
Definition exception_dialog.h:36
exception_dialog()
Initializes a new instance of the exception_dialog class.
xtd::forms::dialog_result dialog_result() const noexcept
Gets async dialog_result result after dialog box is closing.
Provides an interface to expose Win32 HWND handles.
Definition iwin32_window.h:21
Represents text as a sequence of UTF-8 code units.
Definition ustring.h:47
Contains xtd::forms::component class.
Contains xtd::forms::dialog_appearance enum class.
Contains xtd::forms::dialog_closed_event_handler dialog.
Contains xtd::forms::dialog_result enum class.
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.h:22
#define forms_export_
Define shared library export.
Definition forms_export.h:13
dialog_result
Specifies identifiers to indicate the return value of a dialog box.
Definition dialog_result.h:41
control_appearance
Specifies the appearance of a control.
Definition control_appearance.h:19
Contains xtd::forms::iwin32_window interface.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition xtd_about_box.h:12
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10