bugfixed for menu disable
[openerp-client.git] / bin / widget / view / interface.py
blob8adcad96a7bf8c7fcee2849365c4ebbe7002117c
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
4 # Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be) All Rights Reserved.
6 # $Id$
8 # WARNING: This program as such is intended to be used by professional
9 # programmers who take the whole responsability of assessing all potential
10 # consequences resulting from its eventual inadequacies and bugs
11 # End users who are looking for a ready-to-use solution with commercial
12 # garantees and support are strongly adviced to contract a Free Software
13 # Service Company
15 # This program is Free Software; you can redistribute it and/or
16 # modify it under the terms of the GNU General Public License
17 # as published by the Free Software Foundation; either version 2
18 # of the License, or (at your option) any later version.
20 # This program is distributed in the hope that it will be useful,
21 # but WITHOUT ANY WARRANTY; without even the implied warranty of
22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 # GNU General Public License for more details.
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 ##############################################################################
31 import service
33 class parser_interface(object):
34 def __init__(self, window=None, parent=None, attrs={}, screen=None):
35 if window is None:
36 window = service.LocalService('gui.main').window
37 self.window = window
38 self.parent = parent
39 self.attrs = attrs
40 self.title = None
41 self.buttons = {}
42 self.screen = screen
44 class parser_view(object):
45 def __init__(self, window, screen, widget, children=None, state_aware_widgets=None, toolbar=None):
46 if window is None:
47 window = service.LocalService('gui.main').window
48 self.window = window
49 self.screen = screen
50 self.widget = widget
51 self.state_aware_widgets = state_aware_widgets or []
53 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: