Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
2k views

Change the colour of a StaticText, wxPython

I need to make a StaticText red, what should I use?
2
votes
1answer
308 views

preventing newline after wxpython TextCtrl.WriteText()

I have a shell-like console for my app, which prompts with ">>>" after every command. The problem is every time I have my shell WriteText(">>> "), it also appends a new line. The user can backspace up ...
1
vote
1answer
52 views

Deleting lines from the middle of a TextCtrl

I need to delete X lines from the middle of a textctrl starting from line number Y Is there any easy way to do this? I can't see one: it seems like I have to somehow search through the contents of ...
1
vote
2answers
100 views

wxpython textctrl How to find out where the text pointer is

I need to know where the text pointer (blinking line) is in the textctrl. I would also like to know if it is possible to get the entire line that the pointer is on, or if I would just have to write ...
1
vote
1answer
64 views

Python textctrl setstyle cannot read the insertionpoint correctly

I am using python textctrl in a GUI I wrote. After I read several files, I post the contents of the file in textctrl. Since they are all in similar format, I tried to color the first several ...
1
vote
3answers
267 views

How to pass UTF-8 string from wx.TextCtrl to wx.ListCtrl

If I enter Baltic characters in textctrl and click button test1 I have an error "InicodeEncodeError: 'ascii' codec can't encode characters in position 0-3: ordinal not in ...
1
vote
2answers
879 views

wxPython TextCtrl transform to UPPERCASE

I was looking for a way to transform text entered into the textctrl field to uppercase. I tried using a validator and transforming the value of the key event object to the uppercase letter char value ...
0
votes
1answer
53 views

wxPython: How to change the font color in textctrl with a checkbox?

I have some checkboxes like this self.myCB = wx.CheckBox(panel, id=02, label="someString", pos=(20, 25)) behind every checkbox there's a textctrl like this self.myTC = wx.TextCtrl(panel, value=" ...
0
votes
1answer
51 views

wxpython textctrl doesn't write when bound

I have been working on a simple textctrl project to get more acquainted with wxpython and I have hit a small road block. I am making a simple code editor, and I am currently working on the syntax ...
0
votes
1answer
112 views

wxPython - capturing shell output in a textctrl widget?

please bear with me, I'm learning python and wxPython at the same time... :) So, I have a set of python files that run fine from the command line: ./scan -d test ~/Pictures -- for instance will ...
0
votes
0answers
101 views

wxpython: wx.TextCtrl.HitTest() strange behavior

I have a function that determines whether the last line of text in a multi-line text control is visible (or if the user has scrolled up, hiding the last line from view) def lastlinevisible(self): ...
0
votes
1answer
165 views

Changing the font on a wxPython TextCtrl widget

I'd like to set the font of a wx.TextCtrl widget to Consolas, or at least another monospaced font. How would I go about this?
0
votes
2answers
94 views

Getting word under caret - C++, wxWidgets

I am writing a text editor using the wxWidgets framework. I need to get the word under caret from the text control. Here is what I came up with. static bool IsWordBoundary(wxString& text) { ...
0
votes
1answer
161 views

wxPython: TextCtrl problem

I am trying to build my first wx application I have a browse button in my panel, the user adds his file. i do some processing on the file. Now i want to show the information in a TextCtrl so that the ...
0
votes
2answers
195 views

Dynamic suggestions for text ctrl in wxPython?

Is there any way to mimic the dynamic suggestions behavior as per the search field on Google? As in, I type something in a text ctrl, and a list of suggestions pops up below for the user to chose ...
0
votes
1answer
160 views

How can I fix the scroll bug when using Windows rich edit controls in wxpython?

When using wx.TextCtl with the wx.TE_RICH2 option in windows, I get this strange bug with the auto-scroll when using the AppendText function. It scrolls so that all the text is above the visible area, ...
0
votes
2answers
814 views

Getting String from A TextCtrl Box

I cannot seem to grasp how I would get the strings from a text Ctrl box. I am very new to this, so any help is greatly appricated. Here is the practic code: import wx class citPanel(wx.Panel): ...
0
votes
3answers
1k views

Is it possible to limit TextCtrl to accept numbers only in wxPython?

I want to have a text control that only accepts numbers. (Just integer values like 45 or 366) What is the best way to do this?
0
votes
2answers
474 views

How do I safely decode a degrees symbol in a wxPython app?

I have a debug app I've been writing which receives data from a C-based process via UDP. One of the strings sent to me contains a '°' character - http://en.wikipedia.org/wiki/Degree_symbol">Unicode ...
0
votes
2answers
2k views

How do I get the scroll position / range from a wx.TextCtrl control in wxPython

I have a little logging app (written in wxPython) that receives data from a bit of kit we're developing, and I want to display the text in a scrolling window. As it stands I'm using a wx.TextCtrl for ...