Initial revision
[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     $Id$
18 */
19
20 #ifndef __pbd_gtkmm_textviewer_h__
21 #define __pbd_gtkmm_textviewer_h__
22
23 #include <string>
24 #include <gtkmm.h>
25
26 #include <pbd/transmitter.h>
27
28 using std::string;
29
30 namespace Gtkmm2ext {
31
32 class TextViewer : public Gtk::Window, public Transmitter
33 {
34         Gtk::TextView etext;
35         Gtk::VBox vbox1;
36         Gtk::VBox vbox2;
37         Gtk::ScrolledWindow scrollwin;
38         Gtk::Button dismiss;
39         bool _editable;
40
41         void toggle_edit ();
42         void toggle_word_wrap ();
43         void signal_released_handler ();
44
45  public:
46         TextViewer (size_t width, size_t height);
47         Gtk::TextView& text()         { return etext; }
48         Gtk::Button& dismiss_button() { return dismiss; }
49
50         void insert_file (const string &);
51         void scroll_to_bottom ();
52         
53         void deliver ();
54 };
55
56 } /* namespace */
57
58 #endif  // __pbd_gtkmm_textviewer_h__