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
|
# -*- coding: utf-8 -*-
# ウィンドウインターフェイスを提供するクラス
require File.expand_path File.join(File.dirname(__FILE__), 'cuscadable')
require File.expand_path File.join(File.dirname(__FILE__), 'hierarchy_parent')
require File.expand_path File.join(File.dirname(__FILE__), '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)
@icon = icon
Plugin.call(:gui_window_change_icon, self, icon)
end
end
|