wx (wxWidgets) is a C++ library that lets developers create applications for Windows, OS X, Linux and UNIX on 32-bit and 64-bit architectures as well as several mobile platforms including Windows Mobile, iPhone SDK and embedded GTK+.
0
votes
2answers
18 views
Attach/Detach two frames in wxpython
I am designing a GUI with several components and two wx.Frame objects F1 and F2. F1 is the main frame and F2 is the secondary frame. I would like to have a mechanism, so the user can attach these two ...
1
vote
0answers
21 views
wxpython, passing user datas to html2
i am trying to develop python GUI to access webpages. below example is working fine. but i need to pass user credentials(username/password) with in this code.
i dont want to click on that button. ...
0
votes
0answers
24 views
wxwidget compiling on windows command prompt
Can someone please guide me on the method,as to how I would compile wxwidget using windows command prompt or MSYS. [I can't seem to find anything on the wxwiki/wxwidget official book/anywhere else]
I ...
0
votes
2answers
38 views
finding wxpython event documentation
How can I find out the functions and attributes of the various events released by wxpython?
When a bound function is triggered an event is sent to the bound function e.g.:
self.Bind(wx.EVT_BUTTON, ...
0
votes
1answer
52 views
Inconsistency between IDLE/PythonWin during module imports
I have been fumbling around between IDLE/PythonWin and even Aptana Studio 3 trying to get some consistency regarding importing modules. The modules I have been using lately are wx from wxPython and ...
2
votes
1answer
62 views
How to avoid multi-threading problems (wxWidgets and Cplex) in C++?
I wrote a tool in C++ using wxWidgets for the GUI and IBM ILOG Cplex to solve an optimization problem.
In one of the functions called by the wx event handler, I invoke the IBM ILOG Cplex Optimizer ...
0
votes
1answer
66 views
How to sync the scrollbars of two grids in wx
One custom wx.frame is created to contain a splitter window with two grid controls inside. It's used to compare the data in each of the grid. At this point the scrollbar of two grids need to support ...
0
votes
1answer
70 views
(wx python) auto size a text in a boxsizer
I'm using wxpython for an app however I can't auto size a text using wx.statictext (is there a way to display text without using that ?) and this text is in a boxsizer but when I resize my window it ...
0
votes
1answer
51 views
convert wxString to time_t
I have a wxString which has a date as its value. The date format is stored depending on the regional setting or locale settings.
For eg. wxString dateStr = "9/10/2013" [dd/mm/yyyy format for Italy as ...
0
votes
0answers
9 views
wxwidget 2.8 to wxwidget 2.9 wxLocale problems
I do some transfer work coping with some code written with wxwidget 2.8, no need transfer to wxwidget 2.9.
I defined that:
wxLocale m_locale;
and use
m_locale.Init(iLocale, ...
1
vote
1answer
26 views
What is the event I can handle dragged and external file onto my frame
I have code working to drop files onto a wx.FileDropTarget inside my frame. That is not my question.
I am trying to make a custom "hover" event that gets called 1 second after a outside dragged file ...
0
votes
1answer
23 views
wxPython MessageDialog - How to query status?
I'm running a wxTimer that I would like to stop, before opening a MessageDialog, and restart, when the MessageDialog has been closed.
How would I accomplish that?
I didn't find any method that would ...
0
votes
0answers
38 views
Wx StyledTextCtrl Line numbers, hiding the first line
I have the same problem as the one mentioned here:
wxPython StyledTextCtrl line numbers not starting at 1
There is a solution posted there: hiding lines with "\n" solve the problem, but I cant hide ...
0
votes
0answers
27 views
how to use the wxformbuilder genetated c++ file in my vs2010 project
I just learn wxwidget programing. I googled and only find some material about how to use the XRC fiel from wxformbuilder for vc++ 2010 projcet. But seem the newest wxbuilder no longer provide xrc ...
0
votes
1answer
88 views
Window with no title bar in wxWindows/wxPython
Is there a way to have a window without a title bar using wxPython? If so, how would I go about doing that?
0
votes
0answers
35 views
Alternative to wxRichTextCtrl for console outputs with clickable exception messages
I'm using wxPython to write an application that's used as an IDE. The application runs on Windows PCs (XP and 7), I'm using Python 2.7 and wxPython 2.8. When the user executes his/her code (Python), ...
0
votes
1answer
71 views
wxwidget 2.9.4 build link error under win7 vs2010 ultimate
I batch build the wxwidget under vs2010 ultimate and get a error:
Build started 2013/3/11 10:41:47.
InitializeBuildStatus:
Touching "vc_mswuddll\stc\stc.unsuccessfulbuild".
CustomBuild:
All outputs ...
2
votes
2answers
83 views
viewport or projection not resizing correctly on window resize in wxWidgets
I have a wxWigets application, using the wxGLCanvas widget from the contrib package. Every time the widget is refreshed, I recreate the projection matrix and the viewport before rendering the scene. ...
0
votes
2answers
110 views
Python simple for loop logic (index out of range)
I'm getting the error "tuple index out of range" when my DeleteButton function is called. I'm trying to delete multiple objects from a list at once. Can someone tell me what is wrong with my logic?
...
0
votes
0answers
52 views
How to simulataneously show matplotlib.animation and wx.media.MediaCtrl video?
Is this possible? I tried the following (not the whole code):
def showAnimAndVid():
# animated plot part
fig = figure();
...
anim = animation.FuncAnimation(fig, ...)
anim.Repeat = ...
0
votes
2answers
76 views
How to convert a wxPython app to run as a headless unix job?
I am currently running 2.8.9.1 of wx in a linux box.
The App I am working on was originally written to run on MS Windows. We are planning to port part of the core logic to linux and run it as a ...
0
votes
0answers
37 views
collapsiblepane.GetLabel() in wxpython
I'm trying to get the value of the label of the parent collapsiblepane when a checkbox that is its child is clicked. However any sensible attempt I have made just returns an empty string. I'm using ...
1
vote
1answer
54 views
Is it possible to get the new column size from a GridSizeEvent in wxPython?
When a wx.grid.Grid's column is resized, a wx.grid.GridSizeEvent is emitted. From the docs and dir(event) output this appears to be the most useless class in all of wxPython. It apparently doesn't ...
-1
votes
2answers
37 views
how to get value from spinctrl and send it to .exe file in python script
I am new to python and wxpython, I am making a automated tool using python and for user interface wxpython and i use shell script.shell script can be called from the python. but now I am facing ...
0
votes
2answers
57 views
How to clear and refresh a panel in Wx?
I'm building a news reader application and I have a wxScrolledWindow in which I show the news. However, I have categories and when one is clicked, I want to update this panel with the current ...
0
votes
0answers
34 views
Creating a single scroll bar for splitter windows
I have created a grid in a splitter and hence one part of the grid is displayed in right panel and the other in left panel. I need a scroll bar that will scroll the entire thing as a whole and not ...
0
votes
2answers
69 views
Embed Separate WX GUIs into Notebook Tabs
I basically have 3 separate wxPython GUIs that I would like to combine into a single application, giving each GUI its own notebook tab. I'm not really sure how to do this though and am looking for ...
0
votes
1answer
83 views
Toggling py2app standalone?
An app I made from my script with py2app doesn't work on newer versions of OS X. I was told that this was because the build was partially standalone, meaning it requires my version of wxPython, but ...
0
votes
3answers
71 views
How do I override a Panel's minimum size?
I'm trying to implement a panel subclass that will automatically insert vertical scrollbars if the content overflows its vertical bounds. I want the panel to work exactly like a normal panel in every ...
1
vote
1answer
46 views
How to divide a wxPanel horizontally?
I'm building a layout for a console app and here's what I want to achieve. What I have so far is this.
My main window is deriving from a wxFrame. I split the window using wxSplitterWindow into two ...
0
votes
0answers
29 views
How can i split the window in wxPerl? [duplicate]
Possible Duplicate:
How to divide a wxPanel horizontally?
I want to achieve the following layout using wxPerl. I used wxMenu for the menu and I plan to use wxTreeCtrl for the directory tree ...
0
votes
1answer
56 views
How to add submenu dynamically in wxPython
In one of my program, I want to add a 'Recent Used' feature in the 'File' Menu. So, when users select 'File > Recent Used', it will show up a sub menu with the history list. I know how to append a sub ...
1
vote
1answer
32 views
Attribute Error when trying to setlabel in wx python
This seems like a simple issue but I'm having a very difficult time understanding why I am getting the following error:
Traceback (most recent call last):
File "....py", line 46, in update
...
0
votes
3answers
296 views
wxWidgets 2.9.4 built under Visual C++ Express 2010 gives unresolved external errors
I have been trying to upgrade to wxWidgets 2.9.4 over my old 2.8.12 and have run into problems. I compiled it without errors from the command line but when I try to use them in the program that worked ...
0
votes
2answers
86 views
Can I exclude specific controllers from the standard tab traversal?
I've made a custom dialog that contains a series of text controls. Every text control has a couple of buttons beside them for adding specific values more conveniently. I don't want these buttons to ...
1
vote
1answer
202 views
Formatting wx.TextCtrl with numeric values only - float precision
I have created a simple app which uses bare TextCtrl widgets with wxFILTER_NUMERIC in order to accept only numerical values (see code below).
I want the values to have a fixed display precision ...
2
votes
1answer
36 views
How to disable dragging wx.DIalog from the user
I want disable dragging the wx.Dialog. I noticed when I remove the caption the user can not drag the dialog, but I want to keep the caption. Any suggestions would be helpful? Thank you.
0
votes
1answer
33 views
wxPython in virtualenv on OS X?
I just made a virtualenv, installed py2app and wx, and ran a wxPython app. I got:
class mainWindow(wx.Frame):
AttributeError: 'module' object has no attribute 'Frame'
For some reason, it never ...
0
votes
2answers
102 views
How do I control the viewport of a Grid in wxPython?
I'm trying to implement Find functionality in my grid application. I can move the cursor using SetGridCursor(self, row, col), but I can't figure out how to move the "viewport" of the grid to the new ...
0
votes
1answer
32 views
Running a dpkg installer to install deb in wxpython
I want to do an automatic installer for deb installation. Manually we are using:
dpkg -i --force-overwrite xxx.tar .
But how to do it in wxpython? I have GUI ready and with 1 click on button it ...
3
votes
2answers
85 views
How do I undo wx.grid.Grid.SetColAttr?
I have a grid application where a column can be, for instance, flagged as super-important. When this is done, I use Grid.SetColAttr to change the colour of the column. When the user removes the flag, ...
0
votes
1answer
190 views
Can I speed optimize the use of GridCellAttr in wxPython's wx.grid.Grid?
I'm making a Windows application using wx.grid.Grid that will handle very large Microsoft Excel documents. Currently it opens a file with 17 columns and 12 000+ rows quite quickly, and I can scroll ...
2
votes
1answer
124 views
wxPython - wxGrid - How to detect which column moves where
When the user drags a column to a new index, the wx.grid.EVT_GRID_COL_MOVE event is triggered. The handler receives a wx.grid.GridEvent which contains the property Col which contains the old index of ...
1
vote
1answer
257 views
wxPython Updating Grid Cell Background Colour
I'm writing a small program using wxPython that displays a finite sized grid of floating point numbers which is stored in parallel as a numpy array. I want the colors of the cells to represent the ...
0
votes
1answer
118 views
wxPython “Library not loaded”
I made a wxPython app for Mac and packaged it with py2app. Two people have already said they can't get it to launch, with the following error message:
ImportError: ...
0
votes
1answer
70 views
Avoid wxFrame destroy when closing
I'd like to create wxFrame that won't get Destroyed when closed, so I can show them back later and also keep updating them even when they are hidden.
I tried to use ...
0
votes
1answer
60 views
Binding a Pyo Oscillator output to a WX Event
I am building a simple signal generator in Python based on the Pyo and WX libraries.
I have ran through the simple tutorials for each and have successfully bound buttons in WX to WX functions. I am ...
1
vote
2answers
57 views
Nested Lambdas in wxHaskell Library
I've been trying to figure out how I can make staticText elements resize to fit their contents with wxHaskell. From what I can tell, this is the default behavior in wxWidgets, but the wxHaskell ...
0
votes
1answer
94 views
Python GUI Events
I'm sure this question has been asked many times before, so I apologize in advance. I simply cannot find the answer via google or searching stack overflow.
I'm working in python with the wx library. ...
0
votes
0answers
68 views
Python XRC Buttons not clickable
I'm working on a python app, and have hit a snag. My goal is to have a main frame containing numerous controls, and a panel which will be loaded from an xrc file specified at run time. Essentially, ...


