comparison src/about.c @ 2950:b5033087c748

[gaim-migrate @ 2963] hehe committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Sat, 02 Feb 2002 23:57:15 +0000
parents d2ecba702280
children 7239a392486c
comparison
equal deleted inserted replaced
2949:d2ecba702280 2950:b5033087c748
80 GdkPixmap *pm; 80 GdkPixmap *pm;
81 GdkBitmap *bm; 81 GdkBitmap *bm;
82 GtkWidget *hbox; 82 GtkWidget *hbox;
83 GtkWidget *button; 83 GtkWidget *button;
84 GtkWidget *text; 84 GtkWidget *text;
85 GtkWidget *sw;
85 86
86 char abouttitle[45]; 87 char abouttitle[45];
87 88
88 if (!about) { 89 if (!about) {
89 90
132 133
133 text = gtk_text_new(NULL, NULL); 134 text = gtk_text_new(NULL, NULL);
134 135
135 gtk_text_insert (GTK_TEXT (text), NULL, NULL, NULL, 136 gtk_text_insert (GTK_TEXT (text), NULL, NULL, NULL,
136 _("Active Developers\n====================\nRob Flynn (maintainer) [ rob@marko.net ]\nSean Egan (coder) [ bj91704@binghamton.edu ]\n\nCrazy Patch Writers\n===================\nBenjamin Miller\nDecklin Foster\n\nRetired Developers\n===================\nJim Duchek\nEric Warmenhoven [ warmenhoven@yahoo.com ]\nMark Spencer (original author) [ markster@marko.net ]"), 369); 137 _("Active Developers\n====================\nRob Flynn (maintainer) [ rob@marko.net ]\nSean Egan (coder) [ bj91704@binghamton.edu ]\n\nCrazy Patch Writers\n===================\nBenjamin Miller\nDecklin Foster\n\nRetired Developers\n===================\nJim Duchek\nEric Warmenhoven [ warmenhoven@yahoo.com ]\nMark Spencer (original author) [ markster@marko.net ]"), 369);
138
139 sw = gtk_scrolled_window_new(NULL, NULL);
140 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_ALWAYS);
141
142 gtk_container_add(GTK_CONTAINER(sw), text);
143 gtk_widget_set_usize(GTK_WIDGET(sw), -1, 150);
144 gtk_widget_show(sw);
137 145
138 gtk_box_pack_start(GTK_BOX(fbox), text, TRUE, TRUE, 0); 146 gtk_box_pack_start(GTK_BOX(fbox), sw, TRUE, TRUE, 0);
139 gtk_widget_show(text); 147 gtk_widget_show(text);
140 148
141 /* Close Button */ 149 /* Close Button */
142 150
143 hbox = gtk_hbox_new(FALSE, 5); 151 hbox = gtk_hbox_new(FALSE, 5);