home *** CD-ROM | disk | FTP | other *** search
- #
- # This file is part of OpenVIP (http://openvip.sourceforge.net)
- #
- # Copyright (C) 2002-2003
- # Michal Dvorak, Jiri Sedlar, Antonin Slavik, Vaclav Slavik, Jozef Smizansky
- #
- # This program is licensed under GNU General Public License version 2;
- # see file COPYING in the top level directory for details.
- #
- # $Id: ATransitionSettingsDialog.py,v 1.2 2003/06/03 21:01:13 vaclavslavik Exp $
- #
-
- from wxPython.wx import *
- import globals, logging, render, model, worker, openvip, copy
- from SettingsDialog import SettingsDialog, PREVIEW_SIZE
-
- class ATransitionSettingsDialog(SettingsDialog):
- """Settings dialog for audio transitions."""
-
- def __init__(self, *args, **kwds):
- SettingsDialog.__init__(self, *args, **kwds)
- self.SetPreview(False)
-
- def SetObject(self, model, object):
- self.model = model
- self.object = object
-
- def GetClass(self):
- return 'ATransition'
-
- def GetTitle(self):
- return 'Audio Transition Settings'
-
-