Tagged Questions

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
560 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
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
144 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
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
150 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
181 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
137 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
670 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
411 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 ...