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 42 43 44 45 46 47
|
# -*- coding: utf-8 -*-
# ウィンドウインターフェイスを提供するクラス
require_relative 'cuscadable'
require_relative 'hierarchy_parent'
require_relative 'widget'
class Plugin::GUI::Window
include Plugin::GUI::Cuscadable
include Plugin::GUI::HierarchyParent
include Plugin::GUI::Widget
role :window
attr_reader :icon
# instanceから呼ばれる。勝手に作成しないこと
def initialize(*args)
super
@@active ||= self
Plugin.call(:window_created, self)
end
# self がアクティブになったことを報告する
def active!(just_this=true, by_toolkit=false)
@@active = self
end
def self.active
@@active ||= instance(:default, _("デフォルト"))
end
def set_icon(icon)
case icon
when Diva::Model
@icon = icon
when String, URI, Addressable::URI, Diva::URI
_, photos = Plugin.filtering(:photo_filter, icon, [])
@icon = photos.first || Skin['notfound.png']
else
raise RuntimeError, "Unexpected class `#{icon.class}'."
end
Plugin.call(:gui_window_change_icon, self, icon)
end
end
|