Sha256: 373a704fd8fdab8ec7651d676824e4909247230396dd6ede26554e4401446e7e

Contents?: true

Size: 1.46 KB

Versions: 37

Compression:

Stored size: 1.46 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]
    # +width+::		initial width [Integer]
    # +height+::		initial height [Integer]
    #
    def initialize(owner, caption, ic=nil, opts=0, x=0, y=0, width=0, height=0) # :yield: theReplaceDialog
    end
  end
end

Version data entries

37 entries across 37 versions & 2 rubygems

Version Path
fxruby-1.6.22.pre2-x86-mingw32 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.22.pre2 rdoc-sources/FXReplaceDialog.rb
fxrubi-1.6.22.pre1-x86-mingw32 rdoc-sources/FXReplaceDialog.rb
fxrubi-1.6.22.pre1 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.20-x86-mingw32 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.20-x86-linux rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.20 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.20-universal-darwin-10 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.19-x86-mingw32 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.14-mswin32 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.13-mswin32 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.11 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.10 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.12 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.13 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.14-universal-darwin-9 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.15-universal-darwin-9 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.14 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.15 rdoc-sources/FXReplaceDialog.rb
fxruby-1.6.15-x86-mswin32-60 rdoc-sources/FXReplaceDialog.rb