add API to query Gtk::ComboBoxText entries
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / textviewer.h
index 280eb4437d3a2c4b519f66feeeab323bebe4b8da..c2ab1fffd55b5cde21a444880b5b0c364e234cf1 100644 (file)
@@ -14,7 +14,6 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 #ifndef __pbd_gtkmm_textviewer_h__
 #include <string>
 #include <gtkmm.h>
 
-#include <pbd/transmitter.h>
+#include "pbd/transmitter.h"
 
-using std::string;
+#include "gtkmm2ext/visibility.h"
 
 namespace Gtkmm2ext {
 
-class TextViewer : public Gtk::Window, public Transmitter
+class LIBGTKMM2EXT_API TextViewer : public Gtk::Window, public Transmitter
 {
        Gtk::TextView etext;
        Gtk::VBox vbox1;
@@ -47,7 +46,7 @@ class TextViewer : public Gtk::Window, public Transmitter
        Gtk::TextView& text()         { return etext; }
        Gtk::Button& dismiss_button() { return dismiss; }
 
-       void insert_file (const string &);
+       void insert_file (const std::string &);
        void scroll_to_bottom ();
        
        void deliver ();