Sha256: 6a952ce94497bc904370b13b9d3065d6fdf82d6f75cff5aaf6d099524072977f

Contents?: true

Size: 1.3 KB

Versions: 54

Compression:

Stored size: 1.3 KB

Contents

#!/usr/bin/env ruby
# wxRuby2 Sample Code. Copyright (c) 2004-2008 wxRuby development team
# Freely reusable code: see SAMPLES-LICENSE.TXT for details
begin
  require 'rubygems' 
rescue LoadError
end
require 'wx'




class TestPanel < Wx::Panel
  def initialize(parent, log)
    super(parent, -1, Wx::DEFAULT_POSITION, Wx::DEFAULT_SIZE, 
          Wx::NO_FULL_REPAINT_ON_RESIZE)
    @log = log

    b = Wx::Button.new(self, -1, 'Give me some help!', 
                   Wx::Point.new(50,50))

    evt_button(b.get_id) { on_button }
  end

  def on_button
    help = Wx::HtmlHelpController.instance
    help_file = File.join( File.dirname(__FILE__), 'helpfile.htb')
    exit if not File.exists?(help_file)
    help.add_book( File.expand_path(help_file), false )
    help.display_contents
  end
end
        
module Demo
  def Demo.run(frame, nb, log)
    TestPanel.new(nb, log)
  end
    
  def Demo.overview
    "Wx::HtmlHelpController is a sophisticated viewer for online help\n" +
    "documentation in HTML format. It uses a format based on the Microsoft\n" + 
    "HTML Help format, but is available on all platforms. It includes a\n" +
    "contents page, index and keyword search."
  end
end


if __FILE__ == $0
  run_solo_lib = File.join( File.dirname(__FILE__), 'run.rb')
  load run_solo_lib
  run File.basename($0)
end

Version data entries

54 entries across 54 versions & 4 rubygems

Version Path
wxruby3-0.9.2 samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.1 samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0 samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.rc.3 samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.rc.2 samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.rc.1 samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.beta.14 samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.beta.13 samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.beta.11 samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.beta.10 samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.beta.9 samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.beta.8 samples/bigdemo/wxHtmlHelpController.rbw
wxruby64-2.0.1-x64-mingw32 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-ruby19-2.0.1-x86-mingw32 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-ruby19-2.0.1-x86-linux samples/bigdemo/wxHtmlHelpController.rbw
wxruby-ruby19-2.0.1-x86-darwin-9 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-2.0.1-x86-mswin32-60 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-2.0.1-x86-mingw32 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-2.0.1-x86-linux samples/bigdemo/wxHtmlHelpController.rbw
wxruby-2.0.1-universal-darwin-9 samples/bigdemo/wxHtmlHelpController.rbw