OWLNext 7.0
Borland's Object Windows Library for the modern age
|
Encapsulates structure LVFINDINFO, used to find an item in a TListViewCtrl. More...
#include <owl/listviewctrl.h>
Public Member Functions | |
Constructors | |
TLvFindInfo () | |
Constructs with an empty string and parameter. | |
TLvFindInfo (const LVFINDINFO &info) | |
Constructs a copy of another class instance. | |
Manipulators | |
auto | SetString (const tstring &text) -> void |
Sets a string to be used for the search. | |
auto | SetSubstring (const tstring &text) -> void |
Sets a string to be used for an exact search. | |
auto | SetPartial (const tstring &text) -> void |
Sets a string to be used for a partial search. | |
auto | SetWrap (bool wrap=true) -> void |
Sets the setting for wrap-around during a search. | |
auto | SetData (LPARAM param) -> void |
Sets extra application-specific information. | |
Protected Attributes | |
tstring | Text |
String used for searching. | |
Encapsulates structure LVFINDINFO, used to find an item in a TListViewCtrl.
Definition at line 39 of file listviewctrl.h.
owl::TLvFindInfo::TLvFindInfo | ( | ) |
Constructs with an empty string and parameter.
Definition at line 33 of file listviewctrl.cpp.
References Text.
owl::TLvFindInfo::TLvFindInfo | ( | const LVFINDINFO & | findInfo | ) |
Constructs a copy of another class instance.
[in] | findInfo | is the class instance to copy. |
Definition at line 47 of file listviewctrl.cpp.
References Text.
Sets extra application-specific information.
[in] | param | is the extra information to set. |
Definition at line 124 of file listviewctrl.cpp.
Sets a string to be used for a partial search.
[in] | text | is the string to use. |
Definition at line 94 of file listviewctrl.cpp.
Sets a string to be used for the search.
[in] | text | is the string to use. |
Definition at line 65 of file listviewctrl.cpp.
Sets a string to be used for an exact search.
[in] | text | is the string to use. |
Definition at line 80 of file listviewctrl.cpp.
Sets the setting for wrap-around during a search.
[in] | wrap | specifies whether the search continues at the beginning when the end has been reached. |
Definition at line 108 of file listviewctrl.cpp.
|
protected |
String used for searching.
Definition at line 67 of file listviewctrl.h.