diff options
| author | Adrian Boguszewski <adrbogus1@student.pg.gda.pl> | 2016-07-28 11:26:17 +0000 |
|---|---|---|
| committer | Adrian Boguszewski <adrbogus1@student.pg.gda.pl> | 2016-07-28 11:26:17 +0000 |
| commit | 43b49e325db73cc19b1731db6c69545664ee8fbe (patch) | |
| tree | 56afe5de404c431fff2124f4789fd6e1655c0963 /src/ui/dialog/export.cpp | |
| parent | Fixed failed build (diff) | |
| download | inkscape-43b49e325db73cc19b1731db6c69545664ee8fbe.tar.gz inkscape-43b49e325db73cc19b1731db6c69545664ee8fbe.zip | |
Reverted changes to r15024 after many building problems
(bzr r15027)
Diffstat (limited to 'src/ui/dialog/export.cpp')
| -rw-r--r-- | src/ui/dialog/export.cpp | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/ui/dialog/export.cpp b/src/ui/dialog/export.cpp index 2e78be8ac..2fb5f9e3b 100644 --- a/src/ui/dialog/export.cpp +++ b/src/ui/dialog/export.cpp @@ -24,28 +24,37 @@ #include <gtkmm/buttonbox.h> #include <gtkmm/dialog.h> #include <gtkmm/entry.h> +#include <gtkmm/image.h> +#include <gtkmm/label.h> #include <gtkmm/spinbutton.h> #include <gtkmm/stock.h> - +#include <gtkmm/stockid.h> #if WITH_GTKMM_3_0 # include <gtkmm/grid.h> #else # include <gtkmm/table.h> #endif +#include <gtkmm/togglebutton.h> +#include <gtkmm/widget.h> #ifdef WITH_GNOME_VFS # include <libgnomevfs/gnome-vfs-init.h> // gnome_vfs_initialized #endif #include <glibmm/i18n.h> +#include <glibmm/miscutils.h> #include "ui/widget/unit-menu.h" +#include "util/units.h" #include "helper/window.h" #include "inkscape.h" #include "document.h" #include "document-undo.h" +#include "sp-item.h" +#include "selection.h" #include "file.h" +#include "macros.h" #include "sp-namedview.h" #include "selection-chemistry.h" @@ -80,12 +89,17 @@ #include <glibmm/fileutils.h> #endif +#include <gtk/gtk.h> + #define SP_EXPORT_MIN_SIZE 1.0 #define DPI_BASE Inkscape::Util::Quantity::convert(1, "in", "px") #define EXPORT_COORD_PRECISION 3 +#include "../../document.h" +#include "../../document-undo.h" +#include "verbs.h" #include "export.h" using Inkscape::Util::unit_table; |
