2008-09-18 [colin] 3.5.0cvs113
[claws.git] / src / gtk / logwindow.h
index 461e920a9569da0f93eb6fba02db23876679061b..6fb108d26061153a19ee4c2b0ffb91bcb60776f7 100644 (file)
@@ -4,7 +4,7 @@
  *
  * 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,6 +38,9 @@ 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;
@@ -44,9 +49,11 @@ struct _LogWindow
        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);