def DoSetSize(self, x, y, width, height, sizeFlags=wx.SIZE_AUTO): """ Sets the size of the window in pixels. :param integer `x`: required `x` position in pixels, or ``wx.DefaultCoord`` to indicate that the existing value should be used; :param integer `y`: required `y` position in pixels, or ``wx.DefaultCoord`` to indicate that the existing value should be used; :param integer `width`: required width in pixels, or ``wx.DefaultCoord`` to indicate that the existing value should be used; :param integer `height`: required height in pixels, or ``wx.DefaultCoord`` to indicate that the existing value should be used; :param integer `sizeFlags`: indicates the interpretation of other parameters. It is a bit list of the following: * ``wx.SIZE_AUTO_WIDTH``: a ``wx.DefaultCoord`` width value is taken to indicate a wxPython-supplied default width. * ``wx.SIZE_AUTO_HEIGHT``: a ``wx.DefaultCoord`` height value is taken to indicate a wxPython-supplied default height. * ``wx.SIZE_AUTO``: ``wx.DefaultCoord`` size values are taken to indicate a wxPython-supplied default size. * ``wx.SIZE_USE_EXISTING``: existing dimensions should be used if ``wx.DefaultCoord`` values are supplied. * ``wx.SIZE_ALLOW_MINUS_ONE``: allow negative dimensions (i.e. value of ``wx.DefaultCoord``) to be interpreted as real dimensions, not default values. * ``wx.SIZE_FORCE``: normally, if the position and the size of the window are already the same as the parameters of this function, nothing is done. but with this flag a window resize may be forced even in this case (supported in wx 2.6.2 and later and only implemented for MSW and ignored elsewhere currently). """ # When a resize triggers the scroll buttons to become visible, the page is resized. # This resize from within a resize event can cause (MSW) wxWidgets some confusion, # and report the 1st size to the 2nd size event. Hence the most recent size is # remembered internally and used in Layout() where appropiate. if self.GetMajorAxis() == wx.HORIZONTAL: self._size_in_major_axis_for_children = width if self._scroll_buttons_visible: if self._scroll_left_btn: self._size_in_major_axis_for_children += self._scroll_left_btn.GetSize( ).GetWidth() if self._scroll_right_btn: self._size_in_major_axis_for_children += self._scroll_right_btn.GetSize( ).GetWidth() else: self._size_in_major_axis_for_children = height if self._scroll_buttons_visible: if self._scroll_left_btn: self._size_in_major_axis_for_children += self._scroll_left_btn.GetSize( ).GetHeight() if self._scroll_right_btn: self._size_in_major_axis_for_children += self._scroll_right_btn.GetSize( ).GetHeight() RibbonControl.DoSetSize(self, x, y, width, height, sizeFlags)
def DoSetSize(self, x, y, width, height, sizeFlags=wx.SIZE_AUTO): # When a resize triggers the scroll buttons to become visible, the page is resized. # This resize from within a resize event can cause (MSW) wxWidgets some confusion, # and report the 1st size to the 2nd size event. Hence the most recent size is # remembered internally and used in Layout() where appropiate. if self.GetMajorAxis() == wx.HORIZONTAL: self._size_in_major_axis_for_children = width else: self._size_in_major_axis_for_children = height RibbonControl.DoSetSize(self, x, y, width, height, sizeFlags)
def DoSetSize(self, x, y, width, height, sizeFlags=wx.SIZE_AUTO): """ Sets the size of the window in pixels. :param integer `x`: required `x` position in pixels, or ``wx.DefaultCoord`` to indicate that the existing value should be used; :param integer `y`: required `y` position in pixels, or ``wx.DefaultCoord`` to indicate that the existing value should be used; :param integer `width`: required width in pixels, or ``wx.DefaultCoord`` to indicate that the existing value should be used; :param integer `height`: required height in pixels, or ``wx.DefaultCoord`` to indicate that the existing value should be used; :param integer `sizeFlags`: indicates the interpretation of other parameters. It is a bit list of the following: * ``wx.SIZE_AUTO_WIDTH``: a ``wx.DefaultCoord`` width value is taken to indicate a wxPython-supplied default width. * ``wx.SIZE_AUTO_HEIGHT``: a ``wx.DefaultCoord`` height value is taken to indicate a wxPython-supplied default height. * ``wx.SIZE_AUTO``: ``wx.DefaultCoord`` size values are taken to indicate a wxPython-supplied default size. * ``wx.SIZE_USE_EXISTING``: existing dimensions should be used if ``wx.DefaultCoord`` values are supplied. * ``wx.SIZE_ALLOW_MINUS_ONE``: allow negative dimensions (i.e. value of ``wx.DefaultCoord``) to be interpreted as real dimensions, not default values. * ``wx.SIZE_FORCE``: normally, if the position and the size of the window are already the same as the parameters of this function, nothing is done. but with this flag a window resize may be forced even in this case (supported in wx 2.6.2 and later and only implemented for MSW and ignored elsewhere currently). """ # At least on MSW, changing the size of a window will cause GetSize() to # report the new size, but a size event may not be handled immediately. # If self minimised check was performed in the OnSize handler, then # GetSize() could return a size much larger than the minimised size while # IsMinimised() returns True. This would then affect layout, as the panel # will refuse to grow any larger while in limbo between minimised and non. minimised = (self._flags & RIBBON_PANEL_NO_AUTO_MINIMISE) == 0 and self.IsMinimised(wx.Size(width, height)) if minimised != self._minimised: self._minimised = minimised for child in self.GetChildren(): child.Show(not minimised) self.Refresh() RibbonControl.DoSetSize(self, x, y, width, height, sizeFlags)
def DoSetSize(self, x, y, width, height, sizeFlags=wx.SIZE_AUTO): # At least on MSW, changing the size of a window will cause GetSize() to # report the new size, but a size event may not be handled immediately. # If self minimised check was performed in the OnSize handler, then # GetSize() could return a size much larger than the minimised size while # IsMinimised() returns True. This would then affect layout, as the panel # will refuse to grow any larger while in limbo between minimised and non. minimised = (self._flags & RIBBON_PANEL_NO_AUTO_MINIMISE) == 0 and self.IsMinimised(wx.Size(width, height)) if minimised != self._minimised: self._minimised = minimised for child in self.GetChildren(): child.Show(not minimised) self.Refresh() RibbonControl.DoSetSize(self, x, y, width, height, sizeFlags)