comparison pidgin-twitter.c @ 113:388a8ca50817

tweaked configure dialog.
author Yoshiki Yazawa <yaz@honeyplnaet.jp>
date Tue, 15 Jul 2008 22:23:02 +0900
parents cece12684fb7
children 7d0dd0e1dbd0
comparison
equal deleted inserted replaced
112:cece12684fb7 113:388a8ca50817
2065 pref = purple_plugin_pref_new_with_name_and_label(OPT_TRANSLATE_CHANNEL, 2065 pref = purple_plugin_pref_new_with_name_and_label(OPT_TRANSLATE_CHANNEL,
2066 "Translate channel name to link (wassr only)"); 2066 "Translate channel name to link (wassr only)");
2067 purple_plugin_pref_frame_add(frame, pref); 2067 purple_plugin_pref_frame_add(frame, pref);
2068 2068
2069 2069
2070 /***********************/ 2070 /*******************/
2071 /* GUI config heading */ 2071 /* Utility heading */
2072 /***********************/ 2072 /*******************/
2073 pref = purple_plugin_pref_new_with_label("GUI"); 2073 pref = purple_plugin_pref_new_with_label("Utility");
2074 purple_plugin_pref_frame_add(frame, pref); 2074 purple_plugin_pref_frame_add(frame, pref);
2075 2075
2076 /* show icon */ 2076 /* show icon */
2077 pref = purple_plugin_pref_new_with_name_and_label(OPT_SHOW_ICON, 2077 pref = purple_plugin_pref_new_with_name_and_label(OPT_SHOW_ICON,
2078 "Show icons in conversation"); 2078 "Show icons in conversation");
2090 pref = purple_plugin_pref_new_with_name_and_label(OPT_COUNTER, 2090 pref = purple_plugin_pref_new_with_name_and_label(OPT_COUNTER,
2091 "Show text counter widget"); 2091 "Show text counter widget");
2092 purple_plugin_pref_frame_add(frame, pref); 2092 purple_plugin_pref_frame_add(frame, pref);
2093 purple_prefs_connect_callback(plugin, OPT_COUNTER, 2093 purple_prefs_connect_callback(plugin, OPT_COUNTER,
2094 counter_prefs_cb, NULL); 2094 counter_prefs_cb, NULL);
2095
2096
2097 /****************************/
2098 /* advanced config heading */
2099 /****************************/
2100 pref = purple_plugin_pref_new_with_label("Advanced");
2101 purple_plugin_pref_frame_add(frame, pref);
2102 2095
2103 /* escape pseudo command setting */ 2096 /* escape pseudo command setting */
2104 pref = purple_plugin_pref_new_with_name_and_label(OPT_ESCAPE_PSEUDO, 2097 pref = purple_plugin_pref_new_with_name_and_label(OPT_ESCAPE_PSEUDO,
2105 "Escape pseudo command string"); 2098 "Escape pseudo command string");
2106 purple_plugin_pref_frame_add(frame, pref); 2099 purple_plugin_pref_frame_add(frame, pref);