diff src/gtklog.h @ 10663:241d2e62bed2

[gaim-migrate @ 12202] Richard Laager did this committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Mon, 07 Mar 2005 18:10:45 +0000
parents e74eb0d11f86
children fc464a0abccc
line wrap: on
line diff
--- a/src/gtklog.h	Mon Mar 07 02:19:09 2005 +0000
+++ b/src/gtklog.h	Mon Mar 07 18:10:45 2005 +0000
@@ -34,21 +34,22 @@
  * A GTK+ Log Viewer.  You can look at logs with it.
  */
 struct _GaimGtkLogViewer {
-	GList *logs;               /**< The list of logs viewed in this viewer   */
-	
-	GtkWidget    *window;      /**< The viewer's window                      */
-	GtkTreeStore *treestore;   /**< The treestore containing said logs       */
-	GtkWidget    *treeview;    /**< The treeview representing said treestore */
-	GtkWidget    *imhtml;      /**< The imhtml to display said logs, which were said
-				    *   before said treestore was said */
-	GtkWidget    *entry;       /**< The search entry, in which search terms are
-				    *   entered                                  */
-	GaimLogReadFlags flags;     /**< The most recently used log flags         */
-	char *search;              /**< The string currently being searched for */
+	GList *logs;                 /**< The list of logs viewed in this viewer   */
+
+	GtkWidget        *window;    /**< The viewer's window                      */
+	GtkTreeStore     *treestore; /**< The treestore containing said logs       */
+	GtkWidget        *treeview;  /**< The treeview representing said treestore */
+	GtkWidget        *imhtml;    /**< The imhtml to display said logs          */
+	GtkWidget        *entry;     /**< The search entry, in which search terms
+	                              *   are entered                              */
+	GaimLogReadFlags flags;      /**< The most recently used log flags         */
+	char             *search;    /**< The string currently being searched for  */
+	GtkWidget        *label;     /**< The label at the top of the log viewer   */
 };
 
 
 
 void gaim_gtk_log_show(GaimLogType type, const char *screenname, GaimAccount *account);
+void gaim_gtk_log_show_contact(GaimContact *contact);
 
 void gaim_gtk_syslog_show();