Sha256: bdf25a524b36a8a0e354ba654e42af6a560c271d24d3da868a08fa7bce2bff32

Contents?: true

Size: 1.21 KB

Versions: 16

Compression:

Stored size: 1.21 KB

Contents

module Fox
  #
  # Dialog box window.
  #
  # When a dialog box receives a +SEL_COMMAND+ message with identifier
  # +ID_CANCEL+ or +ID_ACCEPT+, the dialog box breaks out of the modal
  # loop and returns a completion code of either 0 or 1, respectively.
  #
  # To close a dialog box when it's not running modally, simply call
  # FXDialogBox#hide (or send it the +ID_HIDE+ command message).
  #
  # === Message identifiers
  #
  # +ID_CANCEL+::	Close the dialog, cancel the entry
  # +ID_ACCEPT+::	Close the dialog, accept the entry
  #
  class FXDialogBox < FXTopWindow
    #
    # Construct free-floating dialog.
    #
    def initialize(app, title, opts=DECOR_TITLE|DECOR_BORDER, x=0, y=0, w=0, h=0, padLeft=10, padRight=10, padTop=10, padBottom=10, hSpacing=4, vSpacing=4) # :yields: theDialogBox
    end
  
    #
    # Construct dialog which will always float over the _owner_ window.
    #
    def initialize(owner, title, opts=DECOR_TITLE|DECOR_BORDER, x=0, y=0, w=0, h=0, padLeft=10, padRight=10, padTop=10, padBottom=10, hSpacing=4, vSpacing=4) # :yields: theDialogBox
    end

    #
    # Run a modal invocation of the dialog, with specified initial _placement_.
    #
    def execute(placement=PLACEMENT_CURSOR); end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

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