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
use crate::co;
use crate::decl::*;
use crate::gui::privs::*;
/// This trait is enabled with the `gui` feature, and exposes tree view control
/// [notifications](https://learn.microsoft.com/en-us/windows/win32/controls/bumper-tree-view-control-reference-notifications).
///
/// These event methods are just proxies to the
/// [`GuiEventsParent`](crate::prelude::GuiEventsParent) of the parent window,
/// who is the real responsible for the child event handling.
///
/// Prefer importing this trait through the prelude:
///
/// ```no_run
/// use winsafe::prelude::*;
/// ```
pub trait GuiEventsTreeView: priv_ctrl_events::GuiEvents {
fn_nfy_withparm_noret! { tvn_delete_item, co::TVN::DELETEITEM, NMTREEVIEW;
/// [`TVN_DELETEITEM`](https://learn.microsoft.com/en-us/windows/win32/controls/tvn-deleteitem)
/// notification.
}
fn_nfy_withparm_noret! { tvn_item_changed, co::TVN::ITEMCHANGED, NMTREEVIEW;
/// [`TVN_ITEMCHANGED`](https://learn.microsoft.com/en-us/windows/win32/controls/tvn-itemchanged)
/// notification.
}
fn_nfy_withparm_boolret! { tvn_item_changing, co::TVN::ITEMCHANGING, NMTREEVIEW;
/// [`TVN_ITEMCHANGING`](https://learn.microsoft.com/en-us/windows/win32/controls/tvn-itemchanging)
/// notification.
}
fn_nfy_withparm_noret! { tvn_item_expanded, co::TVN::ITEMEXPANDED, NMTREEVIEW;
/// [`TVN_ITEMEXPANDED`](https://learn.microsoft.com/en-us/windows/win32/controls/tvn-itemexpanded)
/// notification.
}
fn_nfy_withparm_boolret! { tvn_item_expanding, co::TVN::ITEMEXPANDING, NMTREEVIEW;
/// [`TVN_ITEMEXPANDING`](https://learn.microsoft.com/en-us/windows/win32/controls/tvn-itemexpanding)
/// notification.
}
fn_nfy_withparm_noret! { tvn_sel_changed, co::TVN::SELCHANGED, NMTREEVIEW;
/// [`TVN_SELCHANGED`](https://learn.microsoft.com/en-us/windows/win32/controls/tvn-selchanged)
/// notification.
///
/// # Examples
///
/// ```no_run
/// use winsafe::{self as w, prelude::*, gui, co};
///
/// let wnd: gui::WindowMain; // initialized somewhere
/// let tree: gui::TreeView;
/// # let wnd = gui::WindowMain::new(gui::WindowMainOpts::default());
/// # let tree = gui::TreeView::<()>::new(&wnd, gui::TreeViewOpts::default());
///
/// tree.on().tvn_sel_changed(
/// move |p: &w::NMTREEVIEW| -> w::AnyResult<()> {
/// println!(
/// "Old item: {} - new item: {} - action: {}",
/// p.itemOld.pszText().unwrap(),
/// p.itemNew.pszText().unwrap(),
/// unsafe { co::TVC::from_raw(p.action) },
/// );
/// Ok(())
/// },
/// );
/// ```
}
fn_nfy_withparm_boolret! { tvn_sel_changing, co::TVN::SELCHANGING, NMTREEVIEW;
/// [`TVN_SELCHANGING`](https://learn.microsoft.com/en-us/windows/win32/controls/tvn-selchanging)
/// notification.
}
fn_nfy_noparm_i32ret! { nm_click, co::NM::CLICK;
/// [`NM_CLICK`](https://learn.microsoft.com/en-us/windows/win32/controls/nm-click-tree-view)
/// notification.
}
/// [`NM_CUSTOMDRAW`](https://learn.microsoft.com/en-us/windows/win32/controls/nm-customdraw-tree-view)
/// notification.
fn nm_custom_draw<F>(&self, func: F)
where
F: Fn(&mut NMTVCUSTOMDRAW) -> AnyResult<co::CDRF> + 'static,
{
self.wm_notify(co::NM::CUSTOMDRAW, move |p| {
Ok(func(unsafe { p.cast_nmhdr_mut::<NMTVCUSTOMDRAW>() })?.raw() as _)
});
}
fn_nfy_noparm_i32ret! { nm_dbl_clk, co::NM::DBLCLK;
/// [`NM_DBLCLK`](https://learn.microsoft.com/en-us/windows/win32/controls/nm-dblclk-tree-view)
/// notification.
}
fn_nfy_noparm_noret! { nm_kill_focus, co::NM::KILLFOCUS;
/// [`NM_KILLFOCUS`](https://learn.microsoft.com/en-us/windows/win32/controls/nm-killfocus-tree-view)
/// notification.
}
fn_nfy_noparm_i32ret! { nm_r_click, co::NM::RCLICK;
/// [`NM_RCLICK`](https://learn.microsoft.com/en-us/windows/win32/controls/nm-rclick-tree-view)
/// notification.
}
fn_nfy_noparm_i32ret! { nm_r_dbl_clk, co::NM::RDBLCLK;
/// [`NM_RDBLCLK`](https://learn.microsoft.com/en-us/windows/win32/controls/nm-rdblclk-tree-view)
/// notification.
}
fn_nfy_noparm_noret! { nm_return, co::NM::RETURN;
/// [`NM_RETURN`](https://learn.microsoft.com/en-us/windows/win32/controls/nm-return-tree-view-)
/// notification.
}
fn_nfy_withparm_i32ret! { nm_set_cursor, co::NM::SETCURSOR, NMMOUSE;
/// [`NM_MOUSE`](https://learn.microsoft.com/en-us/windows/win32/controls/nm-setcursor-tree-view-)
/// notification.
}
fn_nfy_noparm_noret! { nm_set_focus, co::NM::SETFOCUS;
/// [`NM_SETFOCUS`](https://learn.microsoft.com/en-us/windows/win32/controls/nm-setfocus-tree-view-)
/// notification.
}
}
impl GuiEventsTreeView for BaseCtrlEvents {}