Class: GtkApp::Dialog::Notify
- Inherits:
-
Gtk::Window
- Object
- Gtk::Window
- GtkApp::Dialog::Notify
- Defined in:
- lib/gtk_app/dialog/notify.rb
Constant Summary collapse
- DEFAULT_OPTIONS =
{ :decorated => false, :resizable => false, :keep_above => true, :opacity => 0.8, :bg_color => 'lightgray', :padding => 6, :pixbuf => File.dirname(__FILE__) + '/notify.xpm', :pixmap => File.dirname(__FILE__) + '/notify.xpm', :label_fg => "#ffffff" }.freeze
Instance Attribute Summary collapse
-
#display ⇒ Object
readonly
Returns the value of attribute display.
Instance Method Summary collapse
-
#initialize(title, text, options = {}) ⇒ Notify
constructor
A new instance of Notify.
Constructor Details
#initialize(title, text, options = {}) ⇒ Notify
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/gtk_app/dialog/notify.rb', line 18 def initialize(title, text, ={}) @screen_info = {} conf = DEFAULT_OPTIONS.merge() screen = Gdk::Screen.default # @screen_info[:monitor] = screen.monitor @screen_info[:geometry] = screen.monitor_geometry(screen.number) # @screen_info[:x] = # @screen_info[:y] = super(Gtk::Window::POPUP) self.title = title self.decorated = conf[:decorated] self.resizable = conf[:resizable] self.keep_above = conf[:keep_above] self.stick ebox = Gtk::EventBox.new ebox.visible_window = false self.add(ebox) vbox = Gtk::VBox.new(false, conf[:padding]) vbox.border_width = 12 ebox.add(vbox) hbox = Gtk::HBox.new(false, conf[:padding]) vbox.pack_start(hbox, false, true, 0) image = Gtk::Image.new(Gdk::Pixbuf.new(conf[:pixbuf])) hbox.pack_start(image, false, false, 0) label = Gtk::Label.new(title) label.modify_fg(Gtk::STATE_NORMAL, Gdk::Color.parse(conf[:label_fg])) hbox.pack_start(label, false, false, 0) label = Gtk::Label.new(text) label.justify = Gtk::JUSTIFY_LEFT label.modify_fg(Gtk::STATE_NORMAL, Gdk::Color.parse(conf[:label_fg])) label.wrap = true # label.wrap_mode = true vbox.pack_start(label, true, false, 0) ebox.signal_connect('button-press-event') do || puts "button-press-event" end ebox.signal_connect('enter-notify-event') do || puts "enter-notify-enter" end ebox.signal_connect('leave-notify-event') do || puts "leave-notify-event" end self.app_paintable = true self.opacity = 0 self.show_all # # pixmap = Gdk::Pixmap.create_from_xpm(self, nil, conf[:pixmap]) # puts pixmap.size # # Gdk::Drawable.new() # self.shape_combine_mask(pixmap, 0, 0) end |
Instance Attribute Details
#display ⇒ Object (readonly)
Returns the value of attribute display.
16 17 18 |
# File 'lib/gtk_app/dialog/notify.rb', line 16 def display @display end |