Tagged Questions
Sizer are the method of choice to define the layout of controls in containers in a GUI because of their ability to create visually appealing frames or dialogs independent of the platform, taking into account the differences in size and style of the individual controls.
6
votes
2answers
354 views
Placing elements (panels) within a wx.GridBagSizer
I'm using a gridbagsizer to place two panels within a frame.
control_panel = wx.Panel(self, id=ID_CONTROL_PANEL)
main_panel = wx.Panel(self, id=ID_MAIN_PANEL)
frame_sizer = wx.GridBagSizer(1, 1)
...
4
votes
2answers
1k views
Why Does .Hide()ing and .Show()ing Panels in wxPython Result in the Sizer Changing the Layout?
As referenced in my previous question, I am trying to make something slightly wizard-like in function. I have settled on a single frame with a sizer added to it. I build panels for each of the ...
2
votes
1answer
308 views
Getting a WxPython panel item to expand
I have a WxPython frame containing a single item, such as:
class Panel(wx.Panel):
def __init__(self, parent):
wx.Panel.__init__(self, parent)
self.text = wx.StaticText(self, ...
1
vote
1answer
69 views
How do I add items inside a static box while using Sizers?
I'm using wx.Python and have a group of objects that I want 'wrapped' within a static box similar to this:
However that tutorial uses position sizes, and I'm using sizers instead. I'm having a ...
1
vote
1answer
202 views
wxPython: How to fix the size of one part of a grid sizer
What I want to do is create 3 column that will expand as the window expands. But I want to put limits on it so the different columns expand to different maximum amounts.
What I have done here is ...
1
vote
2answers
169 views
wxPython: Can a wx.PyControl contain a wx.Sizer?
Can a wx.PyControl contain a wx.Sizer?
Note that what I am ultimately trying to do here (spinner with float values) is already answered in another question. I am particularly interested in layouting ...
1
vote
1answer
563 views
wxPython: “Super” wx.SpinCtrl with float values, layout inside sizer
wx.SpinCtrl is limited to spinning across integers, and not floats. Therefore, I am building a wx.TextCtrl + wx.SpinButton combo class which enables me to spin across floats. I am able to size and ...
1
vote
2answers
79 views
How to make a dynamic number of horizontal BoxSizers?
I have a fucntion that calculates the number of images that can be displayed on the screen, if there are more images than the ones that can be put on screen, I resize the images till they all can ...
1
vote
1answer
162 views
If Possible, How Can One Set Either a Background Color on Cells within a Sizer or Gridlines for the Sizer?
I am flailing about with wxWidgets, in particular, the wx.Sizer in wxPython. I have read the documents, I have a copy of wXPython in Action before me, and have set aside the problem to work on other ...
1
vote
1answer
920 views
wxwidgets resize sizers after hiding/showing child controls
I have an wxWindow. Inside there I've got a wxBoxSize (Vertical). The sizer has 3 child controls.
I want to be able to hide one of the three child controls, and have the sizer and its parent ...
1
vote
1answer
621 views
wxwidgets custom control size cannot be set.What am i missing out
I have a Custom control derived from wxControl,inside a dialog with a vertical sizer
wxBoxSizer *topSizer = new wxBoxSizer( wxVERTICAL );
Knob* newKnob = new ...
1
vote
1answer
428 views
WxPython: FoldPanelBar not really folding
I've written the following code using FoldPanelBar:
import wx
import wx.lib.agw.foldpanelbar as fpb
class frame(wx.Frame):
def __init__(self,*args,**kwargs):
...
0
votes
1answer
36 views
wxpython: centering text within a panel within a sizer
It seems to me that the following code should display text right in the centre of the window; that is, in the centre of the inner panel. It doesn't however, and I'm wondering why not. If you run the ...
0
votes
2answers
146 views
wxPython: how to lay one panel over another
This is about wxPython.
I would like to have 2 Panels laying one over the other:
PanelBG should be some sort of a "background", with its own GridBagSizer with subPanels, StaticTexts and so on;
...
0
votes
1answer
85 views
wxWidgets child sizer not expanding
I've got a very frustrating sizer problem.
I have two wxFlexGridSizers (and a few other things) inside a vertical wxBoxSizer, like so:
mMainSizer->Add(topsizer, wxSizerFlags(0).Expand());
...
0
votes
1answer
54 views
wxPython: Nesting GridBagSizers not spanning?
I've g0t a GridBagSizer (folderBagSizer)within an existing GridBagSizer (sizer)... now I am trying to populate the nested sizer (folderBagSizer) with some labels. They are showing up UNDER the ...
0
votes
1answer
206 views
Fitting a big grid (wxGrid) in a dialog (wxDialog)
Here is my layout:
I have a sizer that contains a grid (with a proportion of 1) and a ok/cancel button bar
The all thing is in a wxDialog
Here it is:
|||||||||||||||
| |
| GRID ...
0
votes
0answers
99 views
Cannot specify the wxFrame size when sizer used in xrc
I'm using xrc to do the layout things in wxWidget,It's much easier than hard code.
But I find some problem when specify the size of a top window.
If the window have a sizer in it, the specified size ...
0
votes
1answer
151 views
wxpython: nested sizers, and little square in top left corner?
I'm trying to look into wxPython and sizers, and I put together the following example:
import wx
class MyTestFrame(wx.Frame):
def __init__(self, parent, title):
super(MyTestFrame, ...
0
votes
1answer
183 views
How can I get a wxFrame to refresh without having to manually resize it in wxPython?
I have a simple frame in a wxPython script that isn't refreshing like I'd like it to.
Basically the frame starts out blank. The user can then select different datasets to view in a grid form. When ...
0
votes
1answer
138 views
use wxPython to draw a grided rectangular container or box
all, I want to draw a rectangular or a container with 20 slots inside. it is like a cd container or archive, with empty slot to insert the cd or book. I choose wxPython.
for this 20 horizontal empty ...
0
votes
1answer
333 views
wxPython: wx.PyControl layout problem when it is a child of a wx.Panel
This is a continuation from this question:
wxPython: Can a wx.PyControl contain a wx.Sizer?
The main topic here is using a wx.Sizer inside a wx.PyControl. I had problems Fit()ting my CustomWidget ...
0
votes
1answer
47 views
How do I get the size of an individual cell of a wx.GridSizer?
I'm wondering if I could get the size of an individual cell of a wx.GridSizer after calling Fit(). If so, how do I do that?
0
votes
3answers
671 views
Appropriate wx.Sizer(s) for the job?
I have a space in which I would like certain elements (represented here by A, B, D, and G) to each be in its own "corner" of the design. The corners ought to line up as if each of the four elements ...
0
votes
1answer
412 views
wxPython GridSizer not attached to panel?
I'm trying to build a level editor for a game I'm working on. It pulls data from a flat file and then based on a byte-by-byte search it'll assemble a grid from pre-set tiles. This part of the app I ...
0
votes
1answer
283 views
wxPython sizer wxGridSizer's parent class method is strangely inaccessible
I am having an issue with wxPython toolkit. I am using a wx.GridSizer object to place a grid displaying some status info. I need to update this grid, and so I came up with a few different ways of ...
0
votes
3answers
2k views
How do I expand a wx.sizer of a wx.panel when the panel is expanded inside another wx.sizer?
I have a wx.Panel that has a GridBagSizer associated with it. This panel is placed inside another Sizer (BoxSizer), whose add has the expand flag - meaning that the panel takes up the full width of ...