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 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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
# -*- coding: utf-8 -*-
require File.expand_path File.join(File.dirname(__FILE__), 'pane')
require File.expand_path File.join(File.dirname(__FILE__), 'cuscadable')
require File.expand_path File.join(File.dirname(__FILE__), 'hierarchy_child')
require File.expand_path File.join(File.dirname(__FILE__), 'tab')
require File.expand_path File.join(File.dirname(__FILE__), 'widget')
class Plugin::GUI::Timeline
include Plugin::GUI::Cuscadable
include Plugin::GUI::HierarchyChild
include Plugin::GUI::HierarchyParent
include Plugin::GUI::Widget
role :timeline
set_parent_event :gui_timeline_join_tab
def initialize(*args)
super
Plugin.call(:timeline_created, self)
end
def <<(messages)
messages = Messages.new(messages) if messages.is_a? Enumerable
Plugin.call(:gui_timeline_add_messages, self, messages)
rescue TypedArray::UnexpectedTypeException => e
error "type mismatch!"
raise e
end
# タイムラインの中のツイートを全て削除する
def clear
Plugin.call(:gui_timeline_clear, self) end
# タイムラインの一番上にスクロール
def scroll_to_top
Plugin.call(:gui_timeline_scroll_to_top, self) end
# このタイムラインをアクティブにする。また、子のPostboxは非アクティブにする
# ==== Return
# self
def active!(just_this=true, by_toolkit=false)
set_active_child(nil, by_toolkit) if just_this
super end
# 選択されているMessageを返す
# ==== Return
# 選択されているMessage
def selected_messages
messages = Plugin.filtering(:gui_timeline_selected_messages, self, [])
messages[1] if messages.is_a? Array end
# _in_reply_to_message_ に対するリプライを入力するPostboxを作成してタイムライン上に表示する
# ==== Args
# [in_reply_to_message] リプライ先のツイート
# [options] Postboxのオプション
def create_reply_postbox(in_reply_to_message, options = {})
i_postbox = Plugin::GUI::Postbox.instance
i_postbox.options = options
i_postbox.poster = in_reply_to_message
notice "created postbox: #{i_postbox.inspect}"
self.add_child i_postbox
end
# Postboxを作成してこの中に入れる
# ==== Args
# [options] 設定値
# ==== Return
# 新しく作成したPostbox
def postbox(options = {})
postbox = Plugin::GUI::Postbox.instance
postbox.options = options
self.add_child postbox
postbox
end
# このタイムライン内の _message_ の部分文字列が選択されている場合それを返す。
# 何も選択されていない場合はnilを返す
# ==== Args
# [message] 調べるMessageのインスタンス
# ==== Return
# 選択されたテキスト
def selected_text(message)
type_strict message => Message
result = Plugin.filtering(:gui_timeline_selected_text, self, message, nil)
result.last if result end
# Messageを並べる順序を数値で返すブロックを設定する
# ==== Args
# [&block] 並び順
# ==== Return
# self
def order(&block)
Plugin.call(:gui_timeline_set_order, self, block)
end
end
|