2008-09-18 [colin] 3.5.0cvs113
[claws.git] / src / gtk / logwindow.h
index 58f4b2efb8a89f4db39c55cb618f72c7fc9d212e..6fb108d26061153a19ee4c2b0ffb91bcb60776f7 100644 (file)
@@ -1,10 +1,10 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Sylpheed-Claws team
+ * Copyright (C) 1999-2007 Hiroyuki Yamamoto and the Claws Mail team
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
+ * the Free Software Foundation; either version 3 of the License, or
  * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * 
  */
 
 #ifndef __LOGWINDOW_H__
 #define __LOGWINDOW_H__
 
 #include <glib.h>
-#include <gtk/gtkwidget.h>
+#include <gtk/gtk.h>
+
+#include "log.h"
 
 typedef struct _LogWindow      LogWindow;
 
@@ -36,17 +38,22 @@ struct _LogWindow
        GdkColor error_color;
        GdkColor in_color;
        GdkColor out_color;
+       GdkColor status_ok_color;
+       GdkColor status_nok_color;
+       GdkColor status_skip_color;
 
        gboolean clip;
        guint    clip_length;
        guint    hook_id;
        GtkTextBuffer *buffer;
        GtkTextTag *error_tag;
-       GtkTextTag *end_mark;
+       GtkTextMark *end_mark;
        gboolean hidden;
+       gboolean never_shown;
+       gboolean has_error;
 };
 
-LogWindow *log_window_create(void);
+LogWindow *log_window_create(LogInstance instance);
 void log_window_init(LogWindow *logwin);
 void log_window_show(LogWindow *logwin);
 void log_window_show_error(LogWindow *logwin);