about summary refs log tree commit diff stats
path: root/src/ui/window.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-10-06 17:46:22 +0100
committerJames Booth <boothj5@gmail.com>2013-10-06 17:46:22 +0100
commitfc8982e7616ae1e0086acedef1b7e223ba68757c (patch)
treef25b9b47f9aa1b25ef5bd84e7b7dc96993c4512e /src/ui/window.h
parent3cc080b06acc2e2e35bbdad6dedcac008b46ee02 (diff)
downloadprofani-tty-fc8982e7616ae1e0086acedef1b7e223ba68757c.tar.gz
Added muc_window
Diffstat (limited to 'src/ui/window.h')
-rw-r--r--src/ui/window.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ui/window.h b/src/ui/window.h
index 2eec3b01..5f8a0e36 100644
--- a/src/ui/window.h
+++ b/src/ui/window.h
@@ -64,5 +64,7 @@ typedef struct prof_win_t {
 
 ProfWin* win_create(const char * const title, int cols, win_type_t type);
 void win_free(ProfWin *window);
+void win_print_line(ProfWin *self, const char * const msg, ...);
+void win_refresh(ProfWin *self);
 
 #endif
*/ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
void sends_room_join(void **state);
void sends_room_join_with_nick(void **state);
void sends_room_join_with_password(void **state);
void sends_room_join_with_nick_and_password(void **state);
void shows_role_and_affiliation_on_join(void **state);
void shows_subject_on_join(void **state);
void shows_history_message(void **state);
void shows_occupant_join(void **state);
void shows_message(void **state);
void shows_me_message_from_occupant(void **state);
void shows_me_message_from_self(void **state);
void shows_all_messages_in_console_when_window_not_focussed(void **state);
void shows_first_message_in_console_when_window_not_focussed(void **state);
void shows_no_message_in_console_when_window_not_focussed(void **state);