~ubuntu-branches/ubuntu/natty/ncurses/natty

« back to all changes in this revision

Viewing changes to man/menu_post.3x

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-05-17 09:00:42 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517090042-86fgxrr6j5jzagot
Tags: 5.6-0ubuntu1
* New upstream version.
  - Remove patches applied upstream: ncurses.upstream, signed-chars.
  - Update patches: debian-backspace.
* Build-depend on g++-multilib instead of lib{32,64}c*-dev-*.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
'\" t
2
2
.\"***************************************************************************
3
 
.\" Copyright (c) 1998 Free Software Foundation, Inc.                        *
 
3
.\" Copyright (c) 1998,2006 Free Software Foundation, Inc.                   *
4
4
.\"                                                                          *
5
5
.\" Permission is hereby granted, free of charge, to any person obtaining a  *
6
6
.\" copy of this software and associated documentation files (the            *
27
27
.\" authorization.                                                           *
28
28
.\"***************************************************************************
29
29
.\"
30
 
.\" $Id: menu_post.3x,v 1.7 1998/11/29 01:10:33 Rick.Ohnemus Exp $
 
30
.\" $Id: menu_post.3x,v 1.9 2006/11/04 17:12:00 tom Exp $
31
31
.TH menu_post 3X ""
32
32
.SH NAME
33
33
\fBmenu_post\fR - write or erase menus from associated subwindows
43
43
trigger physical display of the subwindow, use \fBrefresh\fR or some equivalent
44
44
\fBcurses\fR routine (the implicit \fBdoupdate\fR triggered by an \fBcurses\fR
45
45
input request will do). \fBpost_menu\fR resets the selection status of all items.
46
 
 
 
46
.PP
47
47
The function \fBunpost_menu\fR erases menu from its associated subwindow.
48
48
.SH RETURN VALUE
49
49
These routines return one of the following:
50
50
.TP 5
51
 
\fBE_OK\fR
 
51
.B E_OK
52
52
The routine succeeded.
53
53
.TP 5
54
 
\fBE_SYSTEM_ERROR\fR
 
54
.B E_SYSTEM_ERROR
55
55
System error occurred (see \fBerrno\fR).
56
56
.TP 5
57
 
\fBE_BAD_ARGUMENT\fR
 
57
.B E_BAD_ARGUMENT
58
58
Routine detected an incorrect or out-of-range argument.
59
59
.TP 5
60
 
\fBE_POSTED\fR
 
60
.B E_POSTED
61
61
The menu has already been posted.
62
62
.TP 5
63
 
\fBE_BAD_STATE\fR
 
63
.B E_BAD_STATE
64
64
Routine was called from an initialization or termination function.
65
65
.TP 5
66
 
\fBE_NO_ROOM\fR
 
66
.B E_NO_ROOM
67
67
Menu is too large for its window. You should consider to use
68
68
\fBset_menu_format()\fR to solve the problem.
69
69
.TP 5
70
 
\fBE_NOT_POSTED\fR
 
70
.B E_NOT_POSTED
71
71
The menu has not been posted.
72
72
.TP 5
73
 
\fBE_NOT_CONNECTED\fR
 
73
.B E_NOT_CONNECTED
74
74
No items are connected to the menu.
75
75
.SH SEE ALSO
76
76
\fBcurses\fR(3X), \fBmenu\fR(3X).