xtd 0.2.0
xtd::forms::find_box Class Referencefinal

Definition

Represents a common dialog box that displays a find dialog. This class cannot be inherited.

Header
#include <xtd/forms/file_box>
Namespace
xtd::forms
Library
xtd.forms
Appearance
Windows macOS Gnome
Light  
dialog_find_dialog_w.png
    html dialog_find_dialog_m.png    html dialog_find_dialog_g.png 
Dark  
dialog_find_dialog_wd.png
    html dialog_find_dialog_md.png    html dialog_find_dialog_gd.png 
Examples
The following code example demonstrates the use of xtd::forms::find_box dialog.
#include <xtd/diagnostics/debug>
#include <xtd/forms/application>
#include <xtd/forms/button>
#include <xtd/forms/debug_form>
#include <xtd/forms/find_box>
#include <xtd/forms/form>
using namespace xtd;
using namespace xtd::forms;
class form1 : public form {
public:
form1() {
text("Find box example");
find_button.parent(*this);
find_button.text("find...");
find_button.location({10, 10});
find_button.click += [&] {
find_box::show(*this, "Gammasoft", "Find", [&](object& sender, const find_event_args& e) {
diagnostics::debug::write_line(ustring::format("Find next : find string [{}], match case [{}], search direction [{}], whole word [{}]", e.find_string(), e.match_case(), e.search_direction(), e.whole_word()));
});
};
}
private:
button find_button;
};
auto main()->int {
auto df = debug_form {};
application::run(form1 {});
}

Methods

template<typename find_next_callback_t >
static void show (const iwin32_window &owner, find_next_callback_t find_next)
 Displays a find dialog box. More...
 
template<typename find_next_callback_t >
static void show (const iwin32_window &owner, const xtd::ustring &find_string, find_next_callback_t find_next)
 Displays a find dialog box. More...
 
template<typename find_next_callback_t >
static void show (const iwin32_window &owner, const xtd::ustring &find_string, const xtd::ustring &title, find_next_callback_t find_next)
 Displays a find dialog box. More...
 
template<typename find_next_callback_t >
static void show (const iwin32_window &owner, const xtd::ustring &find_string, const xtd::ustring &title, bool match_case, find_next_callback_t find_next)
 Displays a find dialog box. More...
 
template<typename find_next_callback_t >
static void show (const iwin32_window &owner, const xtd::ustring &find_string, const xtd::ustring &title, bool match_case, xtd::forms::search_direction search_direction, find_next_callback_t find_next)
 Displays a find dialog box. More...
 
template<typename find_next_callback_t >
static void show (const iwin32_window &owner, const xtd::ustring &find_string, const xtd::ustring &title, bool match_case, xtd::forms::search_direction search_direction, bool whole_word, find_next_callback_t find_next)
 Displays a find dialog box. More...
 

Member Function Documentation

◆ show() [1/6]

template<typename find_next_callback_t >
static void xtd::forms::find_box::show ( const iwin32_window owner,
find_next_callback_t  find_next 
)
inlinestatic

Displays a find dialog box.

Parameters
ownerAn xtd::forms::iwin32_window that represents the owner window of the find dialog box.
find_nextThe callback called when the user click the find button.
Examples:
find_box.cpp.

◆ show() [2/6]

template<typename find_next_callback_t >
static void xtd::forms::find_box::show ( const iwin32_window owner,
const xtd::ustring find_string,
find_next_callback_t  find_next 
)
inlinestatic

Displays a find dialog box.

Parameters
ownerAn xtd::forms::iwin32_window that represents the owner window of the find dialog box.
find_stringThe string to find.
find_nextThe callback called when the user click the find button.

◆ show() [3/6]

template<typename find_next_callback_t >
static void xtd::forms::find_box::show ( const iwin32_window owner,
const xtd::ustring find_string,
const xtd::ustring title,
find_next_callback_t  find_next 
)
inlinestatic

Displays a find dialog box.

Parameters
ownerAn xtd::forms::iwin32_window that represents the owner window of the find dialog box.
find_stringThe string to find.
titleThe find dialog title.
find_nextThe callback called when the user click the find button.

◆ show() [4/6]

template<typename find_next_callback_t >
static void xtd::forms::find_box::show ( const iwin32_window owner,
const xtd::ustring find_string,
const xtd::ustring title,
bool  match_case,
find_next_callback_t  find_next 
)
inlinestatic

Displays a find dialog box.

Parameters
ownerAn xtd::forms::iwin32_window that represents the owner window of the find dialog box.
find_stringThe string to find.
titleThe find dialog title.
match_casetrue if match case option selected; otherwise false.
find_nextThe callback called when the user click the find button.

◆ show() [5/6]

template<typename find_next_callback_t >
static void xtd::forms::find_box::show ( const iwin32_window owner,
const xtd::ustring find_string,
const xtd::ustring title,
bool  match_case,
xtd::forms::search_direction  search_direction,
find_next_callback_t  find_next 
)
inlinestatic

Displays a find dialog box.

Parameters
ownerAn xtd::forms::iwin32_window that represents the owner window of the find dialog box.
find_stringThe string to find.
titleThe find dialog title.
match_casetrue if match case option selected; otherwise false.
search_directionOne of xtd::forms::search_direction values.
find_nextThe callback called when the user click the find button.

◆ show() [6/6]

template<typename find_next_callback_t >
static void xtd::forms::find_box::show ( const iwin32_window owner,
const xtd::ustring find_string,
const xtd::ustring title,
bool  match_case,
xtd::forms::search_direction  search_direction,
bool  whole_word,
find_next_callback_t  find_next 
)
inlinestatic

Displays a find dialog box.

Parameters
ownerAn xtd::forms::iwin32_window that represents the owner window of the find dialog box.
find_stringThe string to find.
titleThe find dialog title.
match_casetrue if match case option selected; otherwise false.
search_directionOne of xtd::forms::search_direction values.
whole_wordtrue if whole word option selected; otherwise false.
find_nextThe callback called when the user click the find button.

The documentation for this class was generated from the following file: