summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorSean Qureshi <stqism@risingstormgames.com>2013-08-02 22:31:21 -0700
committerSean Qureshi <stqism@risingstormgames.com>2013-08-02 22:31:21 -0700
commit97fbdea304a24b0a4354c8d9cb0157f3eba2978e (patch)
tree04bb92fa9725201a346282f71c33b455ad79c46f /testing
parent62bf320b6e3cb946cc70a972c35c114b0bcdbad1 (diff)
parent8fa074db5eb8c9b0ea9497d269725df0ff391321 (diff)
Merge https://github.com/JFreegman/ProjectTox-Core
Diffstat (limited to 'testing')
-rw-r--r--testing/toxic/chat.c3
-rw-r--r--testing/toxic/friendlist.c1
-rw-r--r--testing/toxic/main.c23
-rw-r--r--testing/toxic/prompt.c1
4 files changed, 5 insertions, 23 deletions
diff --git a/testing/toxic/chat.c b/testing/toxic/chat.c
index 50aa81b0..0e14a295 100644
--- a/testing/toxic/chat.c
+++ b/testing/toxic/chat.c
@@ -147,6 +147,7 @@ static void chat_onKey(ToxWindow* self, int key) {
147} 147}
148 148
149static void chat_onDraw(ToxWindow* self) { 149static void chat_onDraw(ToxWindow* self) {
150 curs_set(1);
150 int x, y; 151 int x, y;
151 ChatContext* ctx = (ChatContext*) self->x; 152 ChatContext* ctx = (ChatContext*) self->x;
152 153
@@ -158,7 +159,7 @@ static void chat_onDraw(ToxWindow* self) {
158 159
159 wclear(ctx->linewin); 160 wclear(ctx->linewin);
160 mvwhline(ctx->linewin, 0, 0, '_', COLS); 161 mvwhline(ctx->linewin, 0, 0, '_', COLS);
161 mvwprintw(ctx->linewin, 1, 0, "%s\n", ctx->line); 162 mvwprintw(self->window, y-1, 0, "%s\n", ctx->line);
162 163
163 wrefresh(self->window); 164 wrefresh(self->window);
164} 165}
diff --git a/testing/toxic/friendlist.c b/testing/toxic/friendlist.c
index f9a413f9..b4b619a2 100644
--- a/testing/toxic/friendlist.c
+++ b/testing/toxic/friendlist.c
@@ -113,6 +113,7 @@ static void friendlist_onKey(ToxWindow* self, int key) {
113} 113}
114 114
115static void friendlist_onDraw(ToxWindow* self) { 115static void friendlist_onDraw(ToxWindow* self) {
116 curs_set(0);
116 size_t i; 117 size_t i;
117 118
118 wclear(self->window); 119 wclear(self->window);
diff --git a/testing/toxic/main.c b/testing/toxic/main.c
index c596b708..bcfc487f 100644
--- a/testing/toxic/main.c
+++ b/testing/toxic/main.c
@@ -280,26 +280,6 @@ void prepare_window(WINDOW* w) {
280 wresize(w, LINES-2, COLS); 280 wresize(w, LINES-2, COLS);
281} 281}
282 282
283/*
284 * Draws cursor relative to input on prompt window.
285 * Removes cursor on friends window and chat windows.
286 *
287 * TODO: Make it work for chat windows
288 */
289void position_cursor(WINDOW* w, char* title)
290{
291 curs_set(1);
292 if (strcmp(title, "[prompt]") == 0) { // main/prompt window
293 int x, y;
294 getyx(w, y, x);
295 move(y, x);
296 }
297 else if (strcmp(title, "[friends]") == 0) // friends window
298 curs_set(0);
299 else // any other window (i.e chat)
300 curs_set(0);
301}
302
303int main(int argc, char* argv[]) { 283int main(int argc, char* argv[]) {
304 int ch; 284 int ch;
305 ToxWindow* a; 285 ToxWindow* a;
@@ -317,9 +297,8 @@ int main(int argc, char* argv[]) {
317 a = &windows[w_active]; 297 a = &windows[w_active];
318 prepare_window(a->window); 298 prepare_window(a->window);
319 a->blink = false; 299 a->blink = false;
320 a->onDraw(a);
321 draw_bar(); 300 draw_bar();
322 position_cursor(a->window, a->title); 301 a->onDraw(a);
323 302
324 // Handle input. 303 // Handle input.
325 ch = getch(); 304 ch = getch();
diff --git a/testing/toxic/prompt.c b/testing/toxic/prompt.c
index b0f83811..484f5906 100644
--- a/testing/toxic/prompt.c
+++ b/testing/toxic/prompt.c
@@ -287,6 +287,7 @@ static void prompt_onKey(ToxWindow* self, int key) {
287} 287}
288 288
289static void prompt_onDraw(ToxWindow* self) { 289static void prompt_onDraw(ToxWindow* self) {
290 curs_set(1);
290 int x, y; 291 int x, y;
291 292
292 getyx(self->window, y, x); 293 getyx(self->window, y, x);