]>
Commit | Line | Data |
---|---|---|
b6b9d556 RR |
1 | |
2 | \section{\class{wxDataViewListModelNotifier}}\label{wxdataviewlistmodelnotifier} | |
3 | ||
4 | A wxDataViewListModelNotifier instance is owned by a | |
5 | \helpref{wxDataViewListModel}{wxdataviewlistmodel} | |
6 | and mostly mirrors its interface. See the documentation | |
7 | of that class for further information. | |
8 | ||
9 | \wxheading{Derived from} | |
10 | ||
11 | \helpref{wxObject}{wxobject} | |
12 | ||
13 | \wxheading{Include files} | |
14 | ||
15 | <wx/dataview.h> | |
16 | ||
17 | ||
18 | \membersection{wxDataViewListModelNotifier::wxDataViewListModelNotifier}\label{wxdataviewlistmodelnotifierwxdataviewlistmodelnotifier} | |
19 | ||
20 | \func{}{wxDataViewListModelNotifier}{\void} | |
21 | ||
22 | Constructor. | |
23 | ||
24 | \membersection{wxDataViewListModelNotifier::\destruct{wxDataViewListModelNotifier}}\label{wxdataviewlistmodelnotifierdtor} | |
25 | ||
26 | \func{}{\destruct{wxDataViewListModelNotifier}}{\void} | |
27 | ||
28 | Destructor. | |
29 | ||
30 | \membersection{wxDataViewListModelNotifier::Cleared}\label{wxdataviewlistmodelnotifiercleared} | |
31 | ||
32 | \func{bool}{Cleared}{\void} | |
33 | ||
34 | Called by owning list model. | |
35 | ||
36 | \membersection{wxDataViewListModelNotifier::GetOwner}\label{wxdataviewlistmodelnotifiergetowner} | |
37 | ||
38 | \func{wxDataViewListModel*}{GetOwner}{\void} | |
39 | ||
40 | Returns the owning \helpref{wxDataViewListModel}{wxdataviewlistmodel}. | |
41 | ||
42 | \membersection{wxDataViewListModelNotifier::RowAppended}\label{wxdataviewlistmodelnotifierrowappended} | |
43 | ||
44 | \func{bool}{RowAppended}{\void} | |
45 | ||
46 | Called by owning list model. | |
47 | ||
48 | \membersection{wxDataViewListModelNotifier::RowChanged}\label{wxdataviewlistmodelnotifierrowchanged} | |
49 | ||
50 | \func{bool}{RowChanged}{\param{unsigned int }{row}} | |
51 | ||
52 | Called by owning list model. | |
53 | ||
54 | \membersection{wxDataViewListModelNotifier::RowDeleted}\label{wxdataviewlistmodelnotifierrowdeleted} | |
55 | ||
56 | \func{bool}{RowDeleted}{\param{unsigned int }{row}} | |
57 | ||
58 | Called by owning list model. | |
59 | ||
60 | \membersection{wxDataViewListModelNotifier::RowInserted}\label{wxdataviewlistmodelnotifierrowinserted} | |
61 | ||
62 | \func{bool}{RowInserted}{\param{unsigned int }{before}} | |
63 | ||
64 | Called by owning list model. | |
65 | ||
66 | \membersection{wxDataViewListModelNotifier::RowPrepended}\label{wxdataviewlistmodelnotifierrowprepended} | |
67 | ||
68 | \func{bool}{RowPrepended}{\void} | |
69 | ||
70 | Called by owning list model. | |
71 | ||
72 | \membersection{wxDataViewListModelNotifier::RowsReordered}\label{wxdataviewlistmodelnotifierrowsreordered} | |
73 | ||
74 | \func{bool}{RowsReordered}{\param{unsigned int* }{new\_order}} | |
75 | ||
76 | Called by owning list model. | |
77 | ||
78 | \membersection{wxDataViewListModelNotifier::SetOwner}\label{wxdataviewlistmodelnotifiersetowner} | |
79 | ||
80 | \func{void}{SetOwner}{\param{wxDataViewListModel* }{owner}} | |
81 | ||
82 | Set the owning \helpref{wxDataViewListModel}{wxdataviewlistmodel}. This | |
83 | method is called by the \helpref{wxDataViewListModel::AddNotifier}{wxdataviewlistmodeladdnotifier}. | |
84 | ||
85 | \membersection{wxDataViewListModelNotifier::ValueChanged}\label{wxdataviewlistmodelnotifiervaluechanged} | |
86 | ||
87 | \func{bool}{ValueChanged}{\param{unsigned int }{col}, \param{unsigned int }{row}} | |
88 | ||
89 | Called by owning list model. | |
b67a86d5 | 90 |