Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/composant_selection.py
blob: ec5a0409a82da29f1f90abca5f12c6c9354b5c81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python
# -*- coding: utf-8 -*-

#------------------------------------------------------------------------------

# Copyright 2008-2009 : François Sénéquier
# Email : francois.senequier@netcourrier.com

# This file is part of 'Theorie'.
#
# 'Theorie' is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# 'Theorie' is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with 'Theorie'.  If not, see <http://www.gnu.org/licenses/>.

#------------------------------------------------------------------------------

from commun import *
from observable import *

#------------------------------------------------------------------------------

class ComposantSelection(Observable):
	
	def getNom(self):
		return self.nom
	
	def getContainer(self):
		return self.container

	def update(self, prm):
		tracer("ComposantSelection", "update")
		self.notifyObservers(prm)

	def __gerer(self, widget, page, page_num, user_param):
		tracer("ComposantSelection", "__gerer")
		# 'widget' est l'onglet (notebook)
		# 'page_num' est l'indice de la page selectionnee dans l'onglet
		obj = self.listeCMP[page_num]
		prm = obj.getNotes()
		self.notifyObservers(prm)

	def __init__(self, nom, modules, orient):
		tracer("ComposantSelection", "__init__")
		Observable.__init__(self)
		self.nom = nom
		self.listeNOM = []
		self.listeCNT = []
		self.listeCMP = modules
		for comp in modules:
			self.listeNOM.append(comp.getNom())
			self.listeCNT.append(comp.getContainer())
			comp.addObserver(self)
		self.notebook = definirNotebook(orient, self.listeNOM, self.listeCNT, 0)
		self.container = definirVBOX([self.notebook], True, True)
		self.hNB = self.notebook.connect("switch-page" , self.__gerer, None)