Updates soft labels on the virtual and physical screens.
#include <curses.h>
slk_refresh()
The slk_refresh subroutine refreshes the virtual and physical screens after an update to soft function-key labels. These labels appear at the bottom of the screen and give applications, such as editors, a more user-friendly look.
To set and left-justify the soft labels and then refresh the physical screen, use:
slk_init(0); initscr(); slk_set(1, "Insert", 0); slk_set(2, "Quit", 0); slk_set(3, "Add", 0); slk_set(4, "Delete", 0); slk_set(5, "Undo", 0); slk_set(6, "Search", 0); slk_set(7, "Replace", 0); slk_set(8, "Save", 0); slk_refresh();
This subroutine is part of Base Operating System (BOS) Runtime.
The slk_init routine subroutine, slk_set routine subroutine, slk_noutrefresh subroutine.
Curses Overview for Programming, List of Curses Subroutines, Manipulating Video Attributes in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.