Sha256: 964ca2c6d4e7c2c656fd42727a73c37d96af28696768a58c98523306a89afe52

Contents?: true

Size: 1.37 KB

Versions: 24

Compression:

Stored size: 1.37 KB

Contents

#!/usr/bin/env ruby
# wxRuby2 Sample Code. Copyright (c) 2004-2006 Kevin B. Smith
# Freely reusable code: see SAMPLES-LICENSE.TXT for details

begin
  require 'wx'
rescue LoadError => no_wx_err
  begin
    require 'rubygems'
    require 'wx'
  rescue LoadError
    raise no_wx_err
  end
end


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

24 entries across 24 versions & 1 rubygems

Version Path
wxruby-1.9.5-i386-mswin32 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.4-i386-mswin32 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.3-i386-mswin32 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.2-powerpc-darwin8.10.0 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.2-i686-linux samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.2-i686-darwin8.8.2 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.2-i386-mswin32 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.1-powerpc-darwin8.3.0 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.1-i686-linux samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.1-i686-darwin8.4.1 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.1-i386-mswin32 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.0-powerpc-darwin8.10.0 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.0-i686-linux samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.0-i686-darwin8.4.1 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.0-i386-mswin32 samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.1-x86_64-linux samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.3-universal-darwin samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.2-x86_64-linux samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.3-x86-linux samples/bigdemo/wxHtmlHelpController.rbw
wxruby-1.9.4-x86-linux samples/bigdemo/wxHtmlHelpController.rbw