1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00
profanity/windows.h

103 lines
3.0 KiB
C
Raw Normal View History

2012-02-20 20:07:38 +00:00
/*
* windows.h
*
* Copyright (C) 2012 James Booth <boothj5@gmail.com>
*
* This file is part of Profanity.
*
* Profanity is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Profanity is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
*
*/
2012-02-05 23:08:15 +00:00
#ifndef WINDOWS_H
#define WINDOWS_h
2012-02-07 00:08:59 +00:00
#include <ncurses.h>
2012-03-08 23:03:26 +00:00
#include "contact_list.h"
2012-02-07 00:08:59 +00:00
struct prof_win {
2012-02-08 22:46:35 +00:00
char from[100];
WINDOW *win;
2012-03-05 00:06:24 +00:00
int y_pos;
int paged;
};
2012-04-17 22:28:21 +00:00
// gui startup and shutdown, resize
2012-02-12 22:09:07 +00:00
void gui_init(void);
void gui_refresh(void);
2012-02-12 22:09:07 +00:00
void gui_close(void);
2012-04-17 22:28:21 +00:00
void gui_resize(const int ch, const char * const input,
const int size);
2012-02-12 22:09:07 +00:00
2012-02-08 23:49:46 +00:00
// create windows
void create_title_bar(void);
2012-02-12 22:20:21 +00:00
void create_status_bar(void);
2012-02-08 23:49:46 +00:00
void create_input_window(void);
2012-02-12 22:38:27 +00:00
// title bar actions
2012-02-12 22:44:00 +00:00
void title_bar_refresh(void);
2012-04-20 00:38:04 +00:00
void title_bar_redraw(void);
2012-03-09 01:06:55 +00:00
void title_bar_show(const char * const title);
2012-02-19 00:23:45 +00:00
void title_bar_title(void);
2012-02-17 00:42:41 +00:00
void title_bar_connected(void);
void title_bar_disconnected(void);
2012-02-12 22:38:27 +00:00
// main window actions
2012-03-01 00:40:51 +00:00
int win_close_win(void);
2012-02-12 22:38:27 +00:00
int win_in_chat(void);
char *win_get_recipient(void);
2012-03-09 01:06:55 +00:00
void win_show_incomming_msg(const char * const from, const char * const message);
void win_show_outgoing_msg(const char * const from, const char * const to,
const char * const message);
2012-03-10 20:46:30 +00:00
void win_handle_special_keys(const int * const ch);
2012-03-05 00:06:24 +00:00
void win_page_off(void);
2012-03-09 01:06:55 +00:00
void win_contact_online(const char * const from, const char * const show,
const char * const status);
void win_contact_offline(const char * const from, const char * const show,
const char * const status);
void win_disconnected(void);
2012-02-12 22:38:27 +00:00
// console window actions
void cons_help(void);
2012-03-09 01:06:55 +00:00
void cons_bad_command(const char * const cmd);
2012-02-18 22:51:08 +00:00
void cons_bad_connect(void);
2012-02-20 01:42:29 +00:00
void cons_not_disconnected(void);
void cons_not_connected(void);
2012-02-19 00:17:36 +00:00
void cons_bad_message(void);
2012-03-09 01:06:55 +00:00
void cons_show(const char * const cmd);
void cons_bad_show(const char * const cmd);
void cons_highlight_show(const char * const cmd);
void cons_show_online_contacts(struct contact_node_t * list);
2012-02-12 22:38:27 +00:00
2012-02-12 22:20:21 +00:00
// status bar actions
2012-02-12 22:34:31 +00:00
void status_bar_refresh(void);
2012-02-12 22:20:21 +00:00
void status_bar_clear(void);
void status_bar_get_password(void);
2012-03-09 01:06:55 +00:00
void status_bar_print_message(const char * const msg);
void status_bar_inactive(const int win);
void status_bar_active(const int win);
void status_bar_new(const int win);
2012-02-12 22:20:21 +00:00
void status_bar_update_time(void);
2012-02-08 23:49:46 +00:00
// input window actions
2012-03-10 20:46:30 +00:00
void inp_get_char(int *ch, char *input, int *size);
2012-02-08 23:49:46 +00:00
void inp_clear(void);
2012-02-10 00:28:39 +00:00
void inp_put_back(void);
2012-02-08 23:49:46 +00:00
void inp_non_block(void);
2012-02-17 00:42:41 +00:00
void inp_block(void);
2012-02-08 23:49:46 +00:00
void inp_get_password(char *passwd);
2012-04-17 22:28:21 +00:00
void inp_win_write(const char * const new_input, const int size);
2012-02-08 23:49:46 +00:00
2012-02-05 23:08:15 +00:00
#endif