Jeremy Moles <[EMAIL PROTECTED]> writes:
> Basically what I'm looking for is a way to refresh a portion of a
> curses-controlled "window" without affecting the current location of the
> cursor or having to manually move it and move it back.
Have you looked into using curses window feature?
On 2005-11-29, Greg Ewing <[EMAIL PROTECTED]> wrote:
> Christopher Subich wrote:
>
>> Why not wrap your 1-3 in a function of your own?
>
> It sounds like the OP is concerned about the visual effect of
> the cursor moving on the screen while characters are written.
>
> I doubt whether curses provide
Christopher Subich wrote:
> Why not wrap your 1-3 in a function of your own?
It sounds like the OP is concerned about the visual effect
of the cursor moving on the screen while characters are
written.
I doubt whether curses provides any way of controlling
that. Curses was designed for glass ttys
Jeremy Moles wrote:
>>In article <[EMAIL PROTECTED]>,
>> Jeremy Moles <[EMAIL PROTECTED]> wrote:
>>>I have a focus "wheel" of sorts that allows the user to do input on
>>>various wigets and windows and whatnot. However, if I want to quickly
>>>call addstr somewhere else in the application I have to
On Tue, 2005-11-29 at 20:50 +, Tony Nelson wrote:
> In article <[EMAIL PROTECTED]>,
> Jeremy Moles <[EMAIL PROTECTED]> wrote:
>
> > I'm working on a project using ncurses w/ Python. As an aside, I
> > implemented addchstr in the cursesmodule.c file in Python SVN, if anyone
> > wants me to try
In article <[EMAIL PROTECTED]>,
Jeremy Moles <[EMAIL PROTECTED]> wrote:
> I'm working on a project using ncurses w/ Python. As an aside, I
> implemented addchstr in the cursesmodule.c file in Python SVN, if anyone
> wants me to try and get that made permanent.
>
> AT ANY RATE...
>
> I was wonde
I'm working on a project using ncurses w/ Python. As an aside, I
implemented addchstr in the cursesmodule.c file in Python SVN, if anyone
wants me to try and get that made permanent.
AT ANY RATE...
I was wondering--and this is more a general curses question rather than
a Python one, but I know th