|
|
@ -1,12 +1,12 @@ |
|
|
|
BEGIN { return 1 unless $^O =~ /win32/i; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package Win32Tray; |
|
|
|
package Win32Tray; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return 1 unless $^O =~ /win32/i; |
|
|
|
|
|
|
|
|
|
|
|
use strict; |
|
|
|
use strict; |
|
|
|
use warnings; |
|
|
|
use warnings; |
|
|
|
|
|
|
|
|
|
|
|
use Milkbone; |
|
|
|
use Milkbone; |
|
|
|
use Win32::GUI; |
|
|
|
eval 'use Win32::GUI'; |
|
|
|
use Tk; |
|
|
|
use Tk; |
|
|
|
|
|
|
|
|
|
|
|
my $icon = new Win32::GUI::Icon(path("images/mbone.ico")) or die "Couldn't load icon."; |
|
|
|
my $icon = new Win32::GUI::Icon(path("images/mbone.ico")) or die "Couldn't load icon."; |
|
|
@ -27,7 +27,7 @@ register_hook("signed_in", sub { |
|
|
|
); |
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
hook("tk_getmain")->repeat(500, [sub { |
|
|
|
hook("tk_getmain")->repeat(500, [sub { |
|
|
|
Win32::GUI::DoEvents; |
|
|
|
Win32::GUI::DoEvents(); |
|
|
|
}, $parent]); |
|
|
|
}, $parent]); |
|
|
|
|
|
|
|
|
|
|
|
register_hook("post_mainloop", sub { |
|
|
|
register_hook("post_mainloop", sub { |
|
|
|