Tagged Questions

3
votes
1answer
739 views

What resources exist for WxRuby: documentation, tutorials, samples?

I found the RubyForge documentation, which is a little tricky to navigate. There's a basic tutorial on the Ruby On Windows blog. But I've already moved on from that. What other WxRuby resources have ...
2
votes
4answers
1k views

How do I set a minimum window size in wxWidgets?

This is the hierarchy of widgets I've got: Frame > wxBoxSizer > wxPanel > wxBoxSizer > wxFlexGridSizer (2 columns, 9 rows), with assorted form fields and buttons inside. The first BoxSizer is to ...
1
vote
0answers
67 views

How to build wxPython trunk with mingw on Windows?

I checked out wxPython and wxWidgets into two directories C:\dev\wx\wxPtyhon and C:\dev\wx\wxWidgets: mkdir /D c:\dev\wx\ cd c:\dev\wx git clone https://github.com/wxWidgets/wxPython.git git clone ...
1
vote
0answers
69 views

WxPython: How do I Edit Row and Column Names for a cSheet Grid and make the cells non-editable?

I am currently piping information to a wxPython GUI program in real time. I would like to make a custom spread-sheet-style 4x4 cell grid that continuously displays the values for a matrix being ...
1
vote
0answers
155 views

wxWidgets ComboBox center on selected item

I have a requirement to center a wx.ComboBox on the selected item when opened. Basically, I want to do this (http://stackoverflow.com/questions/592911/wpf-listbox-centering-selected-item), but using ...
1
vote
1answer
465 views

How to make wx.TextEntryDialog larger and resizable

I create a wx.TextEntryDialog as follows: import wx dlg = wx.TextEntryDialog(self, 'Rules:', 'Edit rules', style=wx.TE_MULTILINE|wx.OK|wx.CANCEL) ...
1
vote
1answer
191 views

I'm trying to make a wx.Frame with variable transparancy (based on the png mapped in the erase bk event)

I'm trying to make a special splash screen that is displayed while the application is loading, it outputs messages of the various components loading and features a progress bar. The first job I am ...
1
vote
3answers
382 views

What are the existing open-source Python WxWidgets designers?

What are the usable tools? I am aware of wxformbuilder and wxGlade, but none of them seems to be complete yet.
0
votes
1answer
8 views

COMBOBOX is not vertically sizable wxpython

i am wondering if there is a way to size a combobox vertically This does not work self.combo1 = wx.ComboBox(self, -1, value='dsadas', pos=wx.Point(10, 30), size=wx.Size(120, 423450), ...
0
votes
0answers
30 views

Need some help using widgets with wxpython

Hey i am using pygame within wxpython, and I am wondering how can I use a wx widget inside the pygame part of the program. So, I would just like to replace the player image with a wxButton. (So when ...
0
votes
0answers
19 views

WxWidgets: wxMemoryDC fails to select wxBitmap created using CopyFromIcon

I create a bitmap from an icon and select it like so: wxBitmap iconBitmap; iconBitmap.CopyFromIcon(icon); if(!icon.IsOk()) { wxLogError("Error! bitmap is not okay\n"); } wxMemoryDC dc; ...
0
votes
2answers
39 views

Is there a way to uniquely style items in the wxChoice widget in wxPerl (WxWidgets)?

I'm trying to figure out if it's possible to style the items in a drop-down menu when I use the wxChoice widget. Best I can tell, it's not possible but I just wanted to ask the greater Perl community ...
0
votes
1answer
61 views

wxWidgets UI has all items gathered upper left corner when first opened

I'm a newbie on wxWidgets and try to design a UI. I'm using Microsoft Visual Studio 2010. I'm trying to avoid using absolute positions for the UI elements, so I try to do everything with sizers. But ...
0
votes
1answer
55 views

How to include a wxObjArray correctly?

I define a wxObjArray in my TMainFrame.h as follows: #ifndef __TMainFrame__ #define __TMainFrame__ #include "MyApp_gui.h" //// end generated include #include "TRunThread.h" #include ...
0
votes
0answers
45 views

WxPython: Displaying EPS Images

Is there anyway to display an EPS image in wxPython while still conserving the EPS properties, such as being scalable to any size? Thank you very much.
0
votes
1answer
108 views

WxPython: How to display a pdf file object in a wxPanel?

I have a wxPython GUI. I would like to display the pdf object as an image inside a wxPanel on Mac/UNIX. What would I use? Any advice or suggestions would be appreciated. Thank you in advance.
0
votes
1answer
428 views

Problem with wx, setup.h

I try to compile the openphone example from the opalvoip library, but I have no success and get the following errors: /usr/include/wx/platform.h|190|error: wx/setup.h: Datei oder Verzeichnis nicht ...
0
votes
1answer
330 views

ERLANG - WX NOTEBOOK SIZE

Im having a small issue today.. I am trying to create an aui as shown in the demo program of the wx module. The size of the actual tabs will not change no matter what I do. They stay at about 400 by ...
0
votes
2answers
114 views

wxWidgets compiling with an error

I am trying to compile and create wxWidget apps but when its just about done I have a virtual memory runout and there is an error in the wxWidgets code I have tried it several times with 2.8.10 AND ...
0
votes
1answer
205 views

sizer.replace() paints “over” old sizercontent

I am rather new to wx/python so please excuse if this is stupid or ill described. I am substituting a nested sizer with a new one as shown in the snippet below. after some tinkering everything seems ...