]> git.lyx.org Git - lyx.git/blob - src/frontends/gnome/gnome_helpers.h
applying Martin Craig's gnome patch. Upgrading to gtkmm-2.0+ from the 1.3 developmen...
[lyx.git] / src / frontends / gnome / gnome_helpers.h
1 // -*- C++ -*-
2 /**
3  * \file gnome_helpers.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author unknown
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef GNOME_HELPERS_H
13 #define GNOME_HELPERS_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "debug.h"
20
21 #undef Status
22 #undef Value
23 #undef DestroyNotify
24
25 #include <gtkmm/textbuffer.h>
26
27
28 /**
29  * This helper function adds default tags to a TextBuffer
30  *
31  * Hopefully gtk will come with its own one day, but until then...
32  */
33 void addDefaultTags(Glib::RefPtr<Gtk::TextBuffer> &);
34
35 #endif