Sha256: fd5abe08897a48a2227f0e2ee65c8900c827240354e69309321861d7ac0ef8e0

Contents?: true

Size: 1.44 KB

Versions: 18

Compression:

Stored size: 1.44 KB

Contents

module Fox
  #
  # Search and replace dialog box.
  #
  # === Message identifiers
  #
  # +ID_NEXT+::         x
  # +ID_PREV+::         x
  # +ID_SEARCH_UP+::    x
  # +ID_SEARCH_DN+::    x
  # +ID_REPLACE_UP+::   x
  # +ID_REPLACE_DN+::	x
  # +ID_ALL+::		x
  # +ID_DIR+::   	x
  # +ID_SEARCH_TEXT+::	x
  # +ID_REPLACE_TEXT+::	x
  # +ID_MODE+::		x
  #
  class FXReplaceDialog < FXDialogBox
    #
    # Search matching mode, one of the following:
    #
    # +DONE+::		Cancel search
    # +SEARCH+::	Search first occurrence
    # +REPLACE+::	Replace first occurrence
    # +SEARCH_NEXT+::	Search next occurrence
    # +REPLACE_NEXT+::	Replace next occurrence
    # +REPLACE_ALL+::	Replace all occurrences
    #
    attr_accessor :searchMode
    
    # Text or pattern to search for [String]
    attr_accessor :searchText
    
    # Replacement text [String]
    attr_accessor :replaceText
  
    #
    # Return an initialized FXReplaceDialog instance.
    #
    # ==== Parameters:
    #
    # +owner+::		the owner window for this dialog box [FXWindow]
    # +caption+::	the caption (title) string for this dialog box [String]
    # +ic+::		the icon [FXIcon]
    # +opts+::		the options [Integer]
    # +x+::		initial x-position [Integer]
    # +y+::		initial y-position [Integer]
    # +w+::		initial width [Integer]
    # +h+::		initial height [Integer]
    #
    def initialize(owner, caption, ic=nil, opts=0, x=0, y=0, w=0, h=0) # :yield: theReplaceDialog
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
fxruby-1.2.2 rdoc-sources/FXReplaceDialog.rb
fxruby-1.2.3 rdoc-sources/FXReplaceDialog.rb
fxruby-1.2.4 rdoc-sources/FXReplaceDialog.rb
fxruby-1.2.5 rdoc-sources/FXReplaceDialog.rb
fxruby-1.4.0 rdoc-sources/FXReplaceDialog.rb
fxruby-1.2.6 rdoc-sources/FXReplaceDialog.rb
fxruby-1.4.2 rdoc-sources/FXReplaceDialog.rb
fxruby-1.4.1 rdoc-sources/FXReplaceDialog.rb
fxruby-1.4.3 rdoc-sources/FXReplaceDialog.rb
fxruby-1.4.4 rdoc-sources/FXReplaceDialog.rb
fxruby-1.4.5 rdoc-sources/FXReplaceDialog.rb
fxruby-1.4.6 rdoc-sources/FXReplaceDialog.rb
fxruby-1.4.7 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.0 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.1 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.2 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.3 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.4 rdoc-sources/FXReplaceDialog.rb