1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
use std::fmt;
use std::error::Error;
#[derive(Debug, Clone)]
pub enum NwgError {
Unknown,
InitializationError(String),
ControlCreationError(String),
MenuCreationError(String),
ResourceCreationError(String),
LayoutCreationError(String),
EventsBinding(String),
#[cfg(feature = "file-dialog")]
FileDialogError(String),
#[cfg(feature = "image-decoder")]
ImageDecoderError(i32, String),
#[cfg(feature = "winnls")]
BadLocale(String),
}
impl NwgError {
pub fn initialization<S: Into<String>>(e: S) -> NwgError {
NwgError::InitializationError(e.into())
}
pub fn control_create<S: Into<String>>(e: S) -> NwgError {
NwgError::ControlCreationError(e.into())
}
pub fn menu_create<S: Into<String>>(e: S) -> NwgError {
NwgError::MenuCreationError(e.into())
}
pub fn resource_create<S: Into<String>>(e: S) -> NwgError {
NwgError::ResourceCreationError(e.into())
}
pub fn layout_create<S: Into<String>>(e: S) -> NwgError {
NwgError::LayoutCreationError(e.into())
}
pub fn events_binding<S: Into<String>>(e: S) -> NwgError {
NwgError::EventsBinding(e.into())
}
#[cfg(feature = "file-dialog")]
pub fn file_dialog<S: Into<String>>(e: S) -> NwgError {
NwgError::FileDialogError(e.into())
}
#[cfg(feature = "winnls")]
pub fn bad_locale<S: Into<String>>(e: S) -> NwgError {
NwgError::BadLocale(e.into())
}
#[cfg(feature = "image-decoder")]
pub fn image_decoder<S: Into<String>>(code: i32, e: S) -> NwgError {
NwgError::ImageDecoderError(code, e.into())
}
pub fn no_parent(name: &'static str) -> NwgError {
NwgError::ControlCreationError(format!("No parent defined for {:?} control", name))
}
pub fn no_parent_menu() -> NwgError {
NwgError::MenuCreationError("No parent defined for menu".to_string())
}
}
impl fmt::Display for NwgError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
use NwgError::*;
match self {
Unknown => write!(f, "Unknown error. This should never happen"),
InitializationError(reason) => write!(f, "Failed to initialize NWG: {:?}", reason),
ControlCreationError(reason) => write!(f, "Failed to create a control: {:?}", reason),
MenuCreationError(reason) => write!(f, "Failed to create a menu: {:?}", reason),
ResourceCreationError(reason) => write!(f, "Failed to create a resource: {:?}", reason),
LayoutCreationError(reason) => write!(f, "Failed to create a layout: {:?}", reason),
EventsBinding(reason) => write!(f, "Failed to bind events: {:?}", reason),
#[cfg(feature = "file-dialog")]
FileDialogError(reason) => write!(f, "File dialog actions failed: {:?}", reason),
#[cfg(feature = "image-decoder")]
ImageDecoderError(_id, reason) => write!(f, "Image decoder failed: {:?}", reason),
#[cfg(feature = "winnls")]
BadLocale(reason) => write!(f, "Windows locale functions failed: {:?}", reason),
}
}
}
impl Error for NwgError {}