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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
//! DOM access methods, C interface.

#![allow(non_camel_case_types, non_snake_case)]

use capi::sctypes::*;

MAKE_HANDLE!(#[doc = "Element native handle."] HELEMENT, _HELEMENT);
MAKE_HANDLE!(#[doc = "Node native handle."] HNODE, _HNODE);

#[repr(C)]
#[derive(Debug, PartialOrd, PartialEq)]
/// Type of the result value for Sciter DOM functions.
pub enum SCDOM_RESULT {
	/// Function completed successfully.
	OK = 0,
	/// Invalid `HWINDOW`.
	INVALID_HWND = 1,
	/// Invalid `HELEMENT`.
	INVALID_HANDLE = 2,
	/// Attempt to use `HELEMENT` which is not attached to document.
	PASSIVE_HANDLE = 3,
	/// Parameter is invalid, e.g. pointer is null.
	INVALID_PARAMETER = 4,
	/// Operation failed, e.g. invalid html passed.
	OPERATION_FAILED = 5,
	/// Function completed successfully, but no result (e.g. no such attribute at element).
	OK_NOT_HANDLED = -1,
}

impl std::error::Error for SCDOM_RESULT {}

impl std::fmt::Display for SCDOM_RESULT {
	fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
		write!(f, "{:?}", self)
	}
}

#[repr(C)]
#[derive(Debug, PartialOrd, PartialEq)]
/// `dom::Element.set_html()` options.
pub enum SET_ELEMENT_HTML
{
	SIH_REPLACE_CONTENT     = 0,
	SIH_INSERT_AT_START     = 1,
	SIH_APPEND_AFTER_LAST   = 2,
	SOH_REPLACE             = 3,
	SOH_INSERT_BEFORE       = 4,
	SOH_INSERT_AFTER        = 5,
}

/// Bounding rectangle of the element.
#[repr(C)]
#[derive(Debug, PartialOrd, PartialEq)]
pub enum ELEMENT_AREAS {

	/// `or` this flag if you want to get Sciter window relative coordinates,
	/// otherwise it will use nearest windowed container e.g. popup window.
	ROOT_RELATIVE = 0x01,

	/// `or` this flag if you want to get coordinates relative to the origin of element iself.
	SELF_RELATIVE = 0x02,

	/// Position inside immediate container.
	CONTAINER_RELATIVE = 0x03,

	/// Position relative to view - Sciter window.
	VIEW_RELATIVE = 0x04,

	/// Content (inner)  box.
	CONTENT_BOX = 0x00,

	/// Content + paddings.
	PADDING_BOX = 0x10,

	/// Content + paddings + border.
	BORDER_BOX  = 0x20,

	/// Content + paddings + border + margins.
	MARGIN_BOX  = 0x30,

	/// Relative to content origin - location of background image (if it set `no-repeat`).
	BACK_IMAGE_AREA = 0x40,

	/// Relative to content origin - location of foreground image (if it set `no-repeat`).
	FORE_IMAGE_AREA = 0x50,

	/// Scroll_area - scrollable area in content box.
	SCROLLABLE_AREA = 0x60,
}

impl ELEMENT_AREAS {
	/// Size of content (i.e `(0, 0, width, height)`).
	pub fn self_content() -> u32 {
		ELEMENT_AREAS::SELF_RELATIVE as u32
	}

	/// Size of rect (i.e `(left, top, width, height)`)
	pub fn self_rect() -> u32 {
		ELEMENT_AREAS::ROOT_RELATIVE as u32
	}
}

/// Collection of states (runtime flags) of a DOM element.
///
/// They reflect CSS pseudo-classes that are used in selectors,
/// e.g. `STATE_HOVER` is `:hover`, `STATE_ACTIVE` is `:active`, and so on.
///
/// Implements `|` and `&` bitwise operators.
#[repr(C)]
#[derive(Debug, PartialOrd, PartialEq)]
pub enum ELEMENT_STATE_BITS
{
	/// Zero state.
	STATE_NONE             = 0x00000000,

	/// Element is a link.
	///
	/// E.g. `<a href`.
	STATE_LINK             = 0x00000001,

	/// Mouse over the element at the moment.
	STATE_HOVER            = 0x00000002,
	/// Element is pressed.
	///
	/// Commonly used by `<button>` or `<a>` elements.
	STATE_ACTIVE           = 0x00000004,
	/// Element is focused.
	STATE_FOCUS            = 0x00000008,

	/// Element was visited.
	///
	/// For example, a link that was clicked.
	STATE_VISITED          = 0x00000010,
	/// Current (hot) item.
	STATE_CURRENT          = 0x00000020,
	/// Element is checked (or selected).
	STATE_CHECKED          = 0x00000040,
	/// Element is disabled.
	STATE_DISABLED         = 0x00000080,
	/// Readonly input element.
	STATE_READONLY         = 0x00000100,

	/// Expanded state - e.g. nodes in tree view.
	///
	/// Mutually exclusive with `STATE_COLLAPSED`.
	STATE_EXPANDED         = 0x00000200,

	/// Collapsed state - e.g. nodes in tree view.
	///
	/// Mutually exclusive with `STATE_EXPANDED`.
	STATE_COLLAPSED        = 0x00000400,

	/// One of fore/back images was requested but is not delivered.
	STATE_INCOMPLETE       = 0x00000800,
	/// Is animating currently.
	STATE_ANIMATING        = 0x00001000,
	/// Will accept focus.
	STATE_FOCUSABLE        = 0x00002000,

	/// Anchor in selection (used with current in selects).
	STATE_ANCHOR           = 0x00004000,
	/// This is a synthetic element - i.e. don't emit it's head/tail.
	STATE_SYNTHETIC        = 0x00008000,
	/// A popup element is shown for this particular element.
	STATE_OWNS_POPUP       = 0x00010000,

	/// Focus gained by tab traversal.
	STATE_TABFOCUS         = 0x00020000,

	/// Element is empty.
	///
	/// i.e. the element has no text content nor children nodes.
	///
	/// If element has a behavior attached then the behavior is responsible for the value of this flag.
	STATE_EMPTY            = 0x00040000,

	/// Busy or loading.
	STATE_BUSY             = 0x00080000,

	/// Drag over the block that can accept it (so is a current drop target).
	///
	/// Flag is set for the drop target block.
	STATE_DRAG_OVER        = 0x00100000,
	/// Active drop target.
	STATE_DROP_TARGET      = 0x00200000,
	/// Dragging/moving - the flag is set for the moving block.
	STATE_MOVING           = 0x00400000,
	/// Dragging/copying - the flag is set for the copying block.
	STATE_COPYING          = 0x00800000,
	/// Element that is a drag source.
	STATE_DRAG_SOURCE      = 0x01000000,
	/// Element is drop marker.
	STATE_DROP_MARKER      = 0x02000000,

	/// Close to `STATE_ACTIVE` but has wider life span.
	///
	/// E.g. in `MOUSE_UP` it is still on;
	/// so behavior can check it in `MOUSE_UP` to discover the `CLICK` condition.
	STATE_PRESSED          = 0x04000000,

	/// This element is out of flow.
	STATE_POPUP            = 0x08000000,

	/// The element or one of its containers has `dir=ltr` declared.
	STATE_IS_LTR           = 0x10000000,
	/// The element or one of its containers has `dir=rtl` declared.
	STATE_IS_RTL           = 0x20000000,

	/// Element is ready (behavior has finished initialization).
	STATE_READY            = 0x40000000,
}

/// Flags can be OR'ed.
impl ::std::ops::BitOr for ELEMENT_STATE_BITS {
  type Output = ELEMENT_STATE_BITS;
  fn bitor(self, rhs: Self::Output) -> Self::Output {
    let rn = (self as UINT) | (rhs as UINT);
    unsafe { ::std::mem::transmute(rn) }
  }
}

/// Flags can be AND'ed.
impl ::std::ops::BitAnd for ELEMENT_STATE_BITS {
  type Output = ELEMENT_STATE_BITS;
  fn bitand(self, rhs: Self::Output) -> Self::Output {
    let rn = (self as UINT) & (rhs as UINT);
    unsafe { ::std::mem::transmute(rn) }
  }
}

pub type SciterElementCallback = extern "system" fn (he: HELEMENT, param: LPVOID) -> BOOL;

pub type ELEMENT_COMPARATOR = extern "system" fn (he1: HELEMENT, he2: HELEMENT, param: LPVOID) -> INT;