本文整理汇总了Python中View.View.applyname方法的典型用法代码示例。如果您正苦于以下问题:Python View.applyname方法的具体用法?Python View.applyname怎么用?Python View.applyname使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类View.View
的用法示例。
在下文中一共展示了View.applyname方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: FormCreator
# 需要导入模块: from View import View [as 别名]
# 或者: from View.View import applyname [as 别名]
#.........这里部分代码省略.........
mb = wx.MenuBar()
mb.Append(fmenu, "&File")
mb.Append(emenu, "&Edit")
# set menubar to be the main menubar of the frame
self.SetMenuBar(mb)
# set the frame to be shown on screen (this is important)
self.Show(True)
# Bindings
self.Bind(wx.EVT_MENU, self.on_open, openbutton)
self.Bind(wx.EVT_MENU, self.on_save, savebutton)
self.Bind(wx.EVT_MENU, self.on_close, closebutton)
self.Bind(wx.EVT_MENU, self.on_print, printbutton)
self.Bind(wx.EVT_MENU, self.export_print_page, exportbutton)
self.Bind(wx.EVT_MENU, self.on_about, aboutbutton)
self.Bind(wx.EVT_MENU, self.on_stats, statsbutton)
self.Bind(wx.EVT_MENU, self.on_exit, exitbutton)
self.Bind(wx.EVT_MENU, self.filter, filtbutton)
self.Bind(wx.EVT_MENU, self.cleanup, cleanbutton)
self.Bind(wx.EVT_MENU, self.on_delete, deletebutton)
self.Bind(wx.EVT_MENU, self.del_all, delallbutton)
self.Bind(wx.EVT_LISTBOX, self.on_selection, self.listbox)
self.Bind(wx.EVT_BUTTON, self.apply_name, self.applybutton)
self.Bind(wx.EVT_TEXT, self.typing, self.idtext)
def typing(self, event):
"""
Set the text being typed to the rectangle's name
"""
event.Skip()
if self.view.image is not None:
self.view.applyname(self.idtext.Value)
def on_print(self, event):
"""Print button for debugging"""
event.Skip()
if self.view is not None:
for r in self.view.rects:
print("{0} : {1} - {2}".format(r.idtag, r.typerect, r.data))
def on_open(self, event):
"""
Open up an image and load it to the canvas
"""
event.Skip()
dirname = ""
dlg = wx.FileDialog(self, "Choose a file", dirname, "", "*.*", wx.OPEN)
if dlg.ShowModal() == wx.ID_OK:
self.filename = dlg.GetFilename()
dirname = dlg.GetDirectory()
self.img = join(dirname, self.filename)
self.view.image = wx.Bitmap(self.img, type=wx.BITMAP_TYPE_ANY)
self.view.rects = []
self.view.Refresh() # trigger onpaint
self.SetTitle("Form Creator : " + self.img)
# Read for an RMAP file
fname = self.filename.split(".")
fname.pop()
rmap_file = join(dirname, ".".join(fname + ["rmap"]))
if isfile(rmap_file):
# the file is here!
with open(rmap_file, "r") as f: