xtd 0.2.0
exception_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"
11#include <xtd/version>
12#include <xtd/drawing/icon>
13#include <xtd/exception>
14#include <functional>
15
17namespace xtd {
19 namespace forms {
39 struct data;
40
41 public:
43
48
50
55
63
66 xtd::ref<const std::exception> exception() const noexcept;
72
75 xtd::string text() const noexcept;
79 exception_dialog& text(const xtd::string& text);
81
83
86 void reset() noexcept;
87
94 void show_sheet(const iwin32_window& owner);
98
100
106
107 protected:
109
116
117 private:
118 xtd::sptr<data> data_;
119 };
120 }
121}
Contains xtd::forms::layout::arranged_element_collection collection.
Represents an event.
Definition event.hpp:21
component()
Initialises a new instance of the component class.
Provides data for a dialog closed event.
Definition dialog_closed_event_args.hpp:22
exception_dialog()
Initializes a new instance of the exception_dialog class.
void on_dialog_closed(const dialog_closed_event_args &e)
Raises the close event.
void show_sheet(const iwin32_window &owner)
Runs exception dialog box.
xtd::forms::dialog_appearance dialog_appearance() const noexcept
Gets the dialog appearance.
xtd::ref< const std::exception > exception() const noexcept
Gets exception reference.
event< exception_dialog, dialog_closed_event_handler > dialog_closed
Occurs when the user close an exception dialog box with dialog close button or other dialog buttons.
Definition exception_dialog.hpp:104
xtd::forms::dialog_result dialog_result() const noexcept
Gets async dialog_result result after dialog box is closing.
xtd::string text() const noexcept
Gets the dialog caption text.
void reset() noexcept
Resets all properties to empty string.
xtd::forms::dialog_result show_sheet_dialog(const iwin32_window &owner)
Runs exception dialog box.
xtd::forms::dialog_result show_dialog()
Runs exception dialog box.
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
xtd::reference_wrapper_object< type_t > ref
The xtd::ref object is a reference wrapper.
Definition ref.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::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