當前位置: 首頁>>代碼示例>>Python>>正文


Python View.set_frame方法代碼示例

本文整理匯總了Python中View.View.set_frame方法的典型用法代碼示例。如果您正苦於以下問題:Python View.set_frame方法的具體用法?Python View.set_frame怎麽用?Python View.set_frame使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在View.View的用法示例。


在下文中一共展示了View.set_frame方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: set_frame

# 需要導入模塊: from View import View [as 別名]
# 或者: from View.View import set_frame [as 別名]
 def set_frame(self, rect):
     if (    self._resizable == False
         and (rect.size.width != None or rect.size.height != None)):
         raise ValueError(u'Window is not resizable')
     View.set_frame(self, rect)
     self._pyglet.set_location(self._frame.origin.x, self._frame.origin.y)
     self._pyglet.set_size(self._frame.size.width, self._frame.size.height)
開發者ID:mountainstorm,項目名稱:MtUI,代碼行數:9,代碼來源:Window.py

示例2: __init__

# 需要導入模塊: from View import View [as 別名]
# 或者: from View.View import set_frame [as 別名]
 def __init__(self, style=STYLE_DEFAULT, fixed_size=None):
     View.__init__(self)
     self._window = self
     self._first_responder = None
     self._title = None
     self._style = style
     self._resizable = fixed_size is None
     self._application = Application.shared_application()
     self._min_size = None
     self._max_size = None
     self._zoomed = False
     self._key_window = False
     self._main_window = False
     if fixed_size is None:
         # normal window
         self._pyglet = PygletWindow(self, 
                                     style=style, 
                                     resizable=True)
     else:
         # fixed size window
         self._pyglet = PygletWindow(self, 
                                     style=style, 
                                     resizable=False, 
                                     width=fixed_size.width, 
                                     height=fixed_size.height)
     x, y = self._pyglet.get_location()
     width, height = self._pyglet.get_size()
     View.set_frame(self, Rect(x, y, width, height))
     self._application._add_window(self)
開發者ID:mountainstorm,項目名稱:MtUI,代碼行數:31,代碼來源:Window.py

示例3: on_resize

# 需要導入模塊: from View import View [as 別名]
# 或者: from View.View import set_frame [as 別名]
 def on_resize(self, width, height):
     pyglet.window.Window.on_resize(self, width, height)
     View.set_frame(self._window, Rect(width=width, height=height))
開發者ID:mountainstorm,項目名稱:MtUI,代碼行數:5,代碼來源:Window.py

示例4: on_move

# 需要導入模塊: from View import View [as 別名]
# 或者: from View.View import set_frame [as 別名]
 def on_move(self, x, y):
     View.set_frame(self._window, Rect(x=x, y=y))
開發者ID:mountainstorm,項目名稱:MtUI,代碼行數:4,代碼來源:Window.py


注:本文中的View.View.set_frame方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。