Sha256: 425540ae2d673e4fc3494c5ee1246da990b297379c662e4a7948a9f61bff60e0

Contents?: true

Size: 1.7 KB

Versions: 2

Compression:

Stored size: 1.7 KB

Contents

# :stopdoc:
# This file is automatically generated by the WXRuby3 documentation 
# generator. Do not alter this file.
# :startdoc:


module Wx

  # {Wx::FindReplaceDialog} 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 <b>must</b> 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 Dialogs Sample sample for an example of using it.
  # === 
  # 
  # Category:  Common Dialogs
  # 
  class FindReplaceDialog < Dialog
  
    # After using default constructor {Wx::FindReplaceDialog#create} must be called.
    # The parent and data parameters must be non-NULL.
    # @param parent [Wx::Window] 
    # @param data [Wx::FindReplaceData] 
    # @param title [String] 
    # @param style [Integer] 
    # @return [Wx::FindReplaceDialog]
    def initialize(parent, data, title, style=0) end
    
    # Creates the dialog; use {Wx::Window#show} to show it on screen.
    # The parent and data parameters must be non-NULL.
    # @param parent [Wx::Window] 
    # @param data [Wx::FindReplaceData] 
    # @param title [String] 
    # @param style [Integer] 
    # @return [Boolean]
    def create(parent, data, title, style=0) end
    
    # Get the {Wx::FindReplaceData} object used by this dialog.
    # @return [Wx::FindReplaceData]
    def get_data; end
    alias_method :data, :get_data
    
  end # FindReplaceDialog
  

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
wxruby3-0.9.1-x64-mingw-ucrt lib/wx/doc/gen/find_replace_dialog.rb
wxruby3-0.9.0-x64-mingw-ucrt lib/wx/doc/gen/find_replace_dialog.rb