2008-09-18 [colin] 3.5.0cvs113
[claws.git] / src / gtk / logwindow.h
index 34e8cbbae14f937b1953b04471a55f39251f0661..6fb108d26061153a19ee4c2b0ffb91bcb60776f7 100644 (file)
@@ -1,10 +1,10 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999,2000 Hiroyuki Yamamoto
+ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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;
 
@@ -34,15 +36,27 @@ struct _LogWindow
        GdkColor msg_color;
        GdkColor warn_color;
        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;
+       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);
 void log_window_set_clipping(LogWindow *logwin, gboolean clip, guint clip_length);
 
 #endif /* __LOGWINDOW_H__ */