diff options
Diffstat (limited to 'src/TextViewLog.hpp')
-rw-r--r-- | src/TextViewLog.hpp | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/TextViewLog.hpp b/src/TextViewLog.hpp index 913b527..52c1b2c 100644 --- a/src/TextViewLog.hpp +++ b/src/TextViewLog.hpp @@ -17,15 +17,24 @@ #ifndef PATCHAGE_TEXTVIEWLOG_HPP #define PATCHAGE_TEXTVIEWLOG_HPP +// IWYU pragma: no_include <gtkmm/texttag.h> + #include "ILog.hpp" -#include "Widget.hpp" #include <glibmm/refptr.h> -#include <gtkmm/texttag.h> -#include <gtkmm/textview.h> + +#include <string> + +namespace Gtk { +class TextView; +class TextTag; // IWYU pragma: keep +} // namespace Gtk namespace patchage { +template<typename W> +class Widget; + /// Log that writes colored messages to a Gtk TextView class TextViewLog : public ILog { |