Made EVT_SLIDER event happen always; some doc and wxProperty updates
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1444 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -768,9 +768,9 @@ wxProperty objects (essentially names and values).
|
||||
|
||||
\membersection{wxPropertySheet::wxPropertySheet}
|
||||
|
||||
\func{void}{wxPropertySheet}{\void}
|
||||
\func{void}{wxPropertySheet}{\param{const wxString}{ name = ""}}
|
||||
|
||||
Constructor.
|
||||
Constructor. Sets property sheet's name to name if present.
|
||||
|
||||
\membersection{wxPropertySheet::\destruct{wxPropertySheet}}
|
||||
|
||||
@@ -790,17 +790,47 @@ Adds a property to the sheet.
|
||||
|
||||
Clears all the properties from the sheet (deleting them).
|
||||
|
||||
\membersection{wxPropertySheet::GetName}\label{wxpropertysheetgetname}
|
||||
|
||||
\func{wxString}{GetName}{\void}
|
||||
|
||||
Gets the sheet's name.
|
||||
|
||||
\membersection{wxPropertySheet::GetProperty}\label{wxpropertysheetgetproperty}
|
||||
|
||||
\func{wxProperty *}{GetProperty}{\param{wxString}{ name}}
|
||||
|
||||
Gets a property by name.
|
||||
|
||||
\membersection{wxPropertySheet::GetProperties}\label{wxpropertysheetgetproperties}
|
||||
|
||||
\func{wxList\&}{GetProperties}{\void}
|
||||
|
||||
Returns a reference to the internal list of properties.
|
||||
|
||||
\membersection{wxPropertySheet::GetProperty}\label{wxpropertysheetgetproperty}
|
||||
\membersection{wxPropertySheet::HasProperty}\label{wxpropertysheethasproperty}
|
||||
|
||||
\func{wxProperty *}{GetProperty}{\param{char *}{name}}
|
||||
\func{bool}{HasProperty}{\param{wxString}{ propname}}
|
||||
|
||||
Gets a property by name.
|
||||
Returns true if sheet contains property propname.
|
||||
|
||||
\membersection{wxPropertySheet::RemoveProperty}\label{wxpropertysheetremoveproperty}
|
||||
|
||||
\func{void}{RemoveProperty}{\param{wxString}{ propname}}
|
||||
|
||||
Removes property propname from sheet, deleting it.
|
||||
|
||||
\membersection{wxPropertySheet::SetName}\label{wxpropertysheetsetname}
|
||||
|
||||
\func{void}{SetName}{\param{wxString}{ sheetname}}
|
||||
|
||||
Set the sheet's name to sheetname
|
||||
|
||||
\membersection{wxPropertySheet::SetProperty}\label{wxpropertysheetsetproperty}
|
||||
|
||||
\func{bool}{SetProperty}{\param{wxString}{ propname}, \param{wxPropertyValue}{ value}}
|
||||
|
||||
Sets property propname to value. Returns false if property is not a member of sheet.
|
||||
|
||||
\membersection{wxPropertySheet::SetAllModified}
|
||||
|
||||
|
@@ -89,7 +89,7 @@ It is very common to iterate on a list as follows:
|
||||
|
||||
...
|
||||
|
||||
wxNode *node = SomeList.First();
|
||||
wxNode *node = SomeList.GetFirst();
|
||||
while (node)
|
||||
{
|
||||
wxPoint *point = (wxPoint *)node->Data();
|
||||
@@ -112,7 +112,7 @@ with
|
||||
...
|
||||
delete point;
|
||||
delete node;
|
||||
node = SomeList.First();
|
||||
node = SomeList.GetFirst();
|
||||
...
|
||||
\end{verbatim}
|
||||
|
||||
@@ -203,9 +203,9 @@ TRUE if successful. The application must delete the actual object separately.
|
||||
|
||||
Returns the node whose stored key matches {\it key}. Use on a keyed list only.
|
||||
|
||||
\membersection{wxList::First}
|
||||
\membersection{wxList::GetFirst}
|
||||
|
||||
\func{wxNode *}{First}{\void}
|
||||
\func{wxNode *}{GetFirst}{\void}
|
||||
|
||||
Returns the first node in the list (NULL if the list is empty).
|
||||
|
||||
@@ -227,9 +227,9 @@ Insert object at front of list.
|
||||
Insert object before {\it position}.
|
||||
|
||||
|
||||
\membersection{wxList::Last}
|
||||
\membersection{wxList::GetLast}
|
||||
|
||||
\func{wxNode *}{Last}{\void}
|
||||
\func{wxNode *}{GetLast}{\void}
|
||||
|
||||
Returns the last node in the list (NULL if the list is empty).
|
||||
|
||||
|
Reference in New Issue
Block a user