Package elisa :: Package plugins :: Package bad :: Package dvd :: Module dvd_player_model
[hide private]
[frames] | no frames]

Source Code for Module elisa.plugins.bad.dvd.dvd_player_model

 1  # Elisa - Home multimedia server 
 2  # Copyright (C) 2006-2008 Fluendo Embedded S.L. (www.fluendo.com). 
 3  # All rights reserved. 
 4  # 
 5  # This file is available under one of two license agreements. 
 6  # 
 7  # This file is licensed under the GPL version 3. 
 8  # See "LICENSE.GPL" in the root of this distribution including a special 
 9  # exception to use Elisa with Fluendo's plugins. 
10  # 
11  # The GPL part of Elisa is also available under a commercial licensing 
12  # agreement from Fluendo. 
13  # See "LICENSE.Elisa" in the root directory of this distribution package 
14  # for details on that license. 
15   
16   
17  __maintainer__ = 'Lionel Martin <lionel@fluendo.com>' 
18   
19   
20  from elisa.core import plugin_registry 
21  PlayerModelClass = plugin_registry.get_component_class('base:player_model') 
22   
23   
24   
25 -class DvdPlayerModel(PlayerModelClass):
26 27 #PUT EventAction here 28 last_navigation_action = None 29 30 menu_requested = False 31 in_menu = False
32