File: tooltips.rb

package info (click to toggle)
ruby-gnome2 0.15.0-1.1
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 7,692 kB
  • ctags: 8,558
  • sloc: ansic: 69,912; ruby: 19,511; makefile: 97; xml: 35; sql: 13
file content (41 lines) | stat: -rw-r--r-- 1,138 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
=begin

  tooltips.rb - a part of testgtk.c rewritten in Ruby/GTK2

  Copyright (C) 2002-2005 Ruby-GNOME2 Project Team

  $Id: tooltips.rb,v 1.6 2005/07/21 17:47:19 mutoh Exp $

=end

require 'sample'

class TooltipsSample < SampleWindow
  def initialize
    super("Tooltips")
    set_default_size(200, -1)
    set_border_width(5)

    tooltips = Gtk::Tooltips.new

    button = Gtk::ToggleButton.new("button1")
    tooltips.set_tip(button,"This is button 1", "ContextHelp/buttons/1")

    button2 = Gtk::ToggleButton.new("button2")
    tooltips.set_tip(button2,
		     "This is button 2. This is also a really long tooltip which probably won't fit on a single line and will therefore need to be wrapped. Hopefully the wrapping will work correctly.",
		     "ContextHelp/buttons/2_long")
    vbox = Gtk::VBox.new(false, 10)
    vbox.add(button)
    vbox.add(button2)
    vbox.add(Gtk::HSeparator.new)

    button4 = Gtk::Button.new("close")
    button4.signal_connect("clicked"){destroy}
    vbox.pack_start(button4)

    tooltips.set_tip(button4, "Push this button to close window", "ContextHelp/buttons/Close")

    add(vbox)
  end
end