Class | Ui::WxWidgets::Widgets::NotesBrowser |
In: |
ui/wx/widgets/notesbrowser.rb
|
Parent: | Wx::HtmlWindow |
html_src | [R] |
# File ui/wx/widgets/notesbrowser.rb, line 126 def initialize(parent=nil) super(parent, Wx::ID_ANY, Wx::DEFAULT_POSITION, Wx::Size.new(400, 300) ) @model = [] evt_html_link_clicked(self.get_id) { |event| on_link_clicked(event)} home end
# File ui/wx/widgets/notesbrowser.rb, line 144 def show_notes(node_id, note_list) @node_id = node_id @notes = note_list filter_and_display() end