File: draw.h

package info (click to toggle)
slmon 0.4.1-2.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 384 kB
  • ctags: 130
  • sloc: perl: 1,329; ansic: 921; sh: 387; makefile: 54
file content (36 lines) | stat: -rw-r--r-- 759 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36

/*
 * slmon
 *
 * Copyright (C) 2000 Krzysztof Luks <m00se@iq.pl>
 *
 * This program is based on WMMon.app.
 *
 * WMMon.app is copyright (c) 1997, 1998 by Martijn Pieterse and
 * Antoine Nulle.
 *
 * This program is distributed under the GPL license. For details see
 * COPYING text.
 *
 * Author: Krzysztof Luks <m00se@iq.pl>
 *
 */

#include "defines.h"
#include "stat.h"

#ifdef HAVE_SLANG
void init_slang(void);
#endif
void draw_gauge(int row, int col, int value, char *caption);
#ifdef HAVE_SLANG
void draw_status(void);
void draw_histogram(char *caption);
void draw_histogram_value(int value, int pos);
void clear_histogram(void);
#endif
void print_mem(int r, int c);
#ifdef HAVE_SLANG
void print_keys(int mode);
#endif
void print_ldavg(int r, int c);