From b7b9794839f9b7d1ecf9690a8bf87132f069d50c Mon Sep 17 00:00:00 2001 From: David Skoland Date: Mon, 6 Feb 2017 22:22:03 +0100 Subject: implemented sending IC messages --- courtroom.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'courtroom.h') diff --git a/courtroom.h b/courtroom.h index 09200f39..8e880bff 100644 --- a/courtroom.h +++ b/courtroom.h @@ -123,6 +123,10 @@ private: //cid and this may differ in cases of ini-editing QString current_char = ""; + int objection_state = 0; + int realization_state = 0; + int text_color = 0; + int current_emote_page = 0; int current_emote = 0; const int max_emotes_on_page = 10; @@ -246,7 +250,15 @@ private slots: void chat_tick(); + void on_chat_return_pressed(); + void on_ooc_return_pressed(); + + void on_emote_clicked(int p_id); + + void on_emote_left_clicked(); + void on_emote_right_clicked(); + void on_ooc_toggle_clicked(); void on_witness_testimony_clicked(); -- cgit