xtd 0.2.0
Loading...
Searching...
No Matches
xtd::forms::replace_box Class Referencefinal
Inheritance diagram for xtd::forms::replace_box:
xtd::static_object

Definition

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

Header
#include <xtd/forms/replace_box>
Namespace
xtd::forms
Library
xtd.forms
Appearance
Windows macOS Gnome
Light  
 
 
 
 
 
Dark  
 
 
 
 
 
Examples
The following code example demonstrates the use of xtd::forms::replace_box dialog.
#include <xtd/forms/application>
#include <xtd/forms/button>
#include <xtd/forms/debug_form>
#include <xtd/forms/form>
#include <xtd/forms/replace_box>
#include <xtd/diagnostics/debug>
using namespace xtd;
using namespace xtd::forms;
class form1 : public form {
public:
form1() {
text("Replace box example");
find_button.parent(*this);
find_button.text("replace...");
find_button.location({10, 10});
find_button.click += [&] {
replace_box::show(*this, "Gammasoft", "xtd", "Replace", [&](object& sender, const find_event_args& e) {
diagnostics::debug::write_line(ustring::format("Find next : find string [{}], match case [{}], whole word [{}]", e.find_string(), e.match_case(), e.whole_word()));
}, [&](object& sender, const replace_event_args& e) {
diagnostics::debug::write_line(ustring::format("Replace : find string [{}], replace string [{}], match case [{}], whole word [{}]", e.find_string(), e.replace_string(), e.match_case(), e.whole_word()));
}, [&](object& sender, const replace_event_args& e) {
diagnostics::debug::write_line(ustring::format("Replace all : find string [{}], replace string [{}], match case [{}], whole word [{}]", e.find_string(), e.replace_string(), e.match_case(), e.whole_word()));
});
};
}
private:
button find_button;
};
auto main()->int {
auto df = debug_form {};
application::run(form1 {});
}
static void run()
Begins running a standard application message loop on the current thread, without a form.
Represents a Windows button control.
Definition button.h:47
Represents a form that displays debug form. This class cannot be inherited.
Definition debug_form.h:34
Provides data for the xtd::forms::find_dialog::find_next and xtd::forms::replace_dialog::find_next ev...
Definition find_event_args.h:23
Represents a window or dialog box that makes up an application's user interface.
Definition form.h:52
Provides data for the xtd::forms::replace_dialog::replace and xtd::forms::replace_dialog::replace_all...
Definition replace_event_args.h:21
@ e
The E key.
@ text
The xtd::forms::status_bar_panel displays text in the standard font.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition xtd_about_box.h:12
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10

Public Static Methods

template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t >
static void show (const iwin32_window &owner, find_next_callback_t find_next, replace_callback_t replace, replace_all_callback_t replace_all)
 Displays a replace dialog box.
 
template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t >
static void show (const iwin32_window &owner, const xtd::ustring &find_string, find_next_callback_t find_next, replace_callback_t replace, replace_all_callback_t replace_all)
 Displays a replace dialog box.
 
template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t >
static void show (const iwin32_window &owner, const xtd::ustring &find_string, const xtd::ustring &replace_string, find_next_callback_t find_next, replace_callback_t replace, replace_all_callback_t replace_all)
 Displays a replace dialog box.
 
template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t >
static void show (const iwin32_window &owner, const xtd::ustring &find_string, const xtd::ustring &replace_string, const xtd::ustring &title, find_next_callback_t find_next, replace_callback_t replace, replace_all_callback_t replace_all)
 Displays a replace dialog box.
 
template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t >
static void show (const iwin32_window &owner, const xtd::ustring &find_string, const xtd::ustring &replace_string, const xtd::ustring &title, bool match_case, find_next_callback_t find_next, replace_callback_t replace, replace_all_callback_t replace_all)
 Displays a replace dialog box.
 
template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t >
static void show (const iwin32_window &owner, const xtd::ustring &find_string, const xtd::ustring &replace_string, const xtd::ustring &title, bool match_case, bool whole_word, find_next_callback_t find_next, replace_callback_t replace, replace_all_callback_t replace_all)
 Displays a replace dialog box.
 

Member Function Documentation

◆ show() [1/6]

template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t >
static void xtd::forms::replace_box::show ( const iwin32_window owner,
const xtd::ustring find_string,
const xtd::ustring replace_string,
const xtd::ustring title,
bool  match_case,
bool  whole_word,
find_next_callback_t  find_next,
replace_callback_t  replace,
replace_all_callback_t  replace_all 
)
inlinestatic

Displays a replace dialog box.

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

◆ show() [2/6]

template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t >
static void xtd::forms::replace_box::show ( const iwin32_window owner,
const xtd::ustring find_string,
const xtd::ustring replace_string,
const xtd::ustring title,
bool  match_case,
find_next_callback_t  find_next,
replace_callback_t  replace,
replace_all_callback_t  replace_all 
)
inlinestatic

Displays a replace dialog box.

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

◆ show() [3/6]

template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t >
static void xtd::forms::replace_box::show ( const iwin32_window owner,
const xtd::ustring find_string,
const xtd::ustring replace_string,
const xtd::ustring title,
find_next_callback_t  find_next,
replace_callback_t  replace,
replace_all_callback_t  replace_all 
)
inlinestatic

Displays a replace dialog box.

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

◆ show() [4/6]

template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t >
static void xtd::forms::replace_box::show ( const iwin32_window owner,
const xtd::ustring find_string,
const xtd::ustring replace_string,
find_next_callback_t  find_next,
replace_callback_t  replace,
replace_all_callback_t  replace_all 
)
inlinestatic

Displays a replace dialog box.

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

◆ show() [5/6]

template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t >
static void xtd::forms::replace_box::show ( const iwin32_window owner,
const xtd::ustring find_string,
find_next_callback_t  find_next,
replace_callback_t  replace,
replace_all_callback_t  replace_all 
)
inlinestatic

Displays a replace dialog box.

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

◆ show() [6/6]

template<typename find_next_callback_t , typename replace_callback_t , typename replace_all_callback_t >
static void xtd::forms::replace_box::show ( const iwin32_window owner,
find_next_callback_t  find_next,
replace_callback_t  replace,
replace_all_callback_t  replace_all 
)
inlinestatic

Displays a replace dialog box.

Parameters
ownerAn xtd::forms::iwin32_window that represents the owner window of the replace dialog box.
find_nextThe callback called when the user click the find button.
replaceThe callback called when the user click the replace button.
replace_allThe callback called when the user click the replace all button.

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