NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / gtk_ui.h
index 9fa9e99fe883dc8174bb38e7c2bbcd0eaf492268..868f71fd8db8ecb7ccfe3934508867302c414a7e 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 1999 Paul Barton-Davis 
+    Copyright (C) 1999 Paul Barton-Davis
 
     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
 #include <gtkmm/textbuffer.h>
 #include <gtkmm/main.h>
 #include <gdkmm/color.h>
-#include <pbd/abstract_ui.h>
-#include <pbd/ringbufferNPT.h>
-#include <pbd/pool.h>
-#include <pbd/error.h>
-#include <pbd/receiver.h>
+
+#ifndef ABSTRACT_UI_EXPORTS
+#define ABSTRACT_UI_EXPORTS
+#endif
+#include "pbd/abstract_ui.h"
+#include "pbd/ringbufferNPT.h"
+#include "pbd/pool.h"
+#include "pbd/error.h"
+#include "pbd/receiver.h"
+
+#include "gtkmm2ext/visibility.h"
 
 class Touchable;
 
@@ -63,14 +68,14 @@ extern BaseUI::RequestType SetTip;
 extern BaseUI::RequestType AddIdle;
 extern BaseUI::RequestType AddTimeout;
 
-struct UIRequest : public BaseUI::BaseRequestObject {
-     
+struct LIBGTKMM2EXT_API UIRequest : public BaseUI::BaseRequestObject {
+
      /* this once used anonymous unions to merge elements
        that are never part of the same request. that makes
        the creation of a legal copy constructor difficult
        because of the semantics of the slot member.
      */
-     
+
     Touchable *display;
     const char *msg;
     Gtk::StateType new_state;
@@ -83,8 +88,8 @@ struct UIRequest : public BaseUI::BaseRequestObject {
     UIRequest () {
             type = NullMessage;
     }
-    
-    ~UIRequest () { 
+
+    ~UIRequest () {
            if (type == ErrorMessage && msg) {
                    /* msg was strdup()'ed */
                    free (const_cast<char *>(msg));
@@ -92,7 +97,7 @@ struct UIRequest : public BaseUI::BaseRequestObject {
     }
 };
 
-class UI : public AbstractUI<UIRequest>
+class LIBGTKMM2EXT_API UI : public AbstractUI<UIRequest>
 {
   private:
        class MyReceiver : public Receiver {
@@ -133,6 +138,7 @@ class UI : public AbstractUI<UIRequest>
        void flush_pending ();
        void toggle_errors ();
        void show_errors ();
+       void dump_errors (std::ostream&);
        void touch_display (Touchable *);
        void set_tip (Gtk::Widget &w, const gchar *tip);
        void set_tip (Gtk::Widget &w, const std::string &tip);
@@ -190,6 +196,9 @@ class UI : public AbstractUI<UIRequest>
        void process_error_message (Transmitter::Channel, const char *);
        void do_quit ();
 
+       Glib::Threads::Mutex   error_lock;
+       std::list<std::string> error_stack;
+
        void color_selection_done (bool status);
        bool color_selection_deleted (GdkEventAny *);
        bool color_picked;