Class: Watobo::Gui::ResponseViewer

Inherits:
FXVerticalFrame
  • Object
show all
Includes:
Utils
Defined in:
lib/watobo/gui/chatviewer_frame.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Utils

#addDecoder, #addEncoder, #addStringInfo, #cleanupHTTP, load_plugins, #removeTags, #replace_text

Constructor Details

#initialize(owner, opts) ⇒ ResponseViewer

Returns a new instance of ResponseViewer.



378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
# File 'lib/watobo/gui/chatviewer_frame.rb', line 378

def initialize(owner, opts)
  super(owner, opts)

  @tabbook = nil
  @viewers = []
  @text = ''
  @max_len = 5000

  @auto_filter = false

  @tabBook = FXTabBook.new(self, nil, 0, LAYOUT_FILL_X|LAYOUT_FILL_Y|LAYOUT_RIGHT)
  @tabBook.connect(SEL_COMMAND) {
    begin
      getApp().beginWaitCursor()
      setText(@text)
    ensure
      getApp().endWaitCursor()
    end
  }

  @text_dt = FXDataTarget.new('')

  textviewer_tab = FXTabItem.new(@tabBook, "Text", nil)
  tab_frame = FXVerticalFrame.new(@tabBook, :opts => LAYOUT_FILL_X|LAYOUT_FILL_Y|FRAME_RAISED)
  @textviewer = TextViewer.new( tab_frame, :opts => LAYOUT_FILL_X|LAYOUT_FILL_Y, :padding => 0)

  @textviewer.style = 2
  @textviewer.editable = false
  #   @textviewer.target = @text_dt
  #  @textviewer.selector = FXDataTarget::ID_VALUE

  @viewers << @textviewer

  taglessviewer_tab = FXTabItem.new(@tabBook, "Tagless", nil)
  tab_frame = FXVerticalFrame.new(@tabBook, :opts => LAYOUT_FILL_X|LAYOUT_FILL_Y|FRAME_RAISED)
  tagless_frame = FXVerticalFrame.new(tab_frame, :opts => LAYOUT_FILL_X|LAYOUT_FILL_Y|FRAME_SUNKEN|FRAME_THICK, :padding=>0)
  #text_view_header = FXHorizontalFrame.new(tagless_frame, :opts => LAYOUT_FILL_X|LAYOUT_SIDE_BOTTOM)
  @taglessviewer = TaglessViewer.new(tagless_frame, :opts => LAYOUT_FILL_X|LAYOUT_FILL_Y, :padding => 0)
  @viewers << @taglessviewer

  FXTabItem.new(@tabBook, "Hex", nil)
  tab_frame = FXVerticalFrame.new(@tabBook, :opts => LAYOUT_FILL_X|LAYOUT_FILL_Y|FRAME_RAISED)
  @hexViewer = HexViewer.new(tab_frame)
  @viewers << @hexViewer
end

Instance Attribute Details

#auto_filterObject

Returns the value of attribute auto_filter.



349
350
351
# File 'lib/watobo/gui/chatviewer_frame.rb', line 349

def auto_filter
  @auto_filter
end

#max_lenObject

Returns the value of attribute max_len.



349
350
351
# File 'lib/watobo/gui/chatviewer_frame.rb', line 349

def max_len
  @max_len
end

Instance Method Details

#getTextObject



365
366
367
368
# File 'lib/watobo/gui/chatviewer_frame.rb', line 365

def getText
  index = @tabBook.current
  @viewers[index].getText()
end

#highlight(pattern) ⇒ Object



370
371
372
373
374
375
376
# File 'lib/watobo/gui/chatviewer_frame.rb', line 370

def highlight(pattern)
  begin
    index = @tabBook.current
    @viewers[index].highlight(pattern)
  rescue
  end
end

#setFontSize(size) ⇒ Object



361
362
363
# File 'lib/watobo/gui/chatviewer_frame.rb', line 361

def setFontSize(size)
  @textviewer.setFont(nil, size)
end

#setText(text, prefs = {}) ⇒ Object



350
351
352
353
354
355
356
357
358
359
# File 'lib/watobo/gui/chatviewer_frame.rb', line 350

def setText(text, prefs={})

  @text = text
  @textviewer.max_len = @max_len
  index = @tabBook.current

  @viewers[index].setText(text)
# @textviewer.applyFilter if cp[:filter] == true

end