41 template<
class find_next_callback_t,
class replace_callback_t,
class replace_all_callback_t>
50 template<
class find_next_callback_t,
class replace_callback_t,
class replace_all_callback_t>
60 template<
class find_next_callback_t,
class replace_callback_t,
class replace_all_callback_t>
61 static void show(
const iwin32_window& owner,
const xtd::string& find_string,
const xtd::string& replace_string, find_next_callback_t find_next, replace_callback_t replace, replace_all_callback_t replace_all) {show_replace_box(owner,
xtd::forms::find_event_handler(find_next),
xtd::forms::replace_event_handler(replace),
xtd::forms::replace_event_handler(replace_all), find_string, replace_string);}
71 template<
class find_next_callback_t,
class replace_callback_t,
class replace_all_callback_t>
72 static void show(
const iwin32_window& owner,
const xtd::string& find_string,
const xtd::string& replace_string,
const xtd::string& title, find_next_callback_t find_next, replace_callback_t replace, replace_all_callback_t replace_all) {show_replace_box(owner,
xtd::forms::find_event_handler(find_next),
xtd::forms::replace_event_handler(replace),
xtd::forms::replace_event_handler(replace_all), find_string, replace_string, title);}
83 template<
class find_next_callback_t,
class replace_callback_t,
class replace_all_callback_t>
84 static void show(
const iwin32_window& owner,
const xtd::string& find_string,
const xtd::string& replace_string,
const xtd::string& title,
bool match_case, find_next_callback_t find_next, replace_callback_t replace, replace_all_callback_t replace_all) {show_replace_box(owner,
xtd::forms::find_event_handler(find_next),
xtd::forms::replace_event_handler(replace),
xtd::forms::replace_event_handler(replace_all), find_string, replace_string, title, match_case);}
96 template<
class find_next_callback_t,
class replace_callback_t,
class replace_all_callback_t>
97 static void show(
const iwin32_window& owner,
const xtd::string& find_string,
const xtd::string& replace_string,
const xtd::string& title,
bool match_case,
bool whole_word, find_next_callback_t find_next, replace_callback_t replace, replace_all_callback_t replace_all) {show_replace_box(owner,
xtd::forms::find_event_handler(find_next),
xtd::forms::replace_event_handler(replace),
xtd::forms::replace_event_handler(replace_all), find_string, replace_string, title, match_case, whole_word);}
xtd::delegate< void(object &sender, const find_event_args &e)> find_event_handler
Represents the method that will handle the xtd::forms::find_dialog::find_next event of the xtd::forms...
Definition find_event_handler.hpp:27
xtd::delegate< void(object &sender, const replace_event_args &e)> replace_event_handler
Represents the method that will handle the xtd::forms::replace_dialog::replace event and the xtd::for...
Definition replace_event_handler.hpp:27
#define static_
This keyword is use to represent a static object. A static object can't be instantiated (constructors...
Definition static.hpp:37
#define forms_export_
Define shared library export.
Definition forms_export.hpp:13
xtd::basic_string< char > string
Represents text as a sequence of UTF-8 code units.
Definition __string_definitions.hpp:43
xtd::unique_ptr_object< type_t > uptr
The xtd::uptr object is a unique pointer.
Definition uptr.hpp:25
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Contains xtd::forms::replace_dialog dialog.