comparison src/gtkconv.h @ 7887:4b43a3f9de73

[gaim-migrate @ 8545] Change the New Instant Message shortcut to CTRL+M. Apparently CTRL+I is used for "italics." Also reworked how stuff in conv windows is hidden and grayed out when changing tabs and when accounts sign on and off. I had some problems with signing off and still being able to click the warn button and stuff, but that was probably caused by my changes from a few days ago. Anyway, this makes a lot more sense to me. I added a function that takes a conversation and updates all the buttons and menu items to be what they should be based on whether the conversation is an IM or a chat, and if the account is connected or not. It still has a few minor problems (tab icons don't become active after signing back in an account that was signed out), but I'll get to that in a day or 3. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 16 Dec 2003 05:29:37 +0000
parents e873d0bd0e6c
children 68f70cf074d0
comparison
equal deleted inserted replaced
7886:818835fb55cc 7887:4b43a3f9de73
50 GtkWidget *menubar; 50 GtkWidget *menubar;
51 51
52 GtkWidget *view_log; 52 GtkWidget *view_log;
53 53
54 GtkWidget *add_pounce; 54 GtkWidget *add_pounce;
55 GtkWidget *get_info;
56 GtkWidget *warn;
57 GtkWidget *invite;
58
55 GtkWidget *alias; 59 GtkWidget *alias;
56 GtkWidget *get_info;
57 GtkWidget *invite;
58
59 GtkWidget *insert_link;
60 GtkWidget *insert_image;
61
62 GtkWidget *warn;
63 GtkWidget *block; 60 GtkWidget *block;
64 GtkWidget *add; 61 GtkWidget *add;
65 GtkWidget *remove; 62 GtkWidget *remove;
63
64 GtkWidget *insert_link;
65 GtkWidget *insert_image;
66 66
67 GtkWidget *logging; 67 GtkWidget *logging;
68 GtkWidget *sounds; 68 GtkWidget *sounds;
69 GtkWidget *show_formatting_toolbar; 69 GtkWidget *show_formatting_toolbar;
70 70
114 */ 114 */
115 struct _GaimGtkChatPane 115 struct _GaimGtkChatPane
116 { 116 {
117 GtkWidget *count; 117 GtkWidget *count;
118 GtkWidget *list; 118 GtkWidget *list;
119 GtkWidget *whisper;
120 GtkWidget *invite; 119 GtkWidget *invite;
121 GtkWidget *topic_text; 120 GtkWidget *topic_text;
122 }; 121 };
123 122
124 /** 123 /**