summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 395895c)
raw | patch | inline | side by side (parent: 395895c)
author | verbalshadow <verbalshadow@users.sourceforge.net> | |
Wed, 26 Apr 2006 05:36:18 +0000 (05:36 +0000) | ||
committer | verbalshadow <verbalshadow@users.sourceforge.net> | |
Wed, 26 Apr 2006 05:36:18 +0000 (05:36 +0000) |
ChangeLog | patch | blob | history | |
src/path-prefix.h | patch | blob | history |
diff --git a/ChangeLog b/ChangeLog
index 920dd92f0aee23978deef085c06d87f562684c0b..1d436e50508f80ec40d5a4438f6c597af12da11f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
+2006-04-23 verbalshadow <verbalshadow@gmail.com>
+
+ * path-prefix.h:
+ Added beginnings of CREATE support in path-prefix.h
+
2006-04-23 verbalshadow <verbalshadow@gmail.com>
* src/object-ui.cpp, src/object-ui.h:
diff --git a/src/path-prefix.h b/src/path-prefix.h
index 00862917f19197cacd71dd6fa429203a85b7c24a..87100a9cd84d694cc9c9e0d18debdf7e7a0a7a4c 100644 (file)
--- a/src/path-prefix.h
+++ b/src/path-prefix.h
# define INKSCAPE_PLUGINDIR BR_LIBDIR( "/inkscape/plugins" )
# define INKSCAPE_TEMPLATESDIR BR_DATADIR( "/inkscape/templates" )
# define INKSCAPE_UIDIR BR_DATADIR( "/inkscape/ui" )
+//CREATE V0.1 support
+# define CREATE_GRADIENTSDIR BR_DATADIR( "/create/gradients/gimp" )
+# define CREATE_PALETTESDIR BR_DATADIR( "/create/swatches" )
+# define CREATE_PATTERNSDIR BR_DATADIR( "/create/patterns/vector" )
#else
# ifdef WIN32
# define INKSCAPE_APPICONDIR "pixmaps"
# define INKSCAPE_PLUGINDIR "plugins"
# define INKSCAPE_TEMPLATESDIR "share\\templates"
# define INKSCAPE_UIDIR INKSCAPE_DATADIR "\\share\\ui"
+//CREATE V0.1 WIN32 support
+# define CREATE_GRADIENTSDIR INKSCAPE_DATADIR "create\\gradients\\gimp"
+# define CREATE_PALETTESDIR INKSCAPE_DATADIR "create\\swatches"
+# define CREATE_PATTERNSDIR INKSCAPE_DATADIR "create\\patterns\\vector"
# elif defined ENABLE_OSX_APP_LOCATIONS
# define INKSCAPE_APPICONDIR "Contents/Resources/pixmaps"
# define INKSCAPE_EXTENSIONDIR "Contents/Resources/extensions"
# define INKSCAPE_PLUGINDIR "Contents/Resources/plugins"
# define INKSCAPE_TEMPLATESDIR "Contents/Resources/templates"
# define INKSCAPE_UIDIR "Contents/Resources/ui"
+//CREATE V0.1 support
+// fixme: is this the correct path
+/*
+# define CREATE_GRADIENTSDIR "/create/gradients/gimp"
+# define CREATE_PALETTESDIR "/create/swatches"
+# define CREATE_PATTERNSDIR "/create/patterns/vector"
+*/
# else
# define INKSCAPE_APPICONDIR INKSCAPE_DATADIR "/pixmaps"
# define INKSCAPE_EXTENSIONDIR INKSCAPE_DATADIR "/inkscape/extensions"
# define INKSCAPE_PLUGINDIR INKSCAPE_LIBDIR "/inkscape/plugins"
# define INKSCAPE_TEMPLATESDIR INKSCAPE_DATADIR "/inkscape/templates"
# define INKSCAPE_UIDIR INKSCAPE_DATADIR "/inkscape/ui"
-# endif
+//CREATE V0.1 support
+# define CREATE_GRADIENTSDIR INKSCAPE_DATADIR "/create/gradients/gimp"
+# define CREATE_PALETTESDIR INKSCAPE_DATADIR "/create/swatches"
+# define CREATE_PATTERNSDIR INKSCAPE_DATADIR "/create/patterns/vector"
+# endif
#endif
#ifdef __cplusplus