The textctrl tag has no wiki summary.
0
votes
1answer
26 views
wxpython TextCtrl color specific part of the text
I'm using wxpython to create GUI with python, now, is there a way to color specific part of the text?
Example (using Tkinter):
http://i.stack.imgur.com/fGAVA.png
Here is my Print function:
def ...
0
votes
0answers
11 views
how to add text in composite shape when double clicking it
I want to double click a composite shape to add textCtrl on it, but when I double click the composite shape, it do nothing, it can't response to the double click event. Can you help me to solve this?
...
0
votes
0answers
29 views
How to make double click event right in textCtrl
I have a problem when using textCtrl.
I want to realize a function that when I double click a shape, there would be a textCtrl and you can input text in it, and after the 'enter' key down, textCtrl ...
0
votes
0answers
26 views
WxPerl Wx::TextCtrl GetValue() buffer overflow in ComPort.pm
I'm trying to send a string read from a TextCtrl in a WxPerl app to the COM port of my computer to control a video projector by RS232.
The problem occurs when I write the value (I know that it's a ...
0
votes
1answer
35 views
How to handle wxPython TextCtrls that influence each other's content
I am trying to build a GUI in wxPython. I have two TextCtrls. Let's say they are first_index_input and last_index_input, and they control model.f_i and model.l_i, respectively. There's a condition: ...
0
votes
1answer
61 views
Can't edit TextCtrl built from other function than __init__ (wxPython)
I have trouble with editing, inputting to or even clicking a TextCtrl or actually any other widget that is not built in the init function.
Let's say I have this bit:
class firstpanel(wx.Panel):
...
2
votes
3answers
280 views
wxPython - wx.TextCtrl - forcing styles
just a simple question on a wx.TextCtrl element.
i have this text field where on an application, where the user can add a string on it.
i want a text field with a red text on it.
so i've generated ...
0
votes
1answer
125 views
Validating a URL in a TextCtrl - Python/wxPython
I'm creating a simple application and for one portion I would like to take the user's input from a TextCtrl and check if it is a valid URL. I've made this program without a GUI and used the following ...
0
votes
1answer
45 views
How can I get the position of the entered char?
I have a application which ask the user for a input (wx Python). I want to control what is inside the TextCtrl so I added the event: wx.EVT_CHAR. The function work properly except that I want the ...
0
votes
1answer
371 views
wxPython: Put wx.TE_PROCESS_ENTER on Masked TextCtrl
Searching on google and I found that is impossible to using wx.TE_PROCESS_ENTER on masked TextCtrl, I try it myself to set style=wx.TE_PROCESS_ENTER then bind it with wx.EVT_TEXT_ENTER, but nothing ...
1
vote
2answers
202 views
wxPython: How to make a TextCtrl not fill the whole panel?
I have a panel containing a button as well as another panel which itself contains a textCtrl. I have a panel just for the textctrl because I am trying to have a custom border color around the ...
0
votes
1answer
351 views
how to make key event wxpython in textctrl?
here is my code
python 2.7 & wxpython 2.8
http://pastie.org/4248326
these 3 textctrl, at the chat_c(textctrl)
i want to make chat_c and text_c like a chatting room
input is chat_c output is ...
0
votes
1answer
163 views
Autodetect file or folder path in wx.TextCtrl
Is there a mechanism that detects (highlight and generate mouse event) a file or a folder path in a wx.TextCtrl?
A similar mechanism exists for URL detection (using style = wx.TE_AUTO_URL with ...
0
votes
1answer
148 views
wxPython TextCtrl auto detect file/folder path [closed]
Is there a mechanism that detects (highlight and generate mouse event) a file or a folder path in a wx.TextCtrl?
A similar mechanism exists for URL detection (using style = wx.TE_AUTO_URL with ...
2
votes
1answer
183 views
Remove last character from wxPython wxTextCtrl?
I am trying to remove the very last character from a TextCtrl object in wxPython. I'm using wxPython 2.8.12 and Python 2.7.2.
My code is as follows:
def btnBkClicked(self, e):
...
0
votes
1answer
881 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=" ...
1
vote
1answer
179 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
175 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 ...
1
vote
2answers
508 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 ...
0
votes
1answer
445 views
wxPython - capturing shell output in a textctrl widget?
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 create a database of my ...
1
vote
1answer
171 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 ...
2
votes
1answer
1k 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
131 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)
{
...
2
votes
1answer
744 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 ...
0
votes
1answer
339 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 ...
1
vote
3answers
670 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 ...
0
votes
2answers
307 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
281 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, ...
2
votes
2answers
4k 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):
...
8
votes
2answers
5k views
2
votes
3answers
2k 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?
1
vote
2answers
1k 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
3answers
693 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 - Unicode U+00B0 (which incidentally breaks the ...
0
votes
2answers
3k 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 ...


