| Class | Ui::WxWidgets::Widgets::NotesBrowser |
| In: |
ui/wx/widgets/notesbrowser.rb
|
| Parent: | Wx::HtmlWindow |
| html_src | [R] |
# File ui/wx/widgets/notesbrowser.rb, line 142
142: def initialize(parent=nil)
143: super(parent, Wx::ID_ANY, Wx::DEFAULT_POSITION, Wx::Size.new(400, 300) )
144:
145: evt_html_link_clicked(self.get_id) { |event| on_link_clicked(event)}
146: home
147: end
# File ui/wx/widgets/notesbrowser.rb, line 154
154: def home()
155: self.set_page(HTML[:home])
156: end
# File ui/wx/widgets/notesbrowser.rb, line 166
166: def invalidate!() self.set_page(HTML[:invalid]); end
# File ui/wx/widgets/notesbrowser.rb, line 149
149: def set_page(html)
150: super html
151: @html_src = html
152: end