Class: Watobo::Plugin::Sqlmap::SettingsTabBook

Inherits:
FXTabBook
  • Object
show all
Defined in:
plugins/sqlmap/gui/main.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(owner) ⇒ SettingsTabBook

Returns a new instance of SettingsTabBook.



28
29
30
31
32
33
34
35
36
37
38
39
# File 'plugins/sqlmap/gui/main.rb', line 28

def initialize(owner)
  #@tab = FXTabBook.new(self, nil, 0, LAYOUT_FILL_X|LAYOUT_FILL_Y|LAYOUT_RIGHT)
  super(owner, nil, 0, LAYOUT_FILL_X|LAYOUT_FILL_Y|LAYOUT_RIGHT)
  FXTabItem.new(self, "General", nil)
  @general = OptionsFrame.new(self, :opts => LAYOUT_FILL_X|LAYOUT_FILL_Y|FRAME_RAISED)

#   FXTabItem.new(self, "Advanced", nil)
#   frame = FXVerticalFrame.new(self, :opts => LAYOUT_FILL_X|LAYOUT_FILL_Y|FRAME_RAISED)
#   FXTabItem.new(self, "Log", nil)
#   frame = FXVerticalFrame.new(self, :opts => LAYOUT_FILL_X|LAYOUT_FILL_Y|FRAME_THICK|FRAME_RAISED)
#   @log_viewer = Watobo::Gui::LogViewer.new(frame, :append, :opts => LAYOUT_FILL_X|LAYOUT_FILL_Y|FRAME_SUNKEN)
end

Instance Attribute Details

#generalObject (readonly)

Returns the value of attribute general.



27
28
29
# File 'plugins/sqlmap/gui/main.rb', line 27

def general
  @general
end