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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
# -*- coding: utf-8 -*-
Plugin::create(:set_view) do
UserConfig[:mumble_system_bg] ||= [255*222, 65535, 255*176]
filter_message_background_color do |miracle_painter, color|
if !color
slug = miracle_painter.message.class.slug
color = if miracle_painter.selected
UserConfig[:"#{slug}_selected_bg"] || UserConfig[:mumble_selected_bg]
elsif(miracle_painter.message.from_me?)
UserConfig[:"#{slug}_self_bg"] || UserConfig[:mumble_self_bg]
elsif(miracle_painter.message.to_me?)
UserConfig[:"#{slug}_reply_bg"] || UserConfig[:mumble_reply_bg]
else
UserConfig[:"#{slug}_basic_bg"] || UserConfig[:mumble_basic_bg] end end
[miracle_painter, color]
end
filter_subparts_replyviewer_background_color do |message, color|
[message, color || UserConfig[:replyviewer_background_color]] end
filter_subparts_quote_background_color do |message, color|
[message, color || UserConfig[:quote_background_color]] end
filter_message_font do |message, font|
[message, font || UserConfig[:"#{message.class.slug}_basic_font"] || UserConfig[:mumble_basic_font]] end
filter_message_font_color do |message, color|
[message, color || UserConfig[:"#{message.class.slug}_basic_color"] || UserConfig[:mumble_basic_color]] end
filter_message_header_left_font do |message, font|
[message, font || UserConfig[:"#{message.class.slug}_basic_left_font"] || UserConfig[:mumble_basic_left_font]] end
filter_message_header_left_font_color do |message, color|
[message, color || UserConfig[:"#{message.class.slug}_basic_left_color"] || UserConfig[:mumble_basic_left_color]] end
filter_message_header_right_font do |message, font|
[message, font || UserConfig[:"#{message.class.slug}_basic_right_font"] || UserConfig[:mumble_basic_right_font]] end
filter_message_header_right_font_color do |message, color|
[message, color || UserConfig[:"#{message.class.slug}_basic_right_color"] || UserConfig[:mumble_basic_right_color]] end
settings(_("表示")) do
settings _('カスタム絵文字') do
boolean(_('カスタム絵文字を表示する'), :miraclepainter_expand_custom_emoji).
tooltip(_("本文にカスタム絵文字(Emoji Note)が含まれていれば、その画像を取得して表示します。\n無効にすれば、画像のダウンロードは発生せず代替テキストが表示されるので、そのぶん通信トラフィックを抑えることができます。"))
end
settings _('選択中') do
color _('背景色'), :mumble_selected_bg
end
settings _('共通') do
select _('UIの拡大率'), :ui_scale do
option 1, _('等倍')
option 1.5, _('1.5倍')
option 2, _('2倍')
option :auto, _('自動(%<scale>.2f倍)') % {scale: Gdk::Visual.system.screen.resolution / 100}
end
boolean(_('acctのドメイン名をりんすきにする'), :idname_abbr)
end
Plugin.filtering(:retrievers, []).first.select(&:timeline).each do |modelspec|
slug = modelspec[:slug]
settings(_(modelspec[:name])) do
settings(_('デフォルト')) do
settings(_('フォント')) do
fontcolor _('本文'), [:"#{slug}_basic_font", :mumble_basic_font], [:"#{slug}_basic_color", :mumble_basic_color]
fontcolor _('ヘッダ(左)'), [:"#{slug}_basic_left_font", :mumble_basic_left_font], [:"#{slug}_basic_left_color", :mumble_basic_left_color]
fontcolor _('ヘッダ(右)'), [:"#{slug}_basic_right_font", :mumble_basic_right_font], [:"#{slug}_basic_right_color", :mumble_basic_right_color]
end
color _('背景色'), [:"#{slug}_basic_bg", :mumble_basic_bg]
end
if modelspec[:reply]
settings(_('自分宛の%{retriever}') % {retriever: modelspec[:name]}) do
color _('背景色'), [:"#{slug}_reply_bg", :mumble_reply_bg]
end
end
if modelspec[:myself]
settings(_('自分の%{retriever}') % {retriever: modelspec[:name]}) do
color _('背景色'), [:"#{slug}_self_bg", :mumble_self_bg]
end
end
end
end
settings(_('背景色')) do
color(_('コメント付きシェア'), :quote_background_color).
tooltip(_('コメント付きシェアをすると、下に囲われて表示されるじゃないですか、あれです'))
end
settings(_('リプライ先')) do
fontcolor _('フォント'), :reply_text_font, :reply_text_color
color(_('背景色'), :replyviewer_background_color)
multiselect _('表示項目'), :reply_present_policy do
option(:header, _('ヘッダを表示する'))
option(:icon, _('アイコンを表示する')) do
select _('アイコンのサイズ'), :reply_icon_size do
[12,16,24,32,36,48,UserConfig[:reply_icon_size]].compact.uniq.sort.each do |size|
option size, "#{size}px" if size end end end
option(:edge, _('枠線を表示する')) do
select _('枠線の種類'), :reply_edge, floating: _('影'), solid: _('線'), flat: _('枠線なし') end end
adjustment _('本文の最大行数'), :reply_text_max_line_count, 1, 10
select _('クリックされたときの挙動'), :reply_clicked_action do
option nil, _('何もしない')
option :open, _('開く')
option :smartthread, _('会話スレッドを表示') end
end
settings(_('コメント付きシェア')) do
fontcolor _('フォント'), :quote_text_font, :quote_text_color
color(_('背景色'), :quote_background_color)
multiselect _('表示項目'), :quote_present_policy do
option(:header, _('ヘッダを表示する'))
option(:icon, _('アイコンを表示する')) do
select _('アイコンのサイズ'), :quote_icon_size do
[12,16,24,32,36,48,UserConfig[:quote_icon_size]].compact.uniq.sort.each do |size|
option size, "#{size}px" if size end end end
option(:edge, _('枠線を表示する')) do
select _('枠線の種類'), :quote_edge, floating: _('影'), solid: _('線'), flat: _('枠線なし') end end
adjustment _('本文の最大行数'), :quote_text_max_line_count, 1, 10
select _('クリックされたときの挙動'), :quote_clicked_action do
option nil, _('何もしない')
option :open, _('開く')
option :smartthread, _('会話スレッドを表示') end
end
settings(_('Mentions')) do
boolean(_('リプライを返した投稿にはアイコンを表示'), :show_replied_icon).
tooltip(_("リプライを返した投稿のアイコン上に、リプライボタンを隠さずにずっと表示しておきます。"))
end
settings(_('ふぁぼふぁぼ')) do
boolean(_('ふぁぼられをリプライの受信として処理する'), :favorited_by_anyone_act_as_reply).
tooltip(_("ふぁぼられた投稿が、リプライタブに現れるようになります。"))
boolean(_('ふぁぼられた投稿をTL上でageる'), :favorited_by_anyone_age).
tooltip(_("投稿がふぁぼられたら、投稿された時刻にかかわらず一番上に上げます"))
boolean(_('自分がふぁぼった投稿をTL上でageる'), :favorited_by_myself_age).
tooltip(_("自分がふぁぼった投稿を、TLの一番上に上げます"))
end
settings(_('シェア')) do
boolean(_('シェアされた投稿をTL上でageる'), :retweeted_by_anyone_age).
tooltip(_("投稿がシェアされたら、投稿された時刻にかかわらず一番上に上げます"))
boolean(_('自分がシェアした投稿をTL上でageる'), :retweeted_by_myself_age).
tooltip(_("自分がシェアした投稿を、TLの一番上に上げます"))
end
settings(_('非公開アカウント')) do
boolean(_('非公開アカウントの投稿にはアイコンを表示'), :show_protected_icon).
tooltip(_("非公開アカウントの投稿のアイコン上に、シェアできないこと示すアイコンを隠さずにずっと表示しておきます。"))
end
settings(_('承認済みアカウント')) do
boolean(_('承認済みアカウントの投稿にはアイコンを表示'), :show_verified_icon).
tooltip(_("承認されたアカウントの投稿のアイコンの上に、そのことを示すアイコンを隠さずにずっと表示しておきます。"))
end
settings(_('短縮URL')) do
boolean(_('短縮URLを展開して表示'), :shrinkurl_expand).
tooltip(_("受信した投稿に短縮URLが含まれていた場合、それを短縮されていない状態に戻してから表示します。"))
end
select _('タブの位置'), :tab_position, 0 => _('上'), 1 => _('下'), 2 => _('左'), 3 => _('右')
select _('投稿ボックス'), :postbox_visibility, always: _('常に表示する'), none: _('表示しない'), auto: _('1アカウント以上あれば表示')
select _('アカウント切り替え'), :world_shifter_visibility, always: _('常に表示する'), none: _('表示しない'), auto: _('2アカウント以上あれば表示')
select(_('URLを開く方法'), :url_open_specified_command) do
option false, _("デフォルトブラウザを使う")
option true do
fileselect _("次のコマンドを使う"), :url_open_command
end
end
settings(_('タイムライン')) do
adjustment(_('最大表示件数'), :timeline_max, 1, 10000)
end
end
end
|