Don't add "Go to last error" to filtering log window's context menu.
[claws.git] / src / gtk / logwindow.h
index 09d86770bff21ffef23319026d46f7016fc3e5a5..f47cb2f522f48a1190c0f0ef8b8d822ad336b692 100644 (file)
@@ -1,10 +1,10 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2007 Hiroyuki Yamamoto and the Claws Mail team
+ * Copyright (C) 1999-2012 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"
 
@@ -40,15 +40,18 @@ struct _LogWindow
        GdkColor out_color;
        GdkColor status_ok_color;
        GdkColor status_nok_color;
+       GdkColor status_skip_color;
 
        gboolean clip;
        guint    clip_length;
-       guint    hook_id;
+       gulong   hook_id;
        GtkTextBuffer *buffer;
        GtkTextTag *error_tag;
        GtkTextMark *end_mark;
        gboolean hidden;
        gboolean never_shown;
+       gboolean has_error;
+       gboolean has_error_capability;
 };
 
 LogWindow *log_window_create(LogInstance instance);