Class: Watobo::Plugin::Crawler::Gui::StatusFrame

Inherits:
FXHorizontalFrame
  • Object
show all
Includes:
Constants
Defined in:
plugins/crawler/gui/status_frame.rb

Constant Summary

Constants included from Constants

Constants::CRAWL_NONE, Constants::CRAWL_PAUSED, Constants::CRAWL_RUNNING

Instance Method Summary collapse

Constructor Details

#initialize(owner) ⇒ StatusFrame

Returns a new instance of StatusFrame.



63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'plugins/crawler/gui/status_frame.rb', line 63

def initialize(owner)
  super(owner, :opts => LAYOUT_FILL_X|FRAME_RAISED)
  @info_fields = []
  #frame = FXHorizontalFrame.new(, :opts => LAYOUT_FILL_Y, :padding => 0)
  frame = self
  @info_fields << ( @status_txt = FXLabel.new(frame, "Status: Stopped", :opts => FRAME_SUNKEN|LAYOUT_FIX_WIDTH, :width => 100) )
  @info_fields << (@link_size_txt = FXLabel.new(frame, "Links: 0", :opts => FRAME_SUNKEN|LAYOUT_FIX_WIDTH, :width => 70) )
  @info_fields << (@page_size_txt = FXLabel.new(frame, "Pages: 0", :opts => FRAME_SUNKEN|LAYOUT_FIX_WIDTH, :width => 70) )
  @info_fields << (@requests_txt = FXLabel.new(frame, "Requests: 0", :opts => FRAME_SUNKEN|LAYOUT_FIX_WIDTH, :width => 100) )

  @info_fields.each do |i|
    i.justify = JUSTIFY_LEFT
  end
end

Instance Method Details

#update_status(status) ⇒ Object

:engine_status => CRAWL_NONE, :page_size => 0, :link_size => 0, :skipped_domains => 0



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'plugins/crawler/gui/status_frame.rb', line 34

def update_status(status)
  if status.has_key? :engine_status
    case status[:engine_status]
    when CRAWL_NONE
      self.backColor = self.parent.backColor
      @status_txt.text = "Status: Idle"
    when CRAWL_RUNNING
      self.backColor = FXColor::Red
      @status_txt.text = "Status: Running"

    when CRAWL_PAUSED
      self.backColor = FXColor::Yellow
      @status_txt.text = "Status: Paused"
    end
  end

  if status.has_key? :link_size
    @link_size_txt.text = "Links: #{status[:link_size]}"
  end

  if status.has_key? :page_size
    @page_size_txt.text = "Pages: #{status[:page_size]}"
  end
  
  if status.has_key? :total_requests
    @requests_txt.text = "Requests: #{status[:total_requests]}"
  end
end