Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
771 views

Hiding Vertical Scrollbar in wx.TextCtrl

I have a wx.TextCtrl that I am using to represent a display with a fixed number of character rows and columns. I would like to hide the vertical scrollbar that is displayed to the right of the text ...
2
votes
1answer
1k views

Easy way to get a wxTextCtrl click event?

Is there an easy way to handle when a user clicks on a wxTextCtrl? After reading the docs wxTextCtrl I see that there isn't a click or double click event. I understand that there is no such thing as ...
1
vote
2answers
87 views

How to get chars that are actually displayed in wx.TextCtrl?

I am trying to underline some specific words in single line wx.textctrl. I'm doing it by calculating position of a word in the control using GetTextExtent and drawing lines using wx.ClintDC. My ...
1
vote
1answer
381 views

Why is wxTextCtrl so slow at displaying text?

I have a wxTextCtrl and I need to put a very large string into it. (Like a 15 MB string) The only problem is it's very slow. Here is what I'm doing: char * buff = ... wxString data(buff, wxConvUTF8); ...
0
votes
1answer
75 views

Making a Ctrl-F Feature for wx.TextCtrl

I'm attempting to make a Ctrl-F (find) feature for a wx.TextCtrl widget. However I'm unsure of how to highlight certain indexes/phrases. How would I go about this?
0
votes
1answer
215 views

wx.TreeCtrl item

I'm trying to use a TreeCtrl to represent a folder structure. For each folder I need to know it's absolute path and name. I'm currently doing something like this: self.root = ...
0
votes
1answer
88 views

wxpython RichtextCtrl event bindings on buttons/images

Just wondering whether there is any provision/method to bind clicks on images/(or include a button) to result into some events. Also is there any kind of way to draw a StaticLine kind of thing in a ...
0
votes
2answers
293 views

Event when cursor changes position wxWidgets Text Box?

In wxWidgets, how can I detect when the cursor position changed in a wxTextCtrl? I looked at the manual and couldn't find any event relating to it, but maybe there is another way I've missed.
0
votes
1answer
502 views

C++ Event (Focus) Handling

Due to comments I added the following code (in BasicPanel) Connect(CTRL_ONE, wxEVT_KILL_FOCUS, (wxObjectEventFunction)&BasicPanel::OnKillFocus); Connect(CTRL_TWO,wxEVT_KILL_FOCUS, ...
0
votes
2answers
326 views

How to receive drop events in a wxTextCtrl?

I have a wxTextCtrl-derived class that overrides OnDropFiles. However, dragging something over the control does nothing. (The cursor changes to the 'not allowed' cursor.) I tried DragAcceptFiles(true) ...