~timo-jyrinki/ubuntu/trusty/pitivi/backport_utopic_fixes

« back to all changes in this revision

Viewing changes to pitivi/ui/view.py

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2014-04-05 15:28:16 UTC
  • mfrom: (6.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20140405152816-6lijoax4cngiz5j5
Tags: 0.93-3
* debian/control:
  + Depend on python-gi (>= 3.10), older versions do not work
    with pitivi (Closes: #732813).
  + Add missing dependency on gir1.2-clutter-gst-2.0 (Closes: #743692).
  + Add suggests on gir1.2-notify-0.7 and gir1.2-gnomedesktop-3.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from pitivi.receiver import receiver, handler
2
 
import controller
3
 
 
4
 
 
5
 
class View(object):
6
 
 
7
 
    Controller = controller.Controller
8
 
 
9
 
    def __init__(self):
10
 
        object.__init__(self)
11
 
        self._controller = self.Controller(view=self)
12
 
 
13
 
## public interface
14
 
 
15
 
    def focus(self):
16
 
        pass
17
 
 
18
 
    def select(self):
19
 
        pass
20
 
 
21
 
    def activate(self):
22
 
        pass
23
 
 
24
 
    def normal(self):
25
 
        pass