1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00
profanity/windows.h

90 lines
2.4 KiB
C
Raw Normal View History

2012-02-20 15:07:38 -05: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 18:08:15 -05:00
#ifndef WINDOWS_H
#define WINDOWS_h
2012-02-06 19:08:59 -05:00
#include <ncurses.h>
struct prof_win {
2012-02-08 17:46:35 -05:00
char from[100];
WINDOW *win;
};
2012-02-12 17:09:07 -05:00
// gui startup and shutdown
void gui_init(void);
void gui_refresh(void);
2012-02-12 17:09:07 -05:00
void gui_close(void);
2012-02-08 18:49:46 -05:00
// create windows
void create_title_bar(void);
2012-02-12 17:20:21 -05:00
void create_status_bar(void);
2012-02-08 18:49:46 -05:00
void create_input_window(void);
2012-02-12 17:38:27 -05:00
// title bar actions
2012-02-12 17:44:00 -05:00
void title_bar_refresh(void);
2012-02-12 17:38:27 -05:00
void title_bar_show(char *title);
2012-02-18 19:23:45 -05:00
void title_bar_title(void);
2012-02-16 19:42:41 -05:00
void title_bar_connected(void);
void title_bar_disconnected(void);
2012-02-12 17:38:27 -05:00
// main window actions
2012-02-29 19:40:51 -05:00
int win_close_win(void);
2012-02-12 17:38:27 -05:00
int win_in_chat(void);
char *win_get_recipient(void);
2012-02-12 17:38:27 -05:00
void win_show_incomming_msg(char *from, char *message);
void win_show_outgoing_msg(char *from, char *to, char *message);
2012-02-26 21:01:19 -05: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 17:38:27 -05:00
// console window actions
void cons_help(void);
void cons_bad_command(char *cmd);
2012-02-18 17:51:08 -05:00
void cons_bad_connect(void);
2012-02-19 20:42:29 -05:00
void cons_not_disconnected(void);
void cons_not_connected(void);
2012-02-18 19:17:36 -05:00
void cons_bad_message(void);
2012-02-12 17:38:27 -05:00
void cons_show(char *cmd);
2012-02-18 19:43:35 -05:00
void cons_good_show(char *cmd);
void cons_bad_show(char *cmd);
void cons_highlight_show(char *cmd);
2012-02-12 17:38:27 -05:00
2012-02-12 17:20:21 -05:00
// status bar actions
2012-02-12 17:34:31 -05:00
void status_bar_refresh(void);
2012-02-12 17:20:21 -05:00
void status_bar_clear(void);
void status_bar_get_password(void);
void status_bar_print_message(const char *msg);
2012-02-12 17:20:21 -05:00
void status_bar_inactive(int win);
void status_bar_active(int win);
void status_bar_update_time(void);
2012-02-08 18:49:46 -05:00
// input window actions
void inp_poll_char(int *ch, char *input, int *size);
2012-02-08 18:49:46 -05:00
void inp_clear(void);
2012-02-09 19:28:39 -05:00
void inp_put_back(void);
2012-02-08 18:49:46 -05:00
void inp_non_block(void);
2012-02-16 19:42:41 -05:00
void inp_block(void);
2012-02-08 18:49:46 -05:00
void inp_get_password(char *passwd);
2012-02-05 18:08:15 -05:00
#endif