/usr/share/gcompris/python/Timeline.py is in gcompris-data 13.11-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # gcompris - anim : timeline management
#
# Copyright (C) 2008 Bruno Coudoin
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.
import gobject
import goocanvas
import gcompris
import gcompris.utils
import gcompris.skin
import gcompris.bonus
import gcompris.sound
import gtk
import gtk.gdk
# This is the timeline of the animation activity.
class Timeline:
def __init__(self, anim):
self.anim = anim
self.rootitem = goocanvas.Group(parent = anim.rootitem)
self.drawing_area = anim.drawing_area
self.running = False
self.zoom = 1
self.selected = None
self.timelinelist = []
self.current_time = 0
self.lastmark = -1
def hide(self):
self.rootitem.props.visibility = goocanvas.ITEM_INVISIBLE
def show(self):
self.rootitem.props.visibility = goocanvas.ITEM_VISIBLE
# Display the timeline selector
def draw(self):
self.selected_color = 0x3030AAFFL
self.default_color = 0xFFFFFFFFL
self.default_stroke = 0x101080FFL
self.marked_stroke = 0xC01010FFL
# Timeline coord
x1 = self.drawing_area[0]
x2 = self.drawing_area[2]
y = self.drawing_area[3] + 5
# Our timeline repesentation respects the drawing area ratio
# If we could display a thumbnail of the current frame in each
# time zone, and we could scroll the time zone.
#self.zoom = (( self.drawing_area[2] - self.drawing_area[0] ) /
# ( self.drawing_area[3] - self.drawing_area[1] ))
# w = h * self.zoom
w = 14
h = 27
i = x1
t = 0
while i + w < x2:
item = goocanvas.Rect(
parent = self.rootitem,
x = i,
y = y,
width = w,
height = h,
fill_color_rgba = self.default_color,
stroke_color_rgba = self.default_stroke,
line_width=1.0,
radius_x=3.0,
radius_y=3.0)
item.set_data("time", t)
if not self.selected:
self.selected = item
self.timelinelist.append(item)
item.connect("button_press_event",
self.timeline_item_event)
i += w + 1
t += 1
# Frame Number
self.frame_counter = \
goocanvas.Text(
parent = self.anim.rootitem,
text = 0,
x = 43,
y = 460,
font = gcompris.skin.get_font("gcompris/board/medium"),
fill_color = "black")
# Select the first item in the timeline
self.current_time = 0
self.select_it(self.selected)
self.lastmark_it(self.timelinelist[t-1])
# Return the current selected time
def get_time(self):
return self.current_time
def set_time(self, time):
self.select_it(self.timelinelist[time])
def next(self):
self.anim.doc.save_zorder()
self.current_time += 1
if self.current_time >= min(len(self.timelinelist),
self.lastmark + 1):
self.current_time = 0
self.select_it(self.timelinelist[self.current_time])
def previous(self):
self.anim.doc.save_zorder()
self.current_time -= 1
if self.current_time < 0:
self.current_time = min(len(self.timelinelist) - 1,
self.lastmark)
self.select_it(self.timelinelist[self.current_time])
def select_it(self, item):
# Disable previous selection
if self.selected:
self.selected.set_properties(fill_color_rgba = self.default_color)
item.set_properties(fill_color_rgba = self.selected_color)
self.selected = item
self.current_time = item.get_data("time")
# Let anim knows there is a new time set
self.anim.doc.refresh(self.get_time())
self.frame_counter.set_properties(text = self.current_time)
def lastmark_it(self, item):
# Unmark previous mark
if self.lastmark >= 0:
marked_item = self.timelinelist[self.lastmark]
marked_item.set_properties(stroke_color_rgba = self.default_stroke,
line_width = 1)
item.set_properties(stroke_color_rgba = self.marked_stroke,
line_width = 3.5)
self.lastmark = item.get_data("time")
def get_lastmark(self):
return self.lastmark
def set_lastmark(self, lastmark):
self.lastmark_it(self.timelinelist[lastmark])
#
def timeline_item_event(self, item, target, event):
if (event.type == gtk.gdk.BUTTON_PRESS
and event.button == 1):
self.select_it(item)
else:
self.lastmark_it(item)
|