示例#1
0
文件: grid.py 项目: amottola/slew
import slew

class Model(slew.DataModel):
	def row_count(self, index):
		if index is None:
			return 100
		return 0
	def column_count(self):
		return 5
	def header(self, pos):
		return slew.DataSpecifier(text="Column %d" % pos.x, width=(50 + pos.x * 20))
	def data(self, index):
		d = slew.DataSpecifier()
		d.text = '%c-%d' % (65+index.column, index.row)
		if index.column == 0:
			d.flags &= ~slew.DataSpecifier.READONLY
		return d

class Application(slew.Application, slew.EventHandler):
	def run(self):
		self.frame = slew.Frame()
		grid = slew.Grid()
		grid.set_model(Model())
		self.frame.append(slew.VBox().append(grid))
		self.frame.show()

slew.run(Application())
示例#2
0
import slew


class App(slew.Application):
    def run(self):
        interface = slew.load_interface("prompt.xml")
        self.dialog = interface['test'].create()
        self.dialog.find('ok').onClick = self.clicked
        self.dialog.show_modal()

    def clicked(self, e):
        slew.message_box("Hi %s!" % self.dialog.find('my_name').get_value())
        self.dialog.end_modal()


slew.run(App())
示例#3
0
import slew


class Application(slew.Application):
    def run(self):
        xml = """
			<frame title="Hello">
				<vbox>
					<label align="center">Hello world!</label>
				</vbox>
			</frame>
		"""
        frame = slew.Frame(xml)
        frame.show()


slew.run(Application())
示例#4
0
文件: prompt.py 项目: amottola/slew
import slew

class App(slew.Application):
	def run(self):
		interface = slew.load_interface("prompt.xml")
		self.dialog = interface['test'].create()
		self.dialog.find('ok').onClick = self.clicked
		self.dialog.show_modal()
	
	def clicked(self, e):
		slew.message_box("Hi %s!" % self.dialog.find('my_name').get_value())
		self.dialog.end_modal()

slew.run(App())