diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2012-02-25 18:29:57 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2012-02-25 18:29:57 +0000 |
| commit | 9ea62be867f15fb90651efbfd0b2a6aacd1247b1 (patch) | |
| tree | cc3dea929e2a5295e6b18d6e9a7c3e150a1a0ecd /src/ui/widget | |
| parent | GDL: Merge upstream patch 912AE (2012-02-20) - Fixed some const warnings (diff) | |
| download | inkscape-9ea62be867f15fb90651efbfd0b2a6aacd1247b1.tar.gz inkscape-9ea62be867f15fb90651efbfd0b2a6aacd1247b1.zip | |
Header cleaning
(bzr r11015)
Diffstat (limited to 'src/ui/widget')
| -rw-r--r-- | src/ui/widget/panel.cpp | 1 | ||||
| -rw-r--r-- | src/ui/widget/panel.h | 30 |
2 files changed, 21 insertions, 10 deletions
diff --git a/src/ui/widget/panel.cpp b/src/ui/widget/panel.cpp index 0871fbffd..0989c7d0d 100644 --- a/src/ui/widget/panel.cpp +++ b/src/ui/widget/panel.cpp @@ -29,6 +29,7 @@ #include "desktop-handles.h" #include "inkscape.h" #include "widgets/eek-preview.h" +#include "ui/previewfillable.h" namespace Inkscape { namespace UI { diff --git a/src/ui/widget/panel.h b/src/ui/widget/panel.h index 64efa8837..c1942ef05 100644 --- a/src/ui/widget/panel.h +++ b/src/ui/widget/panel.h @@ -13,22 +13,32 @@ #ifndef SEEN_INKSCAPE_UI_WIDGET_PANEL_H #define SEEN_INKSCAPE_UI_WIDGET_PANEL_H -#include <vector> - -#include "inkscape.h" -#include "selection.h" -#include "ui/previewfillable.h" - -#include <gtkmm/arrow.h> #include <gtkmm/box.h> +#include <gtkmm/arrow.h> #include <gtkmm/button.h> -#include <gtkmm/buttonbox.h> -#include <gtkmm/checkmenuitem.h> #include <gtkmm/eventbox.h> -#include <gtkmm/menuitem.h> +#include <gtkmm/label.h> + +#include <vector> + +class SPDesktop; +class SPDocument; + +namespace Gtk { + class CheckMenuItem; + class HButtonBox; + class MenuItem; +} namespace Inkscape { + +struct Application; +class Selection; + namespace UI { + +class PreviewFillable; + namespace Widget { /** |
