0
votes
1answer
16 views

Saving wxPanel to Image

I'm looking for a way to essentially screen capture a whole wxPanel, and save it as a PNG. The kicker is, there is no screen. I need to be able to "draw" the panel and save the drawn panel with no ...
0
votes
0answers
35 views

python layout/functionality questions

I am about to start making a python (2.7) app - using wx, but im still having a few theoretical walls infront, making me sceptical about practical success. So below are a few questions: 1) My app ...
0
votes
0answers
6 views

Simple Anaglyph-like Transparent Window that Modifies Pixel Color Behind the Window in Python

Would it be possible to use wxpython( or maybe PIL?) to be able to set up a transparent window that stays on top of all open windows and contains multiple squares (or any shape) that would cause an ...
0
votes
1answer
18 views

Scroll bar problems

I have a scrollable wx.textcontrol widget that updates during the course of the program. Whenever the text is updated,the scrollbar resets to the top of the screen. I don't want that to happen, but I ...
0
votes
2answers
54 views

Considerations for python gui toolkit for app that queries remote database?

I know this question has been asked before but those questions typically lack specific details and result in answers that say something like "It depends what you are trying to do..." so the main gist ...
0
votes
0answers
25 views

Python traceback feature breaks under recursion with wxPython version 2.9

Edit 2: Ok found out why it is happening (will try to find the difference between it and 2.8 after) pdb trace (the gist of it is it sets the size of somethings, calls layout, layout tells some other ...
0
votes
1answer
21 views

Resize a wxPython Panel without EVT_SIZE being fired

Edit As I was updating this with the bellow edit I realized during my tests that it is something seemingly wrong with the traceback function of python. I will post a new question Edit: Updated to ...
0
votes
1answer
22 views

How to change font color of random individual text in wxPython?

I know, font can be formatted in different ways in wxPython using Rich Text. Like richtext = wx.TextCtrl(self, -1,"Dummy Text Here",size=(100, 100),style=wx.TE_MULTILINE|wx.TE_RICH2) richtext ...
2
votes
2answers
40 views

On Mac, how to create a drag & drop app for a python script where the script name rather than Python shows in the MenuBar (etc.)?

I have a Python script that I would like to start either by clicking on something or by dropping a file I want to open on that thing. I also want to avoid the annoying mac Python issue that the name ...
0
votes
1answer
16 views

Panel doesn't fully refresh when using a custom background in wxPython

Here's some sample code: import wx class MainPanel(wx.Panel): p1 = None p2 = None def __init__(self, parent): wx.Panel.__init__(self, parent=parent) self.frame = parent ...
0
votes
1answer
32 views

How can I select an area on the screen and dim the unseleceted area with Python?

I'm building a screen capture application and I'm using wxPython, but feel free to suggest another library for this task. I can place a full-screen, semi-transparent frame on top of the screen and I ...
0
votes
0answers
16 views

wxPython GUI crashes intermittently

In general the GUI developed in wxPython works normally but sometimes it crashes showing following error. (python:2742): GLib-GObject-WARNING **: gtype.c:3942: type id `0' is invalid (python:2742): ...
0
votes
0answers
42 views
+50

QTMovie never sends QTMovieDidEndNotification

Using pyobjc and wxPython to embed QTMovieView (and QTMovie) widget into a wxPython panel and then registering needed notifications, however QTMovieDidEndNotification is not ever triggered. ...
0
votes
1answer
20 views

Resizing wxPython Widgets

How do I change the size of wxPython widget after its creation? I am trying to dynamically change the width of a ComboBoxCtrl widget based on the elements in the popup. For the sake of simplicity lets ...
0
votes
0answers
34 views

wxPython Web View open link in a new tab not working

I have a question. I have some simple code which created a mini web browser and I want it to do something when I click 'Open link in a new Tab' in a PopUp menu ( right click ). But this option is ...

1 2 3 4 5 143
15 30 50 per page