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

89 lines
2.4 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>
struct prof_win {
2012-02-08 22:46:35 +00:00
char from[100];
WINDOW *win;
};
2012-02-12 22:09:07 +00:00
// gui startup and shutdown
void gui_init(void);
void gui_refresh(void);
2012-02-12 22:09:07 +00:00
void gui_close(void);
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-02-12 22:38:27 +00:00
void title_bar_show(char *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-02-12 22:38:27 +00:00
void win_show_incomming_msg(char *from, char *message);
void win_show_outgoing_msg(char *from, char *to, char *message);
2012-02-27 02:01:19 +00:00
void win_handle_switch(int *ch);
void win_contact_online(char *from, char *show, char *status);
void win_contact_offline(char *from, char *show, char *status);
2012-02-12 22:38:27 +00:00
// console window actions
void cons_help(void);
void cons_bad_command(char *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-02-12 22:38:27 +00:00
void cons_show(char *cmd);
2012-02-19 00:43:35 +00:00
void cons_bad_show(char *cmd);
void cons_highlight_show(char *cmd);
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);
void status_bar_print_message(const char *msg);
2012-02-12 22:20:21 +00:00
void status_bar_inactive(int win);
void status_bar_active(int win);
void status_bar_update_time(void);
2012-02-08 23:49:46 +00:00
// input window actions
void inp_poll_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-02-05 23:08:15 +00:00
#endif