[opencoffee-devel] Fwd: Mini Parche Workstations

[ Thread Index | Date Index | More lists.tuxfamily.org/opencoffee-devel Archives ]


hola compañeros.

Aquí va otro mini parche. En este se corrige el comportamiento del tab
de las workstations. Ahora puede albergar hasta 3 workstation por
fila. También se agregaron comentarios.

Se aplica con:

patch -p5 < patch.diff

Copiando el archivo en el trunk.

Saludos.
Index: /home/arcangel/workspace/opencoffee/opencoffee-server/core/workstations/workstationsTab.py
===================================================================
--- /home/arcangel/workspace/opencoffee/opencoffee-server/core/workstations/workstationsTab.py	(revision 330)
+++ /home/arcangel/workspace/opencoffee/opencoffee-server/core/workstations/workstationsTab.py	(working copy)
@@ -31,12 +31,13 @@
 class  WorkstationsTab(QtGui.QWidget):
 	def __init__(self,parent = None):
 		QWidget.__init__(self, parent)
-		
+
+		#Se crea el gridLayout donde se van a contener a las
+		#workstations y se asigna como widget principal tel tab.
 		self.gbox= QGridLayout()
 		self.setLayout(self.gbox)
 		
-		self.spacer = QSpacerItem(3, 3, QtGui.QSizePolicy.Minimum)
-		
+		#creacion de las workstations predeterminadas.
 		self.w1 = WorkstationTemplate()
 		self.w2 = WorkstationTemplate()
 		self.w3 = WorkstationTemplate()
@@ -44,12 +45,14 @@
 		self.w5 = WorkstationTemplate()
 		self.w6 = WorkstationTemplate()
 		
+		#Se agregan las workstations al gridLayout. Se utilizan
+		#las coordenadas X,Y de donde se quieren agregar.
 		self.gbox.addWidget(self.w1,0,0)
 		self.gbox.addWidget(self.w2,0,1)
-		self.gbox.addWidget(self.w3,2,0)
-		self.gbox.addWidget(self.w4,2,1)
-		self.gbox.addWidget(self.w5,3,0)
-		self.gbox.addWidget(self.w6,3,1)
+		self.gbox.addWidget(self.w3,0,2)
+		self.gbox.addWidget(self.w4,1,0)
+		self.gbox.addWidget(self.w5,1,1)
+		self.gbox.addWidget(self.w6,1,2)
 		
 
 ## Se define la clase de ui_workstations.py


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/