Implementing the "Open Project" feature, adding
[cascardo/movie.git] / gzv.py
1 # gzv.py - an user interface to generate-zooming-video
2 #
3 # Copyright (C) 2008  Lincoln de Sousa <lincoln@minaslivre.org>
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 import os
16 import gtk
17 import gtk.glade
18 import math
19 import cairo
20 from ConfigParser import ConfigParser
21
22 _ = lambda x:x
23
24 class Ball(object):
25     DEFAULT_WIDTH = 10
26
27     def __init__(self, x, y, r, name='', position=0):
28         self.position = position
29         self.x = x
30         self.y = y
31         self.radios = r
32         self.name = name
33
34 class BallManager(list):
35     def __init__(self, *args, **kwargs):
36         super(BallManager, self).__init__(*args, **kwargs)
37
38     def save_to_file(self, path):
39         target = open(path, 'w')
40         for i in self:
41             target.write('%d,%d %d %s\n' % (i.x, i.y, i.radios, i.name))
42         target.close()
43
44 class GladeLoader(object):
45     def __init__(self, fname, root=''):
46         self.ui = gtk.glade.XML(fname, root)
47         self.ui.signal_autoconnect(self)
48
49     def get_widget(self, wname):
50         return self.ui.get_widget(wname)
51
52     # little shortcut
53     wid = get_widget
54
55     # glade callbacks
56
57     def gtk_widget_show(self, widget, *args):
58         widget.show()
59         return True
60
61     def gtk_widget_hide(self, widget, *args):
62         widget.hide()
63         return True
64
65     def gtk_main_quit(self, *args):
66         gtk.main_quit()
67
68     def gtk_main(self, *args):
69         gtk.main()
70
71 class Project(object):
72     def __init__(self, image, width, height):
73         self.image = image
74         self.width = width
75         self.height = height
76         self.focus_points_file = None
77
78     def save_to_file(self, path):
79         bn = os.path.basename(path)
80         name = os.path.splitext(bn)[0]
81
82         cp = ConfigParser()
83         cp.set('Project', 'image', self.image)
84         cp.set('Project', 'width', self.width)
85         cp.set('Project', 'height', self.height)
86         
87         cp.write(open(path, 'w'))
88
89     @staticmethod
90     def parse_file(path):
91         cp = ConfigParser()
92         cp.read(path)
93
94         image = cp.get('Project', 'image')
95         width = cp.getint('Project', 'width')
96         height = cp.getint('Project', 'height')
97         x = cp.getint('Project', 'height')
98
99         proj = Project(image, width, height)
100         proj.focus_points_file = cp.get('Project', 'focus_points')
101
102         return proj
103
104 class NewProject(GladeLoader):
105     def __init__(self, parent=None):
106         super(NewProject, self).__init__('gzv.glade', 'new-project')
107         self.dialog = self.wid('new-project')
108         if parent:
109             self.dialog.set_transient_for(parent)
110
111     def get_project(self):
112         fname = self.wid('image').get_filename()
113         width = self.wid('width').get_text()
114         height = self.wid('height').get_text()
115         return Project(fname, width, height)
116
117     def destroy(self):
118         self.dialog.destroy()
119
120 class Gzv(GladeLoader):
121     def __init__(self):
122         super(Gzv, self).__init__('gzv.glade', 'main-window')
123         self.window = self.wid('main-window')
124         self.window.connect('delete-event', lambda *x: gtk.main_quit())
125
126         self.evtbox = self.wid('eventbox')
127         self.evtbox.connect('button-press-event', self.button_press)
128         self.evtbox.connect('button-release-event', self.button_release)
129         self.evtbox.connect('motion-notify-event', self.motion_notify)
130
131         self.model = gtk.ListStore(int, str)
132         self.treeview = self.wid('treeview')
133         self.treeview.set_model(self.model)
134
135         self.draw = self.wid('draw')
136         self.draw.connect('expose-event', self.expose_draw)
137
138         # Starting with an empty project with no image loaded
139         self.project = None
140         self.image = None
141
142         # This attr may be overriten, if so, call the method (load_balls_to_treeview)
143         self.balls = BallManager()
144
145         self.load_balls_to_treeview()
146         self.setup_treeview()
147
148         # drawing stuff
149         self.ball_width = Ball.DEFAULT_WIDTH
150         self.selecting = False
151         self.start_x = -1
152         self.start_y = -1
153
154     def setup_treeview(self):
155         self.model.connect('rows-reordered', self.on_rows_reordered)
156
157         renderer = gtk.CellRendererText()
158         column = gtk.TreeViewColumn(_('Position'), renderer, text=0)
159         self.treeview.append_column(column)
160
161         renderer = gtk.CellRendererText()
162         renderer.connect('edited', self.on_cell_edited)
163         renderer.set_property('editable', True)
164         column = gtk.TreeViewColumn(_('Name'), renderer, text=1)
165         self.treeview.append_column(column)
166
167     def on_rows_reordered(self, *args):
168         print 
169
170     def on_cell_edited(self, *args):
171         print args
172
173     def new_project(self, button):
174         proj = NewProject(self.window)
175
176         # This '1' was defined in the glade file
177         if proj.dialog.run() == 1:
178             self.load_project(proj.get_project())
179         proj.destroy()
180
181     def open_project(self, *args):
182         fc = gtk.FileChooserDialog(_('Choose a gzv project'), self.window,
183                                    buttons=(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,
184                                             gtk.STOCK_OK, gtk.RESPONSE_OK))
185         if fc.run() == gtk.RESPONSE_OK:
186             proj_file = fc.get_filename()
187             self.load_project(Project.parse_file(proj_file))
188         fc.destroy()
189
190     def load_project(self, project):
191         self.balls = self.load_balls_from_file(project.focus_points_file)
192         self.image = project.image
193         self.load_balls_to_treeview()
194
195     def load_balls_to_treeview(self):
196         model = self.treeview.get_model()
197         for i in self.balls:
198             model.append([i.position, i.name])
199
200     def load_balls_from_file(self, fname):
201         balls = BallManager()
202         if not os.path.exists(fname):
203             return balls
204
205         for index, line in enumerate(file(fname)):
206             if not line:
207                 continue
208             pos, radios, name = line.split()
209             x, y = pos.split(',')
210             balls.append(Ball(int(x), int(y), int(radios), name, index))
211         return balls
212
213     def expose_draw(self, draw, event):
214         if not self.image:
215             return
216
217         # loading the picture image and getting some useful
218         # information to draw it in the widget's background
219         img = gtk.gdk.pixbuf_new_from_file(self.image)
220         pixels = img.get_pixels()
221         rowstride = img.get_rowstride()
222         width = img.get_width()
223         height = img.get_height()
224         gc = draw.style.black_gc
225
226         # sets the correct size of the eventbox, to show the scrollbar
227         # when needed.
228         self.evtbox.set_size_request(width, height)
229
230         # drawing the picture in the background of the drawing area,
231         # this is really important.
232         draw.window.draw_rgb_image(gc, 0, 0, width, height,
233                                    'normal', pixels, rowstride,
234                                    0, 0)
235
236         # this call makes the ball being drown be shown correctly.
237         self.draw_current_ball()
238
239         # drawing other balls stored in the self.balls list.
240         ctx = draw.window.cairo_create()
241         ctx.fill()
242
243         ctx.set_line_width(10.0)
244         ctx.set_source_rgba (0.5, 0.0, 0.0, 0.4)
245
246         for i in self.balls:
247             ctx.arc(i.x, i.y, i.radios, 0, 64*math.pi)
248
249         ctx.fill()
250         ctx.stroke()
251
252     def draw_current_ball(self):
253         if self.start_x < 0:
254             return
255         ctx = self.draw.window.cairo_create()
256         ctx.arc(self.start_x, self.start_y, self.ball_width, 0, 64*math.pi)
257         ctx.set_source_rgba (0.5, 0.0, 0.0, 0.4)
258         ctx.fill()
259
260     def button_press(self, widget, event):
261         if event.button == 1:
262             self.selecting = True
263             self.start_x = event.x
264             self.start_y = event.y
265             self.last_x = event.x
266
267     def button_release(self, widget, event):
268         if event.button == 1:
269             self.selecting = False
270             self.finish_drawing()
271
272     def motion_notify(self, widget, event):
273         self.draw.queue_draw()
274
275         if event.x > self.last_x:
276             self.ball_width += 2
277         else:
278             self.ball_width -= 2
279
280         self.last_x = event.x
281
282     def finish_drawing(self):
283         self.draw_current_ball()
284         self.ball_width = Ball.DEFAULT_WIDTH
285
286 if __name__ == '__main__':
287     Gzv().window.show_all()
288     gtk.main()