[ Previous | Next | Table of Contents | Index | Library Home | Legal | Search ]

Technical Reference: Base Operating System and Extensions , Volume 2


slk_noutrefresh Subroutine

Purpose

Updates the soft labels on the virtual screen.

Library

Curses Library (libcurses.a)

Syntax

#include <curses.h>

slk_noutrefresh()

Description

The slk_noutrefresh subroutine updates the soft function-key labels on the virtual screen. These labels appear at the bottom of the screen and give applications, such as editors, a more user-friendly look. This subroutine is useful for updating multiple labels. You can use the slk_noutrefresh subroutine to update all soft labels on the virtual screen with no updates to the physic al screen. To update the physical screen, use the slk_refresh or refresh subroutine.

Example

To refresh soft label 8 on the virtual screen but not on the physical screen, use:

slk_set(8, "Insert", 1);
slk_noutrefresh();

Implementation Specifics

This subroutine is part of Base Operating System (BOS) Runtime.

Related Information

The slk_init (slk_init Subroutine) subroutine, slk_refresh (slk_refresh Subroutine) subroutine, wrefresh (refresh or wrefresh Subroutine) subroutine.

Curses Overview for Programming, Manipulating Video Attributes, List of Curses Subroutines in AIX 5L Version 5.1 General Programming Concepts: Writing and Debugging Programs.


[ Previous | Next | Table of Contents | Index | Library Home | Legal | Search ]