GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: Talk is a small, Clutter-based presentation application
Clone URL: git://github.com/ebassi/talk.git
Add footer and header to the first and last slides of the FOSDEM talk
Emmanuele Bassi (author)
Wed Feb 20 08:58:14 -0800 2008
commit  e50e6db82e94d92c4127a2e0137a8192daf34eba
tree    2debc4b38bf2ef3991b8778538c64ed19b3d348d
parent  243b3819e1bcd074d825bf7b976ff52319694435
...
23
24
25
26
 
 
 
27
28
29
...
225
226
227
228
 
 
 
 
229
230
231
...
23
24
25
 
26
27
28
29
30
31
...
227
228
229
 
230
231
232
233
234
235
236
0
@@ -23,7 +23,9 @@ class FosdemTalk:
0
         self._collection = SlideCollection()
0
         self._model = gtk.ListStore(gobject.TYPE_STRING)
0
 
0
- slide = TitleSlide(title=FosdemTalk.TITLE, subtitle=FosdemTalk.SUBTITLE)
0
+ slide = TitleSlide(title=FosdemTalk.TITLE,
0
+ subtitle=FosdemTalk.SUBTITLE,
0
+ footer=FosdemTalk.FOOTER)
0
         self._collection.set_title_slide(slide)
0
         self._model.set(self._model.append(), 0, 'Title')
0
 
0
@@ -225,7 +227,10 @@ class FosdemTalk:
0
         self._collection.append_slide(slide)
0
         self._model.set(self._model.append(), 0, 'q-n-a')
0
 
0
- slide = TextSlide(font='Sans 48px', text='Thank you for listening')
0
+ slide = TextSlide(font='Sans 48px',
0
+ text='Thank you for listening',
0
+ header=FosdemTalk.HEADER,
0
+ footer=FosdemTalk.FOOTER)
0
         self._collection.append_slide(slide)
0
         self._model.set(self._model.append(), 0, 'the end')
0
 

Comments

    No one has commented yet.