Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
160 views

wxPython: Disable a notebook tab?

Is there anyway to disable a notebook tab? Like you can with the Widgets themselves? I have a long process I kick off, and while it should be pretty self-explanatory for those looking at it, I want ...
3
votes
1answer
652 views

Create tab blinking effect (like IM programs) using wxNotebook

How can I Create Tab blinking effect like IM programs do using wxNotebook? A good example of this is would be any tabbed IM program that blinks to show the user that they received a new IM.
3
votes
2answers
666 views

wxNotebook Close Button?

I'm developing a notepad app using wxWidgets (the C++ version) and I'm working on implementing multi-file support. Using the wxNotebook class, I can't seem to find any documentation on adding a close ...
1
vote
1answer
127 views

wxNotebook - How I can get height and/or wxSize value of a single tab?

I'm writing some wxWidgets samples for educational purposes. My problem is simple: I'm using wxNotebook, and I need some trick to get current size of a single tab, especially height. In simple terms, ...
1
vote
1answer
154 views

How o Delete ALL Pages of agw.aui.notebook in One shot?

I have a auiNotebook built from agw library. Now i have added few pages Now i have to delete ALL pages at one shot. Please let me know how to do this. Or is there any method which gives me List of ...
1
vote
2answers
620 views

Programmatically Add/Remove tabs on wxNotebook by PageText

I need to be able to programmatically add and remove tabs on a wxNotebook by the text/label that is displayed on each tab. In windows, using a tab control and tab pages, I would be able to reference ...
0
votes
0answers
76 views

WxPython: Using a Code Snippet to Switch between NoteBook Pages on a Button Event

Does anyone know the method by which I would switch from one page to the next in a wxPython NoteBook? My goal is to automatically cause the first page to switch to the second one when a "start" button ...
0
votes
3answers
258 views

New wxNotebook-Pages stay empty in wxPython

I made some sample code to try wxNotebook, but the new inserted pages remain completely empty. If I don't use a Timer or a new Thread, but insert the pages before the MainLoop, it works. I suspect I ...
0
votes
1answer
102 views

How do I create a multline wxNotebook for gtk?

wxWidgets provides for notebooks with multiple lines of tabs only on Windows platforms. Is there a simple way to provide similar functionality on GTK based platforms, or am I stuck with the only ...