Remove most using declarations from header files.
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / textviewer.h
1 /*
2     Copyright (C) 1999 Paul Barton-Davis 
3     This program is free software; you can redistribute it and/or modify
4     it under the terms of the GNU General Public License as published by
5     the Free Software Foundation; either version 2 of the License, or
6     (at your option) any later version.
7
8     This program is distributed in the hope that it will be useful,
9     but WITHOUT ANY WARRANTY; without even the implied warranty of
10     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11     GNU General Public License for more details.
12
13     You should have received a copy of the GNU General Public License
14     along with this program; if not, write to the Free Software
15     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16
17 */
18
19 #ifndef __pbd_gtkmm_textviewer_h__
20 #define __pbd_gtkmm_textviewer_h__
21
22 #include <string>
23 #include <gtkmm.h>
24
25 #include <pbd/transmitter.h>
26
27 namespace Gtkmm2ext {
28
29 class TextViewer : public Gtk::Window, public Transmitter
30 {
31         Gtk::TextView etext;
32         Gtk::VBox vbox1;
33         Gtk::VBox vbox2;
34         Gtk::ScrolledWindow scrollwin;
35         Gtk::Button dismiss;
36         bool _editable;
37
38         void toggle_edit ();
39         void toggle_word_wrap ();
40         void signal_released_handler ();
41
42  public:
43         TextViewer (size_t width, size_t height);
44         Gtk::TextView& text()         { return etext; }
45         Gtk::Button& dismiss_button() { return dismiss; }
46
47         void insert_file (const std::string &);
48         void scroll_to_bottom ();
49         
50         void deliver ();
51 };
52
53 } /* namespace */
54
55 #endif  // __pbd_gtkmm_textviewer_h__