|
NetSurf
|
#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <limits.h>#include <unistd.h>#include <string.h>#include <stdlib.h>#include <stdbool.h>#include <assert.h>#include <math.h>#include "utils/log.h"#include "netsurf/mouse.h"#include "netsurf/plotters.h"#include "atari/gui.h"#include "atari/statusbar.h"#include "atari/rootwin.h"#include "atari/misc.h"#include "atari/res/netsurf.rsh"#include "atari/plot/plot.h"#include "atari/osspec.h"Go to the source code of this file.
Functions | |
| CMP_STATUSBAR | sb_create (struct gui_window *gw) |
| void | sb_destroy (CMP_STATUSBAR s) |
| void | sb_attach (CMP_STATUSBAR sb, struct gui_window *gw) |
| void | sb_set_text (CMP_STATUSBAR sb, const char *text) |
| void sb_attach | ( | CMP_STATUSBAR | sb, |
| struct gui_window * | gw | ||
| ) |
Definition at line 215 of file statusbar.c.
References s_statusbar::aes_win, s_statusbar::attached, gui_window::root, and s_gui_win_root::win.
Referenced by window_open().
| CMP_STATUSBAR sb_create | ( | struct gui_window * | gw | ) |
Definition at line 199 of file statusbar.c.
References s_statusbar::attached, and sb_set_text().
Referenced by window_create().
| void sb_destroy | ( | CMP_STATUSBAR | s | ) |
Definition at line 207 of file statusbar.c.
References NSLOG.
Referenced by window_destroy().
| void sb_set_text | ( | CMP_STATUSBAR | sb, |
| const char * | text | ||
| ) |
Definition at line 221 of file statusbar.c.
References s_statusbar::aes_win, s_statusbar::attached, STATUSBAR_MAX_SLEN, text(), s_statusbar::text, and s_statusbar::textlen.
Referenced by sb_create(), and window_set_stauts().