473,416 Members | 1,541 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,416 software developers and data experts.

Searching for a working example of a curses application that resizes in xterm

Hi together,

can someone provide an example of a curses application that works in a
xterm that can be resized?

I could not find any working example yet...

Thanks in advance,
Sebastian 'Schwerdy' Schwerdhöfer

Sep 19 '05 #1
4 4101
Am Mon, 19 Sep 2005 03:40:38 -0700 schrieb schwerdy:
Hi together,

can someone provide an example of a curses application that works in a
xterm that can be resized?

I could not find any working example yet...


Hi,

You should find this in the C source of "mutt" or "less".

HTH,
Thomas
--
Thomas Güttler, http://www.thomas-guettler.de/
E-Mail: guettli (*) thomas-guettler + de
Spam Catcher: ni**************@thomas-guettler.de

Sep 19 '05 #2
sc******@web.de wrote:
can someone provide an example of a curses application that works in a
xterm that can be resized?


googling for "python sigwinch curses" brings up a considerable
number of related stuff, including

http://dbforums.com/archive/97/2002/07/4/439799

and

http://groups.google.com/group/comp....fa595d97e90040

and a couple of related bug reports and discussions about why
they're not bugs, plus the source code for a couple of curses-
based Python programs.

</F>

Sep 19 '05 #3
On 2005-09-19, sc******@web.de <sc******@web.de> wrote:
can someone provide an example of a curses application that works in a
xterm that can be resized?


I'm afraid I can't post the entire program, but what you need
to do is to catch the WINCH signal and set a flag which is
checked by your main "event" loop and handled. Here's the
basic C code:

static void sigwinchHandler(int sig)
{
(void) sig;
sigwinchReceived = 1;
}

static void clipWindows(void)
{
tCh *ch;
int x,y,rows,cols;

for (ch = chlist; ch != NULL; ch = ch->next)
{
getbegyx(ch->win,y,x);
getmaxyx(ch->win,rows,cols);
clipwin(&rows,&cols,&y,&x);
moveWindow(ch,rows,cols,y,x);
}
}
main()
{
[...]
sigact.sa_handler = sigwinchHandler;
s = sigaction(SIGWINCH, &sigact, NULL);
assert(s==0);
// start up curses
while (1)
{
// do stuff
if (sigwinchReceived)
{
struct winsize size;
if (ioctl(fileno(stdout), TIOCGWINSZ, &size) == 0)
{
resizeterm(size.ws_row, size.ws_col);
clipWindows();
}
sigwinchReceived = 0;
}
}
}

--
Grant Edwards grante Yow! If I am elected no
at one will ever have to do
visi.com their laundry again!
Sep 19 '05 #4
Thanks, but I had already read these discussions (hope the grammar is
correct...), and thought I understood them. But my exact problem: If I
resize a xterm, in most cases curses prints crap (if it does not crash
python). And I could not find any python-curses application that is
displayed correctly after a terminal resize.

I hope nobody will kill me, 'cause I'm a spammer; here is my example:

------
import curses

def gettermres():
"""
returns the current terminal size in columns and lines
"""
import struct, fcntl, sys, termios
lines, cols = struct.unpack("HHHH",
fcntl.ioctl(sys.stdout.fileno(),termios.TIOCGWINSZ , struct.pack("HHHH",
0, 0, 0, 0)))[:2]
return cols, lines

def splitwin(scr, extend1, axis=0, isPercent=True,
useFullScreen=False):
"""
splits the scr in 2 windows and return both
extend1 is the size of the first window
axis=0 --> split horizontal
axis=1 --> split vertical
if isPercent is False, extend1 will be interpreted as absolut size
"""
if isPercent and not 0 < extend1 < 100:
raise "extend1 must be between 0 and 100"
if not axis in (0,1):
raise "axis must be 0 or 1"

if useFullScreen:
res = [0,0]
res[1], res[0] = gettermres()
pos = (0,0)
else:
res = scr.getmaxyx()
pos = scr.getbegyx()

size1 = list(res)
size2 = list(res)

if isPercent:
totallen = float(res[axis])
size1[axis] = int( totallen*extend1 / 100 )
else:
size1[axis] = extend1

size2[axis] = res[axis] - size1[axis]
start1 = list(pos)
start2 = list(pos)
start2[axis] = size1[axis]

win1 = curses.newwin(size1[0], size1[1], start1[0], start1[1])
win2 = curses.newwin(size2[0], size2[1], start2[0], start2[1])

return win1, win2

def startcurses(stdscr):
curses.use_default_colors() # transparency
curses.init_pair(2, curses.COLOR_GREEN, -1)

while 1:
curses.setupterm()
winTop, winBottom = splitwin(stdscr, 80, useFullScreen=True)
winLeft, winRight = splitwin(winTop, 50, 1)
winLeft.border()
winLeft.noutrefresh()
winRight.border()
winRight.addstr(1,1,"hallo", curses.color_pair(2))
winRight.noutrefresh()
winBottom.border()
winBottom.noutrefresh()
curses.doupdate()
k = winLeft.getch()
if k == ord('q'):
break

curses.wrapper(startcurses)
------

Sep 20 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Brian | last post by:
Hello; I'm writing a program with curses in python and having a bit of trouble understanding how to use unittest. So far, I have used testing successfully -- as long as the report goes to stdout...
0
by: Matt Garman | last post by:
I'd like to write a class or module in python that allows me to do on-the-fly color changing in the curses module. I'm thinking about something along the lines of this: addstr(y, x, 'hello',...
3
by: harold fellermann | last post by:
Hi all, I want to use curses in a server application that provides a GUI for telnet clients. Therefore, I need the functionality to open and handle several screens. Concerning...
0
by: Rob Thomas | last post by:
Hey guys, Having a problem with a script using the curses module... It works fine if I start it like so: screen python script.py However, if I want to start it in detached mode (i restart...
30
by: Ian Ward | last post by:
When I run the following code in a terminal with the encoding set to UTF-8 I get garbage on the first line, but the correct output on the second. import curses s = curses.initscr()...
1
by: Jerry Fleming | last post by:
Hi, I have wrote a game with python curses. The problem is that I want to confirm before quitting, while my implementation doesn't seem to work. Anyone can help me? #!/usr/bin/python # #...
1
by: Nick ! | last post by:
Chris Share <usenet at caesium.me.ukwrote: http://web.cs.mun.ca/~rod/ncurses/ncurses.html#xterm says "The ncurses library does not catch signal, because it cannot in general know how you want...
0
by: skip | last post by:
I have a fairly simple curses app which is giving me this error: addstr() returned ERR I'm trapping it and continuing. I can see that *some* of my addstring calls succeed. This one happens...
1
by: Michael Goerz | last post by:
Hi, I'm trying to print out text in color. As far as I know, curses is the only way to do that (or not?). So, what I ultimately want is a curses terminal that behaves as closely as possible as a...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.