GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
wxFindReplaceDialog(3) Erlang Module Definition wxFindReplaceDialog(3)

wxFindReplaceDialog - Functions for wxFindReplaceDialog class

wxFindReplaceDialog is a standard modeless dialog which is used to allow the user to search for some text (and possibly replace it with something else).

The actual searching is supposed to be done in the owner window which is the parent of this dialog. Note that it means that unlike for the other standard dialogs this one must have a parent window. Also note that there is no way to use this dialog in a modal way; it is always, by design and implementation, modeless.

Please see the page_samples_dialogs sample for an example of using it.

This class is derived (and can use functions) from: wxDialog wxTopLevelWindow wxWindow wxEvtHandler

wxWidgets docs: wxFindReplaceDialog

wxFindReplaceDialog() = wx:wx_object()

new() -> wxFindReplaceDialog()


new(Parent, Data, Title) -> wxFindReplaceDialog()


Types:

Parent = wxWindow:wxWindow()
Data = wxFindReplaceData:wxFindReplaceData()
Title = unicode:chardata()

new(Parent, Data, Title, Options :: [Option]) ->

       wxFindReplaceDialog()


Types:

Parent = wxWindow:wxWindow()
Data = wxFindReplaceData:wxFindReplaceData()
Title = unicode:chardata()
Option = {style, integer()}

After using default constructor create/5 must be called.

The parent and data parameters must be non-NULL.

destroy(This :: wxFindReplaceDialog()) -> ok


Destructor.

create(This, Parent, Data, Title) -> boolean()


Types:

This = wxFindReplaceDialog()
Parent = wxWindow:wxWindow()
Data = wxFindReplaceData:wxFindReplaceData()
Title = unicode:chardata()

create(This, Parent, Data, Title, Options :: [Option]) ->

          boolean()


Types:

This = wxFindReplaceDialog()
Parent = wxWindow:wxWindow()
Data = wxFindReplaceData:wxFindReplaceData()
Title = unicode:chardata()
Option = {style, integer()}

Creates the dialog; use wxWindow:show/2 to show it on screen.

The parent and data parameters must be non-NULL.

getData(This) -> wxFindReplaceData:wxFindReplaceData()


Types:

This = wxFindReplaceDialog()

Get the wxFindReplaceData object used by this dialog.

wx 2.1.1 wxWidgets team.

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.