Search code examples
cwidgetgtkirc

What is the best widget with GTK for chat window irc?


I'm programming a irc client in GTK, but i'm asking what is the best widget for the chat window ? I think to use the GtkList but i'm not sure if it's the good widget for my problem. Thanks for answer :)


Solution

  • A textbox is necessary for user input.

    Some people like to copy/paste from the room buffer. Whichever control you use for that, try to keep that in mind.

    I suggest a treeview for the nicklist. Represent servers at the first level, channels and private messages at the second level and the nicklists for channels at the third level (when you expand channels).