Mercurial > pidgin
view console/gntui.c @ 13885:582aaa4e287e
[gaim-migrate @ 16365]
Add ui for conversation. It 'works', but it's broken. So don't use it just yet.
I probably will not be able to touch it in the next couple of days. So feel
free to fix the brokenness :)
committer: Tailor Script <tailor@pidgin.im>
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Wed, 28 Jun 2006 05:52:23 +0000 |
parents | eac18261c6f0 |
children | 7d3256b253ec |
line wrap: on
line source
#include "gntui.h" void init_gnt_ui() { gnt_init(); wbkgdset(stdscr, '\0' | COLOR_PAIR(GNT_COLOR_NORMAL)); werase(stdscr); wrefresh(stdscr); /* Initialize the buddy list */ gg_blist_init(); gaim_blist_set_ui_ops(gg_blist_get_ui_ops()); /* Now the conversations */ gg_conversation_init(); gaim_conversations_set_ui_ops(gg_conv_get_ui_ops()); gnt_main(); }