diff options
| author | David Skoland <davidskoland@gmail.com> | 2017-02-06 22:22:03 +0100 |
|---|---|---|
| committer | David Skoland <davidskoland@gmail.com> | 2017-02-06 22:22:03 +0100 |
| commit | b7b9794839f9b7d1ecf9690a8bf87132f069d50c (patch) | |
| tree | 22d6e532a5a42655479df628f3d36e11d9c0291b /courtroom.h | |
| parent | ea09ad9dfc8accf30934b573dba486eb1e932160 (diff) | |
implemented sending IC messages
Diffstat (limited to 'courtroom.h')
| -rw-r--r-- | courtroom.h | 12 |
1 files changed, 12 insertions, 0 deletions
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(); |
