Class: Rabbit::Canvas
- Inherits:
-
Object
- Object
- Rabbit::Canvas
- Extended by:
- Forwardable
- Includes:
- Enumerable, GetText
- Defined in:
- lib/rabbit/canvas.rb
Direct Known Subclasses
Constant Summary collapse
- INTERNAL_DPI =
80.0
Constants included from GetText
Instance Attribute Summary collapse
-
#actions ⇒ Object
readonly
Returns the value of attribute actions.
- #allotted_time ⇒ Object
-
#comment_theme ⇒ Object
Returns the value of attribute comment_theme.
-
#comments ⇒ Object
readonly
Returns the value of attribute comments.
-
#font_resolution_ratio ⇒ Object
Returns the value of attribute font_resolution_ratio.
-
#last_modified ⇒ Object
readonly
Returns the value of attribute last_modified.
-
#logger ⇒ Object
readonly
Returns the value of attribute logger.
-
#max_n_comments ⇒ Object
Returns the value of attribute max_n_comments.
-
#migemo_dictionary_name ⇒ Object
Returns the value of attribute migemo_dictionary_name.
-
#migemo_dictionary_search_path ⇒ Object
Returns the value of attribute migemo_dictionary_search_path.
-
#output_html ⇒ Object
Returns the value of attribute output_html.
-
#output_index_html ⇒ Object
Returns the value of attribute output_index_html.
-
#renderer ⇒ Object
readonly
Returns the value of attribute renderer.
-
#rss_base_uri ⇒ Object
Returns the value of attribute rss_base_uri.
- #saved_image_base_name ⇒ Object
-
#saved_image_type ⇒ Object
Returns the value of attribute saved_image_type.
-
#source_filename ⇒ Object
Returns the value of attribute source_filename.
-
#use_gl ⇒ Object
writeonly
Sets the attribute use_gl.
Instance Method Summary collapse
- #<<(slide) ⇒ Object
- #action(name) ⇒ Object
- #activate(name, &block) ⇒ Object
- #append_comment(comment) ⇒ Object
- #apply_theme(name = nil, &block) ⇒ Object
- #applying? ⇒ Boolean
- #attach_to(frame, window, container = nil, &block) ⇒ Object
- #cache_all_slides ⇒ Object
- #change_current_index(new_index) ⇒ Object
- #current_index ⇒ Object
- #current_slide ⇒ Object
- #delete_on_comment_proc_by_name(name) ⇒ Object
- #detach ⇒ Object
- #each(&block) ⇒ Object
- #find_slide(pattern) ⇒ Object
- #first_slide? ⇒ Boolean
- #font_resolution ⇒ Object
- #front(public_level = nil) ⇒ Object
- #full_path(path) ⇒ Object
- #fullscreened ⇒ Object
- #have_next? ⇒ Boolean
- #have_next_slide? ⇒ Boolean
- #have_previous? ⇒ Boolean
- #have_previous_slide? ⇒ Boolean
- #iconified ⇒ Object
- #index_mode? ⇒ Boolean
-
#initialize(logger, renderer) ⇒ Canvas
constructor
A new instance of Canvas.
- #last_slide? ⇒ Boolean
- #merge_theme(name) ⇒ Object
- #move_to_first ⇒ Object
- #move_to_if_can(index) ⇒ Object
- #move_to_last ⇒ Object
- #move_to_next_if_can ⇒ Object
- #move_to_next_slide_if_can ⇒ Object
- #move_to_previous_if_can ⇒ Object
- #move_to_previous_slide_if_can ⇒ Object
- #need_reload_source? ⇒ Boolean
- #next_slide ⇒ Object
- #on_comment(name, &callback) ⇒ Object
- #parse(source = nil, callback = nil, &block) ⇒ Object
- #parsing? ⇒ Boolean
- #print(&block) ⇒ Object
- #processing? ⇒ Boolean
- #quit ⇒ Object
- #quitted? ⇒ Boolean
- #reload_source(callback = nil, &block) ⇒ Object
- #reload_theme(&block) ⇒ Object
- #reset_timer ⇒ Object
- #rest_time ⇒ Object
- #save_as_image ⇒ Object
- #slide_index(pattern) ⇒ Object
- #slide_indexes(pattern) ⇒ Object
- #slide_size ⇒ Object
- #slide_text(index = current_index) ⇒ Object
- #slide_title(index = current_index) ⇒ Object
- #slides ⇒ Object
- #source ⇒ Object
- #source_force_modified(force_modified) {|@source| ... } ⇒ Object
- #start_auto_redraw_timer(interval) ⇒ Object
- #start_timer(limit) ⇒ Object
- #stop_auto_redraw_timer ⇒ Object
- #theme_name ⇒ Object
- #title ⇒ Object
- #title_slide ⇒ Object
- #tmp_dir_name ⇒ Object
- #to_pixbuf(i) ⇒ Object
- #toggle_index_mode ⇒ Object
- #unfullscreened ⇒ Object
- #update_index_slides ⇒ Object
- #use_gl? ⇒ Boolean
- #with_index_mode(new_value) ⇒ Object
Methods included from GetText
Constructor Details
#initialize(logger, renderer) ⇒ Canvas
Returns a new instance of Canvas.
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 |
# File 'lib/rabbit/canvas.rb', line 133 def initialize(logger, renderer) @logger = logger @frame = NullFrame.new @theme_name = nil @saved_image_base_name = nil @saved_image_type = "png" @processing = false @quitted = false @parse_request_queue = [] @apply_theme_request_queue = [] @auto_redraw_timer = nil @output_html = false @rss_base_uri = nil @source_filename = nil @migemo_dictionary_search_path = [] @migemo_dictionary_name = nil @limit_time = nil @use_gl = false @font_resolution_ratio = 1 @max_n_comments = 100 @allotted_time = nil @comment_theme = nil clear @renderer = renderer.new(self) @actions = Action.action_group(self) end |
Instance Attribute Details
#actions ⇒ Object (readonly)
Returns the value of attribute actions.
121 122 123 |
# File 'lib/rabbit/canvas.rb', line 121 def actions @actions end |
#allotted_time ⇒ Object
617 618 619 620 621 |
# File 'lib/rabbit/canvas.rb', line 617 def allotted_time time = @allotted_time time ||= .allotted_time if Utils.ensure_time(time) end |
#comment_theme ⇒ Object
Returns the value of attribute comment_theme.
131 132 133 |
# File 'lib/rabbit/canvas.rb', line 131 def comment_theme @comment_theme end |
#comments ⇒ Object (readonly)
Returns the value of attribute comments.
121 122 123 |
# File 'lib/rabbit/canvas.rb', line 121 def comments @comments end |
#font_resolution_ratio ⇒ Object
Returns the value of attribute font_resolution_ratio.
130 131 132 |
# File 'lib/rabbit/canvas.rb', line 130 def font_resolution_ratio @font_resolution_ratio end |
#last_modified ⇒ Object (readonly)
Returns the value of attribute last_modified.
120 121 122 |
# File 'lib/rabbit/canvas.rb', line 120 def last_modified @last_modified end |
#logger ⇒ Object (readonly)
Returns the value of attribute logger.
120 121 122 |
# File 'lib/rabbit/canvas.rb', line 120 def logger @logger end |
#max_n_comments ⇒ Object
Returns the value of attribute max_n_comments.
131 132 133 |
# File 'lib/rabbit/canvas.rb', line 131 def max_n_comments @max_n_comments end |
#migemo_dictionary_name ⇒ Object
Returns the value of attribute migemo_dictionary_name.
129 130 131 |
# File 'lib/rabbit/canvas.rb', line 129 def migemo_dictionary_name @migemo_dictionary_name end |
#migemo_dictionary_search_path ⇒ Object
Returns the value of attribute migemo_dictionary_search_path.
129 130 131 |
# File 'lib/rabbit/canvas.rb', line 129 def migemo_dictionary_search_path @migemo_dictionary_search_path end |
#output_html ⇒ Object
Returns the value of attribute output_html.
127 128 129 |
# File 'lib/rabbit/canvas.rb', line 127 def output_html @output_html end |
#output_index_html ⇒ Object
Returns the value of attribute output_index_html.
127 128 129 |
# File 'lib/rabbit/canvas.rb', line 127 def output_index_html @output_index_html end |
#renderer ⇒ Object (readonly)
Returns the value of attribute renderer.
120 121 122 |
# File 'lib/rabbit/canvas.rb', line 120 def renderer @renderer end |
#rss_base_uri ⇒ Object
Returns the value of attribute rss_base_uri.
126 127 128 |
# File 'lib/rabbit/canvas.rb', line 126 def rss_base_uri @rss_base_uri end |
#saved_image_base_name ⇒ Object
413 414 415 416 417 418 419 420 421 |
# File 'lib/rabbit/canvas.rb', line 413 def saved_image_base_name if @saved_image_base_name base_name = GLib.filename_to_utf8(@saved_image_base_name) else base_name = title.dup end base_name << "-index" if index_mode? base_name end |
#saved_image_type ⇒ Object
Returns the value of attribute saved_image_type.
126 127 128 |
# File 'lib/rabbit/canvas.rb', line 126 def saved_image_type @saved_image_type end |
#source_filename ⇒ Object
Returns the value of attribute source_filename.
128 129 130 |
# File 'lib/rabbit/canvas.rb', line 128 def source_filename @source_filename end |
#use_gl=(value) ⇒ Object (writeonly)
Sets the attribute use_gl
124 125 126 |
# File 'lib/rabbit/canvas.rb', line 124 def use_gl=(value) @use_gl = value end |
Instance Method Details
#<<(slide) ⇒ Object
299 300 301 302 |
# File 'lib/rabbit/canvas.rb', line 299 def <<() .index = .size << end |
#action(name) ⇒ Object
598 599 600 601 602 603 604 605 606 |
# File 'lib/rabbit/canvas.rb', line 598 def action(name) act = @actions.get_action(name) if act act else logger.warn(_("Unknown action: %s") % name) false end end |
#activate(name, &block) ⇒ Object
588 589 590 591 592 593 594 595 596 |
# File 'lib/rabbit/canvas.rb', line 588 def activate(name, &block) act = action(name) if act and act.sensitive? act.activate(&block) true else false end end |
#append_comment(comment) ⇒ Object
571 572 573 574 575 576 577 578 579 580 581 582 |
# File 'lib/rabbit/canvas.rb', line 571 def append_comment(comment) @comments << comment @comments.shift if @comments.size > @max_n_comments @on_comment_callbacks.each do |name, callback| begin callback.call(comment) rescue logger.error($!) end end true end |
#apply_theme(name = nil, &block) ⇒ Object
304 305 306 |
# File 'lib/rabbit/canvas.rb', line 304 def apply_theme(name=nil, &block) _apply_theme(name, Object.new.__id__, &block) end |
#applying? ⇒ Boolean
168 169 170 |
# File 'lib/rabbit/canvas.rb', line 168 def not @apply_theme_request_queue.empty? end |
#attach_to(frame, window, container = nil, &block) ⇒ Object
185 186 187 188 |
# File 'lib/rabbit/canvas.rb', line 185 def attach_to(frame, window, container=nil, &block) @frame = frame if frame @renderer.attach_to(window, container, &block) if window end |
#cache_all_slides ⇒ Object
531 532 533 534 535 |
# File 'lib/rabbit/canvas.rb', line 531 def process do @renderer. end end |
#change_current_index(new_index) ⇒ Object
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 |
# File 'lib/rabbit/canvas.rb', line 271 def change_current_index(new_index) mode = @index_mode if mode index = @index_current_index @index_current_index = new_index else index = @current_index @current_index = new_index end if 0 <= current_index and current_index < yield end ensure if mode @index_current_index = index else @current_index = index end end |
#current_index ⇒ Object
263 264 265 266 267 268 269 |
# File 'lib/rabbit/canvas.rb', line 263 def current_index if @index_mode @index_current_index else @current_index end end |
#current_slide ⇒ Object
253 254 255 256 257 258 259 260 261 |
# File 'lib/rabbit/canvas.rb', line 253 def = [current_index] if else move_to_first .first end end |
#delete_on_comment_proc_by_name(name) ⇒ Object
565 566 567 568 569 |
# File 'lib/rabbit/canvas.rb', line 565 def delete_on_comment_proc_by_name(name) @on_comment_callbacks.reject! do |callback_name, callback| callback_name == name end end |
#detach ⇒ Object
190 191 192 193 |
# File 'lib/rabbit/canvas.rb', line 190 def detach @frame = NullFrame.new @renderer.detach end |
#each(&block) ⇒ Object
295 296 297 |
# File 'lib/rabbit/canvas.rb', line 295 def each(&block) .each(&block) end |
#find_slide(pattern) ⇒ Object
230 231 232 |
# File 'lib/rabbit/canvas.rb', line 230 def (pattern) .find {|| .match?(pattern)} end |
#first_slide? ⇒ Boolean
507 508 509 |
# File 'lib/rabbit/canvas.rb', line 507 def current_index.zero? end |
#font_resolution ⇒ Object
635 636 637 |
# File 'lib/rabbit/canvas.rb', line 635 def font_resolution INTERNAL_DPI * @font_resolution_ratio end |
#front(public_level = nil) ⇒ Object
181 182 183 |
# File 'lib/rabbit/canvas.rb', line 181 def front(public_level=nil) Front.new(self, public_level) end |
#full_path(path) ⇒ Object
367 368 369 |
# File 'lib/rabbit/canvas.rb', line 367 def full_path(path) @source and @source.full_path(path) end |
#fullscreened ⇒ Object
401 402 403 |
# File 'lib/rabbit/canvas.rb', line 401 def fullscreened @renderer.post_fullscreen end |
#have_next? ⇒ Boolean
527 528 529 |
# File 'lib/rabbit/canvas.rb', line 527 def have_next? or ( and !.last?) end |
#have_next_slide? ⇒ Boolean
523 524 525 |
# File 'lib/rabbit/canvas.rb', line 523 def - 1 > current_index end |
#have_previous? ⇒ Boolean
519 520 521 |
# File 'lib/rabbit/canvas.rb', line 519 def have_previous? or ( and !.first?) end |
#have_previous_slide? ⇒ Boolean
515 516 517 |
# File 'lib/rabbit/canvas.rb', line 515 def 0 < current_index end |
#iconified ⇒ Object
409 410 411 |
# File 'lib/rabbit/canvas.rb', line 409 def iconified @renderer.post_iconify end |
#index_mode? ⇒ Boolean
470 471 472 |
# File 'lib/rabbit/canvas.rb', line 470 def index_mode? @index_mode end |
#last_slide? ⇒ Boolean
511 512 513 |
# File 'lib/rabbit/canvas.rb', line 511 def .zero? or current_index == ( - 1) end |
#merge_theme(name) ⇒ Object
312 313 314 315 316 317 318 |
# File 'lib/rabbit/canvas.rb', line 312 def merge_theme(name) unless @slides.empty? manager = Theme::Manager.new(self) manager.apply(name) @renderer.post_apply_theme end end |
#move_to_first ⇒ Object
462 463 464 |
# File 'lib/rabbit/canvas.rb', line 462 def move_to_first move_to_if_can(0) end |
#move_to_if_can(index) ⇒ Object
423 424 425 426 427 428 |
# File 'lib/rabbit/canvas.rb', line 423 def move_to_if_can(index) if index and 0 <= index and index < move_to(index) end current_index end |
#move_to_last ⇒ Object
466 467 468 |
# File 'lib/rabbit/canvas.rb', line 466 def move_to_last move_to( - 1) end |
#move_to_next_if_can ⇒ Object
430 431 432 433 434 435 436 437 438 439 440 |
# File 'lib/rabbit/canvas.rb', line 430 def move_to_next_if_can = if and !.last? old_index = .drawing_index .move_to_next Action.update_status(self) @renderer.(old_index, .drawing_index) else end end |
#move_to_next_slide_if_can ⇒ Object
442 443 444 |
# File 'lib/rabbit/canvas.rb', line 442 def move_to_if_can(current_index + 1) end |
#move_to_previous_if_can ⇒ Object
446 447 448 449 450 451 452 453 454 455 456 |
# File 'lib/rabbit/canvas.rb', line 446 def move_to_previous_if_can = if and !.first? old_index = .drawing_index .move_to_previous Action.update_status(self) @renderer.(old_index, .drawing_index) else end end |
#move_to_previous_slide_if_can ⇒ Object
458 459 460 |
# File 'lib/rabbit/canvas.rb', line 458 def move_to_if_can(current_index - 1) end |
#need_reload_source? ⇒ Boolean
363 364 365 |
# File 'lib/rabbit/canvas.rb', line 363 def need_reload_source? !@processing and @source and @source.modified? end |
#next_slide ⇒ Object
291 292 293 |
# File 'lib/rabbit/canvas.rb', line 291 def [current_index + 1] end |
#on_comment(name, &callback) ⇒ Object
561 562 563 |
# File 'lib/rabbit/canvas.rb', line 561 def on_comment(name, &callback) @on_comment_callbacks << [name, callback] end |
#parse(source = nil, callback = nil, &block) ⇒ Object
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 |
# File 'lib/rabbit/canvas.rb', line 324 def parse(source=nil, callback=nil, &block) id = Object.new.__id__ @parse_request_queue.push(id) @source = source || @source begin index = current_index keep_index do @renderer.pre_parse clear Parser.parse(self, @source) set_current_index(index) reload_theme do if @parse_request_queue.last != id raise ParseFinish end callback.call if callback end @renderer.post_parse index = current_index end set_current_index(index) rescue ParseFinish rescue ParseError, UnsupportedFormatError if block_given? yield($!) else logger.warn($!.) end ensure @parse_request_queue.delete_if {|x| x == id} end end |
#parsing? ⇒ Boolean
164 165 166 |
# File 'lib/rabbit/canvas.rb', line 164 def parsing? not @parse_request_queue.empty? end |
#print(&block) ⇒ Object
395 396 397 398 399 |
# File 'lib/rabbit/canvas.rb', line 395 def print(&block) process do @renderer.print(&block) end end |
#processing? ⇒ Boolean
537 538 539 |
# File 'lib/rabbit/canvas.rb', line 537 def processing? @processing end |
#quit ⇒ Object
176 177 178 179 |
# File 'lib/rabbit/canvas.rb', line 176 def quit @quitted = true @frame.quit end |
#quitted? ⇒ Boolean
160 161 162 |
# File 'lib/rabbit/canvas.rb', line 160 def quitted? @quitted end |
#reload_source(callback = nil, &block) ⇒ Object
357 358 359 360 361 |
# File 'lib/rabbit/canvas.rb', line 357 def reload_source(callback=nil, &block) if need_reload_source? parse(nil, callback, &block) end end |
#reload_theme(&block) ⇒ Object
320 321 322 |
# File 'lib/rabbit/canvas.rb', line 320 def reload_theme(&block) apply_theme(@theme_name, &block) end |
#reset_timer ⇒ Object
631 632 633 |
# File 'lib/rabbit/canvas.rb', line 631 def reset_timer @limit_time = nil end |
#rest_time ⇒ Object
627 628 629 |
# File 'lib/rabbit/canvas.rb', line 627 def rest_time @limit_time ? @limit_time - Time.now : nil end |
#save_as_image ⇒ Object
381 382 383 384 385 386 387 388 389 390 391 392 393 |
# File 'lib/rabbit/canvas.rb', line 381 def save_as_image process do generator = HTML::Generator.new(self, saved_image_base_name, @saved_image_type, @output_html, @output_index_html, @rss_base_uri) generator.pdf_filename = filename if /\.pdf\z/i =~ filename.to_s generator.source_filename = @source_filename generator.save end end |
#slide_index(pattern) ⇒ Object
234 235 236 237 238 239 |
# File 'lib/rabbit/canvas.rb', line 234 def (pattern) .each_with_index do |, i| return i if .match?(pattern) end nil end |
#slide_indexes(pattern) ⇒ Object
241 242 243 244 245 246 247 |
# File 'lib/rabbit/canvas.rb', line 241 def (pattern) indexes = [] .each_with_index do |, i| indexes << i if .match?(pattern) end indexes end |
#slide_size ⇒ Object
249 250 251 |
# File 'lib/rabbit/canvas.rb', line 249 def .size end |
#slide_text(index = current_index) ⇒ Object
215 216 217 218 219 220 |
# File 'lib/rabbit/canvas.rb', line 215 def (index=current_index) return "" if .empty? = [index] return "" if .nil? .text.strip end |
#slide_title(index = current_index) ⇒ Object
204 205 206 207 208 209 210 211 212 213 |
# File 'lib/rabbit/canvas.rb', line 204 def (index=current_index) return "" if .empty? = [index] return title if .nil? if .is_a?(Element::TitleSlide) .title else "#{title}: #{.title}" end end |
#slides ⇒ Object
222 223 224 225 226 227 228 |
# File 'lib/rabbit/canvas.rb', line 222 def if @index_mode @index_slides else @slides end end |
#source ⇒ Object
503 504 505 |
# File 'lib/rabbit/canvas.rb', line 503 def source @source.read end |
#source_force_modified(force_modified) {|@source| ... } ⇒ Object
496 497 498 499 500 501 |
# File 'lib/rabbit/canvas.rb', line 496 def source_force_modified(force_modified) prev = @source.force_modified @source.force_modified = force_modified yield @source @source.force_modified = prev end |
#start_auto_redraw_timer(interval) ⇒ Object
541 542 543 544 545 546 547 548 549 550 551 552 |
# File 'lib/rabbit/canvas.rb', line 541 def start_auto_redraw_timer(interval) stop_auto_redraw_timer timer = GLib::Timeout.add(interval * 1000) do if quitted? false else activate("Redraw") true end end @auto_redraw_timer = timer end |
#start_timer(limit) ⇒ Object
623 624 625 |
# File 'lib/rabbit/canvas.rb', line 623 def start_timer(limit) @limit_time = Time.now + limit end |
#stop_auto_redraw_timer ⇒ Object
554 555 556 557 558 559 |
# File 'lib/rabbit/canvas.rb', line 554 def stop_auto_redraw_timer if @auto_redraw_timer GLib::Source.remove(@auto_redraw_timer) @auto_redraw_timer = nil end end |
#theme_name ⇒ Object
308 309 310 |
# File 'lib/rabbit/canvas.rb', line 308 def theme_name @theme_name || default_theme || "default" end |
#title ⇒ Object
195 196 197 198 199 200 201 202 |
# File 'lib/rabbit/canvas.rb', line 195 def title ts = if ts ts.title else "Rabbit" end end |
#title_slide ⇒ Object
584 585 586 |
# File 'lib/rabbit/canvas.rb', line 584 def @slides.find{|x| x.is_a?(Element::TitleSlide)} end |
#tmp_dir_name ⇒ Object
371 372 373 |
# File 'lib/rabbit/canvas.rb', line 371 def tmp_dir_name @source and @source.tmp_dir_name end |
#to_pixbuf(i) ⇒ Object
375 376 377 378 379 |
# File 'lib/rabbit/canvas.rb', line 375 def to_pixbuf(i) move_to_if_can(i) .flush @renderer.to_pixbuf() end |
#toggle_index_mode ⇒ Object
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 |
# File 'lib/rabbit/canvas.rb', line 474 def toggle_index_mode @renderer.pre_toggle_index_mode process do if @index_mode @index_mode = false @renderer.index_mode_off else @index_mode = true @renderer.index_mode_on end modified end @renderer.post_toggle_index_mode end |
#unfullscreened ⇒ Object
405 406 407 |
# File 'lib/rabbit/canvas.rb', line 405 def unfullscreened @renderer.post_unfullscreen end |
#update_index_slides ⇒ Object
490 491 492 493 494 |
# File 'lib/rabbit/canvas.rb', line 490 def if @index_slides.empty? @index_slides = Element::IndexSlide.(self) end end |
#use_gl? ⇒ Boolean
172 173 174 |
# File 'lib/rabbit/canvas.rb', line 172 def use_gl? @use_gl end |
#with_index_mode(new_value) ⇒ Object
608 609 610 611 612 613 614 615 |
# File 'lib/rabbit/canvas.rb', line 608 def with_index_mode(new_value) current_index_mode = @index_mode @index_mode = new_value if @index_mode yield ensure @index_mode = current_index_mode end |