Example #1
0
 def __init__(self, cal, index, mode, params, sgroupLabel):
     from scal3.ui_gtk.mywidgets.multi_spin.float_num import FloatSpinButton
     from scal3.ui_gtk.mywidgets import MyFontButton, MyColorButton
     gtk.Frame.__init__(self)
     self.cal = cal
     self.index = index
     self.mode = mode
     ####
     module, ok = calTypes[mode]
     if not ok:
         raise RuntimeError("cal type %r not found" % mode)
     ####
     self.set_label(_(module.desc))
     ####
     vbox = gtk.VBox()
     self.add(vbox)
     ###
     hbox = gtk.HBox()
     label = gtk.Label(_("Position") + ": ")
     pack(hbox, label)
     sgroupLabel.add_widget(label)
     spin = FloatSpinButton(-99, 99, 1)
     self.spinX = spin
     pack(hbox, spin)
     pack(hbox, gtk.Label(""), 1, 1)
     spin = FloatSpinButton(-99, 99, 1)
     self.spinY = spin
     pack(hbox, spin)
     pack(hbox, gtk.Label(""), 1, 1)
     pack(vbox, hbox)
     ####
     hbox = gtk.HBox()
     label = gtk.Label(_("Font") + ": ")
     pack(hbox, label)
     sgroupLabel.add_widget(label)
     ##
     fontb = MyFontButton(cal)
     self.fontb = fontb
     ##
     colorb = MyColorButton()
     self.colorb = colorb
     ##
     pack(hbox, colorb)
     pack(hbox, gtk.Label(""), 1, 1)
     pack(hbox, fontb)
     pack(vbox, hbox)
     ####
     self.set(params)
     ####
     self.spinX.connect("changed", self.onChange)
     self.spinY.connect("changed", self.onChange)
     fontb.connect("font-set", self.onChange)
     colorb.connect("color-set", self.onChange)
Example #2
0
 def __init__(self, cal, index, mode, params, sgroupLabel, sgroupFont):
     from scal3.ui_gtk.mywidgets.multi_spin.float_num import FloatSpinButton
     from scal3.ui_gtk.mywidgets import MyFontButton, MyColorButton
     gtk.HBox.__init__(self)
     self.cal = cal
     self.index = index
     self.mode = mode
     ######
     module, ok = calTypes[mode]
     if not ok:
         raise RuntimeError("cal type %r not found" % mode)
     label = gtk.Label(_(module.desc) + "  ")
     label.set_alignment(0, 0.5)
     pack(self, label)
     sgroupLabel.add_widget(label)
     ###
     pack(self, gtk.Label(""), 1, 1)
     pack(self, gtk.Label(_("position")))
     ###
     spin = FloatSpinButton(-999, 999, 1)
     self.spinX = spin
     pack(self, spin)
     ###
     spin = FloatSpinButton(-999, 999, 1)
     self.spinY = spin
     pack(self, spin)
     ####
     pack(self, gtk.Label(""), 1, 1)
     ###
     fontb = MyFontButton(cal)
     self.fontb = fontb
     pack(self, fontb)
     sgroupFont.add_widget(fontb)
     ####
     colorb = MyColorButton()
     self.colorb = colorb
     pack(self, colorb)
     ####
     self.set(params)
     ####
     self.spinX.connect("changed", self.onChange)
     self.spinY.connect("changed", self.onChange)
     fontb.connect("font-set", self.onChange)
     colorb.connect("color-set", self.onChange)
Example #3
0
	def __init__(self, cal, index, mode, params, sgroupLabel, sgroupFont):
		from scal3.ui_gtk.mywidgets.multi_spin.float_num import FloatSpinButton
		from scal3.ui_gtk.mywidgets import MyFontButton, MyColorButton
		gtk.HBox.__init__(self)
		self.cal = cal
		self.index = index
		self.mode = mode
		######
		module, ok = calTypes[mode]
		if not ok:
			raise RuntimeError("cal type %r not found" % mode)
		label = gtk.Label(_(module.desc) + "  ")
		label.set_alignment(0, 0.5)
		pack(self, label)
		sgroupLabel.add_widget(label)
		###
		pack(self, gtk.Label(""), 1, 1)
		pack(self, gtk.Label(_("position")))
		###
		spin = FloatSpinButton(-999, 999, 1)
		self.spinX = spin
		pack(self, spin)
		###
		spin = FloatSpinButton(-999, 999, 1)
		self.spinY = spin
		pack(self, spin)
		####
		pack(self, gtk.Label(""), 1, 1)
		###
		fontb = MyFontButton(cal)
		self.fontb = fontb
		pack(self, fontb)
		sgroupFont.add_widget(fontb)
		####
		colorb = MyColorButton()
		self.colorb = colorb
		pack(self, colorb)
		####
		self.set(params)
		####
		self.spinX.connect("changed", self.onChange)
		self.spinY.connect("changed", self.onChange)
		fontb.connect("font-set", self.onChange)
		colorb.connect("color-set", self.onChange)
Example #4
0
 def __init__(self, cal, index, mode, params, sgroupLabel, sgroupFont):
     from scal3.ui_gtk.mywidgets.multi_spin.float_num import FloatSpinButton
     from scal3.ui_gtk.mywidgets import MyFontButton, MyColorButton
     gtk.HBox.__init__(self)
     self.cal = cal
     self.index = index
     self.mode = mode
     ######
     label = gtk.Label(_(calTypes[mode].desc) + '  ')
     label.set_alignment(0, 0.5)
     pack(self, label)
     sgroupLabel.add_widget(label)
     ###
     pack(self, gtk.Label(''), 1, 1)
     pack(self, gtk.Label(_('position')))
     ###
     spin = FloatSpinButton(-999, 999, 1)
     self.spinX = spin
     pack(self, spin)
     ###
     spin = FloatSpinButton(-999, 999, 1)
     self.spinY = spin
     pack(self, spin)
     ####
     pack(self, gtk.Label(''), 1, 1)
     ###
     fontb = MyFontButton(cal)
     self.fontb = fontb
     pack(self, fontb)
     sgroupFont.add_widget(fontb)
     ####
     colorb = MyColorButton()
     self.colorb = colorb
     pack(self, colorb)
     ####
     self.set(params)
     ####
     self.spinX.connect('changed', self.onChange)
     self.spinY.connect('changed', self.onChange)
     fontb.connect('font-set', self.onChange)
     colorb.connect('color-set', self.onChange)
Example #5
0
 def __init__(self, cal, index, mode, params, sgroupLabel, sgroupFont):
     from scal3.ui_gtk.mywidgets.multi_spin.float_num import FloatSpinButton
     from scal3.ui_gtk.mywidgets import MyFontButton, MyColorButton
     gtk.HBox.__init__(self)
     self.cal = cal
     self.index = index
     self.mode = mode
     ######
     label = gtk.Label(_(calTypes[mode].desc)+'  ')
     label.set_alignment(0, 0.5)
     pack(self, label)
     sgroupLabel.add_widget(label)
     ###
     pack(self, gtk.Label(''), 1, 1)
     pack(self, gtk.Label(_('position')))
     ###
     spin = FloatSpinButton(-999, 999, 1)
     self.spinX = spin
     pack(self, spin)
     ###
     spin = FloatSpinButton(-999, 999, 1)
     self.spinY = spin
     pack(self, spin)
     ####
     pack(self, gtk.Label(''), 1, 1)
     ###
     fontb = MyFontButton(cal)
     self.fontb = fontb
     pack(self, fontb)
     sgroupFont.add_widget(fontb)
     ####
     colorb = MyColorButton()
     self.colorb = colorb
     pack(self, colorb)
     ####
     self.set(params)
     ####
     self.spinX.connect('changed', self.onChange)
     self.spinY.connect('changed', self.onChange)
     fontb.connect('font-set', self.onChange)
     colorb.connect('color-set', self.onChange)