Sha256: 276421c5e32ddcab9591de8f0f21123002a3abd2338661f3417426aaad4d80e5

Contents?: true

Size: 1.36 KB

Versions: 13

Compression:

Stored size: 1.36 KB

Contents

#
# Class used to display a connection dialog box
#
class FXSearchDialogBox < FXDialogBox
  attr_accessor :index

  def text=(x)
    @search.text = x
    @index = 0
  end

  def text
    return @search.text
  end

  def proc=(p)
    @search.connect(SEL_CHANGED, p)
    @proc = p
  end

  def initialize(parent)
    decor = DECOR_TITLE|DECOR_BORDER|DECOR_CLOSE
    super( parent, '', decor, 40, 200, 0, 0 )
    @index = 0
    mainFrame = FXVerticalFrame.new(self,
				    FRAME_SUNKEN|FRAME_THICK|
				    LAYOUT_FILL_X|LAYOUT_FILL_Y)

    frame = FXHorizontalFrame.new(mainFrame, LAYOUT_SIDE_TOP|LAYOUT_FILL_X)

    FXLabel.new(frame, "Search String: ", nil, 0, LAYOUT_FILL_X)
    @search = FXTextField.new(frame, 40, nil, 0, LAYOUT_FILL_ROW)

    frame = FXHorizontalFrame.new(mainFrame, LAYOUT_SIDE_BOTTOM|LAYOUT_FILL_X)
    @previous = FXButton.new(frame, "Previous Match")
    @previous.connect(SEL_COMMAND) { |sender, sel, e |
      @index -= 1 if @index > 0
      sender.handle(self, MKUINT(message, SEL_CHANGED), nil)
      @proc.call @search, nil, nil if @proc
    }
    @next     = FXButton.new(frame, "Next Match") 
    @next.connect(SEL_COMMAND) { |sender, sel, e |
      @index += 1
      @proc.call @search, nil, nil if @proc
    }

    # We need to create the dialog box first, so we can use select text.
    create
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
ifmapper-0.5 lib/IFMapper/FXSearchDialogBox.rb
ifmapper-0.6 lib/IFMapper/FXSearchDialogBox.rb
ifmapper-0.8 lib/IFMapper/FXSearchDialogBox.rb
ifmapper-0.8.1 lib/IFMapper/FXSearchDialogBox.rb
ifmapper-0.8.5 lib/IFMapper/FXSearchDialogBox.rb
ifmapper-0.9.5 lib/IFMapper/FXSearchDialogBox.rb
ifmapper-0.9.7 lib/IFMapper/FXSearchDialogBox.rb
ifmapper-0.9.6 lib/IFMapper/FXSearchDialogBox.rb
ifmapper-0.7 lib/IFMapper/FXSearchDialogBox.rb
ifmapper-0.9 lib/IFMapper/FXSearchDialogBox.rb
ifmapper-0.9.8 lib/IFMapper/FXSearchDialogBox.rb
ifmapper-0.9.9 lib/IFMapper/FXSearchDialogBox.rb
ifmapper-1.0.0 lib/IFMapper/FXSearchDialogBox.rb