Sha256: 2c722ea8742fd9e9061c5e6275dec6e2e68fe3a310caef8f079ffdd223f58d51

Contents?: true

Size: 1.35 KB

Versions: 14

Compression:

Stored size: 1.35 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

14 entries across 14 versions & 1 rubygems

Version Path
wxruby3-0.9.2-x64-mingw-ucrt samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.1-x64-mingw-ucrt samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0-x64-mingw-ucrt samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.rc.3-x64-mingw-ucrt samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.rc.2-x64-mingw-ucrt samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.rc.1-x64-mingw-ucrt samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.beta.14-x64-mingw-ucrt samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.beta.13-x64-mingw-ucrt samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.beta.11-x64-mingw-ucrt samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.beta.10-x64-mingw-ucrt samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.beta.9-x64-mingw-ucrt samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.beta.8-x64-mingw-ucrt samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.beta.2-x64-mingw-ucrt-3.2-3.2.2 samples/bigdemo/wxHtmlHelpController.rbw
wxruby3-0.9.0.pre.beta.1-x64-mingw-ucrt-3.2 samples/bigdemo/wxHtmlHelpController.rbw