Initial revision
[silc.git] / apps / silc / screen.h
1 /*
2
3   screen.h
4
5   Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
6
7   Copyright (C) 1997 - 2000 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13   
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19 */
20
21 #ifndef SCREEN_H
22 #define SCREEN_H
23
24 typedef struct {
25   char *mode;
26   char *nickname;
27   char *connection;
28   char *channel;
29 } *SilcScreenBottomLine;
30
31 typedef struct {
32   /* Status line window top of the screen */
33   WINDOW *upper_stat_line;
34
35   /* Output windows */
36   WINDOW **output_win;
37   WINDOW **output_stat_line;
38   unsigned int output_win_count;
39
40   /* Input window at the bottom of the screen */
41   WINDOW *input_win;
42   unsigned char *input_buffer;
43   unsigned int input_pos;
44   unsigned int input_end;
45   unsigned int cursor_pos;
46   int virtual_window;
47
48   /* Bottom line on screen */
49   SilcScreenBottomLine bottom_line;
50
51   /* On/off flag for insert */
52   int insert;
53
54   /* XXX */
55   struct upper_status_line {
56     char *program_name;
57     char *program_version;
58   } u_stat_line;
59
60 } SilcScreenObject;
61
62 typedef SilcScreenObject *SilcScreen;
63
64 /* Size of the input window. User can type this many characters into
65    the window. After that no more characters may be added into the 
66    window. */
67 #define SILC_SCREEN_INPUT_WIN_SIZE 1024
68
69 /* Maximum length of nickaname that will be shown on the screen */
70 #define SILC_SCREEN_MAX_NICK_LEN 16
71
72 /* Maximum length of channel name that will be shown on the screen */
73 #define SILC_SCREEN_MAX_CHANNEL_LEN 20
74
75 /* Maximum length of connection name that will be shown on the screen */
76 #define SILC_SCREEN_MAX_CONN_LEN 20
77
78 /* Macros */
79
80 /* Macro used to insert typed character into the buffer. The character
81    is not added at the end of the buffer but somewhere in between. */
82 #define SILC_SCREEN_INPUT_INSERT(__x, __y, __ch, __end) \
83 do {                                                    \
84   unsigned char __tmp[SILC_SCREEN_INPUT_WIN_SIZE + 1];  \
85   memcpy(__tmp, &(__x)[(__y)], (__end) - (__y));        \
86   (__x)[(__y)] = __ch;                                  \
87   memcpy(&(__x)[(__y) + 1], __tmp, (__end) - (__y));    \
88 } while(0)
89
90 /* Macro used to delete character from the buffer. The character
91    is not removed from the end of the buffer but somewhere in between. */
92 #define SILC_SCREEN_INPUT_DELETE(__x, __y, __end)       \
93 do {                                                    \
94   unsigned char __tmp[SILC_SCREEN_INPUT_WIN_SIZE + 1];  \
95   memcpy(__tmp, &(__x)[(__y) + 1], (__end));            \
96   memset(&(__x)[(__y)], 0, (__end) - (__y) + 1);        \
97   memcpy(&(__x)[(__y)], __tmp, strlen(__tmp));          \
98 } while(0)
99
100 /* Prototypes */
101 SilcScreen silc_screen_init();
102 WINDOW *silc_screen_create_output_window(SilcScreen screen);
103 WINDOW *silc_screen_add_output_window(SilcScreen screen);
104 void silc_screen_create_input_window(SilcScreen screen);
105 void silc_screen_init_upper_status_line(SilcScreen screen);
106 void silc_screen_init_output_status_line(SilcScreen screen);
107 void silc_screen_print_clock(SilcScreen screen);
108 void silc_screen_print_coordinates(SilcScreen screen, int win_index);
109 void silc_screen_print_bottom_line(SilcScreen screen, int win_index);
110 void silc_screen_refresh_all(SilcScreen screen);
111 void silc_screen_refresh_win(WINDOW *win);
112 void silc_screen_input_reset(SilcScreen screen);
113 void silc_screen_input_backspace(SilcScreen screen);
114 void silc_screen_input_insert(SilcScreen screen);
115 void silc_screen_input_cursor_right(SilcScreen screen);
116 void silc_screen_input_cursor_left(SilcScreen screen);
117 void silc_screen_input_cursor_home(SilcScreen screen);
118 void silc_screen_input_cursor_end(SilcScreen screen);
119 void silc_screen_input_print(SilcScreen screen, unsigned char c);
120 void silc_screen_input_print_prompt(SilcScreen screen, char *prompt);
121
122 #endif