[gimp] app: move all propgui files from app/widgets/ to new folder app/propgui/



commit e8ee5475b795fadf97be7b48d6c2c51ac280ff49
Author: Michael Natterer <mitch gimp org>
Date:   Mon Jul 3 12:29:41 2017 +0200

    app: move all propgui files from app/widgets/ to new folder app/propgui/
    
    We are getting more and app/widgets/ is already too large.

 app/Makefile.am                                    |    2 +
 app/display/display-types.h                        |    2 +-
 app/propgui/.gitignore                             |    7 +++
 app/propgui/Makefile.am                            |   39 ++++++++++++++
 .../gimppropgui-channel-mixer.c                    |    2 +-
 .../gimppropgui-channel-mixer.h                    |    0
 .../gimppropgui-color-balance.c                    |    7 ++-
 .../gimppropgui-color-balance.h                    |    0
 .../gimppropgui-color-rotate.c                     |    5 +-
 .../gimppropgui-color-rotate.h                     |    0
 .../gimppropgui-convolution-matrix.c               |    2 +-
 .../gimppropgui-convolution-matrix.h               |    0
 .../gimppropgui-diffration-patterns.c              |    2 +-
 .../gimppropgui-diffration-patterns.h              |    0
 app/{widgets => propgui}/gimppropgui-eval.c        |    2 +-
 app/{widgets => propgui}/gimppropgui-eval.h        |    0
 app/{widgets => propgui}/gimppropgui-generic.c     |    5 +-
 app/{widgets => propgui}/gimppropgui-generic.h     |    0
 .../gimppropgui-hue-saturation.c                   |    5 +-
 .../gimppropgui-hue-saturation.h                   |    0
 app/{widgets => propgui}/gimppropgui-spiral.c      |    2 +-
 app/{widgets => propgui}/gimppropgui-spiral.h      |    0
 app/{widgets => propgui}/gimppropgui.c             |   13 +++--
 app/{widgets => propgui}/gimppropgui.h             |   26 ---------
 app/propgui/propgui-types.h                        |   56 ++++++++++++++++++++
 app/tests/Makefile.am                              |    1 +
 app/tools/gimpfiltertool-widgets.h                 |    3 -
 app/tools/gimpoperationtool.c                      |    3 +-
 app/widgets/Makefile.am                            |   20 -------
 app/widgets/gimpsymmetryeditor.c                   |    5 +-
 configure.ac                                       |    1 +
 devel-docs/app/Makefile.am                         |    1 +
 po/POTFILES.in                                     |   17 +++---
 33 files changed, 147 insertions(+), 81 deletions(-)
---
diff --git a/app/Makefile.am b/app/Makefile.am
index ff914fd..ad8f776 100644
--- a/app/Makefile.am
+++ b/app/Makefile.am
@@ -24,6 +24,7 @@ SUBDIRS = \
        file            \
        pdb             \
        widgets         \
+       propgui         \
        display         \
        tools           \
        dialogs         \
@@ -189,6 +190,7 @@ gimp_@GIMP_APP_VERSION@_LDADD = \
        dialogs/libappdialogs.a         \
        tools/libapptools.a             \
        display/libappdisplay.a         \
+       propgui/libapppropgui.a         \
        widgets/libappwidgets.a         \
        $(libgimpwidgets)               \
        $(GTK_LIBS)                     \
diff --git a/app/display/display-types.h b/app/display/display-types.h
index f93e5ef..93f1968 100644
--- a/app/display/display-types.h
+++ b/app/display/display-types.h
@@ -19,7 +19,7 @@
 #define __DISPLAY_TYPES_H__
 
 
-#include "widgets/widgets-types.h"
+#include "propgui/propgui-types.h"
 
 #include "display/display-enums.h"
 
diff --git a/app/propgui/.gitignore b/app/propgui/.gitignore
new file mode 100644
index 0000000..5839592
--- /dev/null
+++ b/app/propgui/.gitignore
@@ -0,0 +1,7 @@
+/Makefile
+/Makefile.in
+/.deps
+/.libs
+/*.lo
+/libapppropgui.a
+/libapppropgui.la
diff --git a/app/propgui/Makefile.am b/app/propgui/Makefile.am
new file mode 100644
index 0000000..5b7bb12
--- /dev/null
+++ b/app/propgui/Makefile.am
@@ -0,0 +1,39 @@
+## Process this file with automake to produce Makefile.in
+
+AM_CPPFLAGS = \
+        -DISO_CODES_LOCATION=\"$(ISO_CODES_LOCATION)\"         \
+        -DISO_CODES_LOCALEDIR=\"$(ISO_CODES_LOCALEDIR)\"       \
+       -DG_LOG_DOMAIN=\"Gimp-PropGUI\"                         \
+       -I$(top_builddir)                                       \
+       -I$(top_srcdir)                                         \
+       -I$(top_builddir)/app                                   \
+       -I$(top_srcdir)/app                                     \
+       $(GEGL_CFLAGS)                                          \
+       $(GTK_CFLAGS)                                           \
+       -I$(includedir)
+
+noinst_LIBRARIES = libapppropgui.a
+
+libapppropgui_a_SOURCES = \
+       propgui-types.h                         \
+       \
+       gimppropgui.c                           \
+       gimppropgui.h                           \
+       gimppropgui-channel-mixer.c             \
+       gimppropgui-channel-mixer.h             \
+       gimppropgui-color-balance.c             \
+       gimppropgui-color-balance.h             \
+       gimppropgui-color-rotate.c              \
+       gimppropgui-color-rotate.h              \
+       gimppropgui-convolution-matrix.c        \
+       gimppropgui-convolution-matrix.h        \
+       gimppropgui-diffration-patterns.c       \
+       gimppropgui-diffration-patterns.h       \
+       gimppropgui-eval.c                      \
+       gimppropgui-eval.h                      \
+       gimppropgui-generic.c                   \
+       gimppropgui-generic.h                   \
+       gimppropgui-hue-saturation.c            \
+       gimppropgui-hue-saturation.h            \
+       gimppropgui-spiral.c                    \
+       gimppropgui-spiral.h
diff --git a/app/widgets/gimppropgui-channel-mixer.c b/app/propgui/gimppropgui-channel-mixer.c
similarity index 99%
rename from app/widgets/gimppropgui-channel-mixer.c
rename to app/propgui/gimppropgui-channel-mixer.c
index 0a61988..9bc61be 100644
--- a/app/widgets/gimppropgui-channel-mixer.c
+++ b/app/propgui/gimppropgui-channel-mixer.c
@@ -26,7 +26,7 @@
 
 #include "libgimpwidgets/gimpwidgets.h"
 
-#include "widgets-types.h"
+#include "propgui-types.h"
 
 #include "core/gimpcontext.h"
 
diff --git a/app/widgets/gimppropgui-channel-mixer.h b/app/propgui/gimppropgui-channel-mixer.h
similarity index 100%
rename from app/widgets/gimppropgui-channel-mixer.h
rename to app/propgui/gimppropgui-channel-mixer.h
diff --git a/app/widgets/gimppropgui-color-balance.c b/app/propgui/gimppropgui-color-balance.c
similarity index 98%
rename from app/widgets/gimppropgui-color-balance.c
rename to app/propgui/gimppropgui-color-balance.c
index 41ecfa3..5508427 100644
--- a/app/widgets/gimppropgui-color-balance.c
+++ b/app/propgui/gimppropgui-color-balance.c
@@ -24,16 +24,17 @@
 
 #include "libgimpwidgets/gimpwidgets.h"
 
-#include "widgets-types.h"
+#include "propgui-types.h"
 
 #include "operations/gimpcolorbalanceconfig.h"
 
 #include "core/gimpcontext.h"
 
+#include "widgets/gimppropwidgets.h"
+#include "widgets/gimpspinscale.h"
+
 #include "gimppropgui.h"
 #include "gimppropgui-color-balance.h"
-#include "gimppropwidgets.h"
-#include "gimpspinscale.h"
 
 #include "gimp-intl.h"
 
diff --git a/app/widgets/gimppropgui-color-balance.h b/app/propgui/gimppropgui-color-balance.h
similarity index 100%
rename from app/widgets/gimppropgui-color-balance.h
rename to app/propgui/gimppropgui-color-balance.h
diff --git a/app/widgets/gimppropgui-color-rotate.c b/app/propgui/gimppropgui-color-rotate.c
similarity index 99%
rename from app/widgets/gimppropgui-color-rotate.c
rename to app/propgui/gimppropgui-color-rotate.c
index 3a2675d..2a2b0d8 100644
--- a/app/widgets/gimppropgui-color-rotate.c
+++ b/app/propgui/gimppropgui-color-rotate.c
@@ -26,14 +26,15 @@
 
 #include "libgimpwidgets/gimpwidgets.h"
 
-#include "widgets-types.h"
+#include "propgui-types.h"
 
 #include "core/gimpcontext.h"
 
+#include "widgets/gimppropwidgets.h"
+
 #include "gimppropgui.h"
 #include "gimppropgui-color-rotate.h"
 #include "gimppropgui-generic.h"
-#include "gimppropwidgets.h"
 
 #include "gimp-intl.h"
 
diff --git a/app/widgets/gimppropgui-color-rotate.h b/app/propgui/gimppropgui-color-rotate.h
similarity index 100%
rename from app/widgets/gimppropgui-color-rotate.h
rename to app/propgui/gimppropgui-color-rotate.h
diff --git a/app/widgets/gimppropgui-convolution-matrix.c b/app/propgui/gimppropgui-convolution-matrix.c
similarity index 99%
rename from app/widgets/gimppropgui-convolution-matrix.c
rename to app/propgui/gimppropgui-convolution-matrix.c
index c012765..4d24aa5 100644
--- a/app/widgets/gimppropgui-convolution-matrix.c
+++ b/app/propgui/gimppropgui-convolution-matrix.c
@@ -26,7 +26,7 @@
 
 #include "libgimpwidgets/gimpwidgets.h"
 
-#include "widgets-types.h"
+#include "propgui-types.h"
 
 #include "core/gimpcontext.h"
 
diff --git a/app/widgets/gimppropgui-convolution-matrix.h b/app/propgui/gimppropgui-convolution-matrix.h
similarity index 100%
rename from app/widgets/gimppropgui-convolution-matrix.h
rename to app/propgui/gimppropgui-convolution-matrix.h
diff --git a/app/widgets/gimppropgui-diffration-patterns.c b/app/propgui/gimppropgui-diffration-patterns.c
similarity index 99%
rename from app/widgets/gimppropgui-diffration-patterns.c
rename to app/propgui/gimppropgui-diffration-patterns.c
index 301a2d1..ce3fb77 100644
--- a/app/widgets/gimppropgui-diffration-patterns.c
+++ b/app/propgui/gimppropgui-diffration-patterns.c
@@ -26,7 +26,7 @@
 
 #include "libgimpwidgets/gimpwidgets.h"
 
-#include "widgets-types.h"
+#include "propgui-types.h"
 
 #include "core/gimpcontext.h"
 
diff --git a/app/widgets/gimppropgui-diffration-patterns.h b/app/propgui/gimppropgui-diffration-patterns.h
similarity index 100%
rename from app/widgets/gimppropgui-diffration-patterns.h
rename to app/propgui/gimppropgui-diffration-patterns.h
diff --git a/app/widgets/gimppropgui-eval.c b/app/propgui/gimppropgui-eval.c
similarity index 99%
rename from app/widgets/gimppropgui-eval.c
rename to app/propgui/gimppropgui-eval.c
index 802289f..ca5d843 100644
--- a/app/widgets/gimppropgui-eval.c
+++ b/app/propgui/gimppropgui-eval.c
@@ -88,7 +88,7 @@
 #include <gegl-paramspecs.h>
 #include <gtk/gtk.h>
 
-#include "widgets-types.h"
+#include "propgui-types.h"
 
 #include "gimppropgui-eval.h"
 
diff --git a/app/widgets/gimppropgui-eval.h b/app/propgui/gimppropgui-eval.h
similarity index 100%
rename from app/widgets/gimppropgui-eval.h
rename to app/propgui/gimppropgui-eval.h
diff --git a/app/widgets/gimppropgui-generic.c b/app/propgui/gimppropgui-generic.c
similarity index 99%
rename from app/widgets/gimppropgui-generic.c
rename to app/propgui/gimppropgui-generic.c
index 805beea..2827815 100644
--- a/app/widgets/gimppropgui-generic.c
+++ b/app/propgui/gimppropgui-generic.c
@@ -33,15 +33,16 @@
 #include "libgimpconfig/gimpconfig.h"
 #include "libgimpwidgets/gimpwidgets.h"
 
-#include "widgets-types.h"
+#include "propgui-types.h"
 
 #include "gegl/gimp-gegl-utils.h"
 
 #include "core/gimpcontext.h"
 
+#include "widgets/gimppropwidgets.h"
+
 #include "gimppropgui.h"
 #include "gimppropgui-generic.h"
-#include "gimppropwidgets.h"
 
 #include "gimp-intl.h"
 
diff --git a/app/widgets/gimppropgui-generic.h b/app/propgui/gimppropgui-generic.h
similarity index 100%
rename from app/widgets/gimppropgui-generic.h
rename to app/propgui/gimppropgui-generic.h
diff --git a/app/widgets/gimppropgui-hue-saturation.c b/app/propgui/gimppropgui-hue-saturation.c
similarity index 99%
rename from app/widgets/gimppropgui-hue-saturation.c
rename to app/propgui/gimppropgui-hue-saturation.c
index 21d2d53..a50bbc2 100644
--- a/app/widgets/gimppropgui-hue-saturation.c
+++ b/app/propgui/gimppropgui-hue-saturation.c
@@ -24,16 +24,17 @@
 
 #include "libgimpwidgets/gimpwidgets.h"
 
-#include "widgets-types.h"
+#include "propgui-types.h"
 
 #include "operations/gimphuesaturationconfig.h"
 #include "operations/gimpoperationhuesaturation.h"
 
 #include "core/gimpcontext.h"
 
+#include "widgets/gimppropwidgets.h"
+
 #include "gimppropgui.h"
 #include "gimppropgui-hue-saturation.h"
-#include "gimppropwidgets.h"
 
 #include "gimp-intl.h"
 
diff --git a/app/widgets/gimppropgui-hue-saturation.h b/app/propgui/gimppropgui-hue-saturation.h
similarity index 100%
rename from app/widgets/gimppropgui-hue-saturation.h
rename to app/propgui/gimppropgui-hue-saturation.h
diff --git a/app/widgets/gimppropgui-spiral.c b/app/propgui/gimppropgui-spiral.c
similarity index 99%
rename from app/widgets/gimppropgui-spiral.c
rename to app/propgui/gimppropgui-spiral.c
index 307a638..ef1a57d 100644
--- a/app/widgets/gimppropgui-spiral.c
+++ b/app/propgui/gimppropgui-spiral.c
@@ -26,7 +26,7 @@
 #include "libgimpmath/gimpmath.h"
 #include "libgimpwidgets/gimpwidgets.h"
 
-#include "widgets-types.h"
+#include "propgui-types.h"
 
 #include "core/gimpcontext.h"
 
diff --git a/app/widgets/gimppropgui-spiral.h b/app/propgui/gimppropgui-spiral.h
similarity index 100%
rename from app/widgets/gimppropgui-spiral.h
rename to app/propgui/gimppropgui-spiral.h
diff --git a/app/widgets/gimppropgui.c b/app/propgui/gimppropgui.c
similarity index 99%
rename from app/widgets/gimppropgui.c
rename to app/propgui/gimppropgui.c
index 2eb068c..eab091a 100644
--- a/app/widgets/gimppropgui.c
+++ b/app/propgui/gimppropgui.c
@@ -33,15 +33,18 @@
 #include "libgimpconfig/gimpconfig.h"
 #include "libgimpwidgets/gimpwidgets.h"
 
-#include "widgets-types.h"
+#include "propgui-types.h"
 
 #include "gegl/gimp-gegl-utils.h"
 
 #include "core/gimpcontext.h"
 
-#include "gimpcolorpanel.h"
-#include "gimpmessagebox.h"
-#include "gimpspinscale.h"
+#include "widgets/gimpcolorpanel.h"
+#include "widgets/gimpmessagebox.h"
+#include "widgets/gimpspinscale.h"
+#include "widgets/gimppropwidgets.h"
+#include "widgets/gimpwidgets-utils.h"
+
 #include "gimppropgui.h"
 #include "gimppropgui-channel-mixer.h"
 #include "gimppropgui-color-balance.h"
@@ -52,8 +55,6 @@
 #include "gimppropgui-eval.h"
 #include "gimppropgui-generic.h"
 #include "gimppropgui-hue-saturation.h"
-#include "gimppropwidgets.h"
-#include "gimpwidgets-utils.h"
 
 #include "gimp-intl.h"
 
diff --git a/app/widgets/gimppropgui.h b/app/propgui/gimppropgui.h
similarity index 72%
rename from app/widgets/gimppropgui.h
rename to app/propgui/gimppropgui.h
index 2cd6730..7f689c6 100644
--- a/app/widgets/gimppropgui.h
+++ b/app/propgui/gimppropgui.h
@@ -24,32 +24,6 @@
 
 /*  A view on all of an object's properties  */
 
-typedef enum
-{
-  GIMP_CONTROLLER_TYPE_LINE
-} GimpControllerType;
-
-typedef void (* GimpControllerLineCallback) (gpointer        data,
-                                             GeglRectangle  *area,
-                                             gdouble         x1,
-                                             gdouble         y1,
-                                             gdouble         x2,
-                                             gdouble         y2);
-
-
-typedef GtkWidget * (* GimpCreatePickerFunc)     (gpointer            creator,
-                                                  const gchar        *property_name,
-                                                  const gchar        *icon_name,
-                                                  const gchar        *tooltip,
-                                                  gboolean            pick_abyss);
-
-typedef GCallback   (* GimpCreateControllerFunc) (gpointer            creator,
-                                                  GimpControllerType  controller_type,
-                                                  GCallback           callback,
-                                                  gpointer            callback_data,
-                                                  gpointer           *set_func_data);
-
-
 GtkWidget * gimp_prop_widget_new            (GObject                 *config,
                                              const gchar             *property_name,
                                              GeglRectangle           *area,
diff --git a/app/propgui/propgui-types.h b/app/propgui/propgui-types.h
new file mode 100644
index 0000000..aae7fb4
--- /dev/null
+++ b/app/propgui/propgui-types.h
@@ -0,0 +1,56 @@
+/* GIMP - The GNU Image Manipulation Program
+ * Copyright (C) 1995 Spencer Kimball and Peter Mattis
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef __PROPGUI_TYPES_H__
+#define __PROPGUI_TYPES_H__
+
+
+#include "widgets/widgets-types.h"
+
+
+/*  enums, move to propgui-enums.h if we get more  */
+
+typedef enum
+{
+  GIMP_CONTROLLER_TYPE_LINE
+} GimpControllerType;
+
+
+/*  function types  */
+
+typedef void (* GimpControllerLineCallback) (gpointer        data,
+                                             GeglRectangle  *area,
+                                             gdouble         x1,
+                                             gdouble         y1,
+                                             gdouble         x2,
+                                             gdouble         y2);
+
+
+typedef GtkWidget * (* GimpCreatePickerFunc)     (gpointer            creator,
+                                                  const gchar        *property_name,
+                                                  const gchar        *icon_name,
+                                                  const gchar        *tooltip,
+                                                  gboolean            pick_abyss);
+
+typedef GCallback   (* GimpCreateControllerFunc) (gpointer            creator,
+                                                  GimpControllerType  controller_type,
+                                                  GCallback           callback,
+                                                  gpointer            callback_data,
+                                                  gpointer           *set_func_data);
+
+
+#endif /* __PROPGUI_TYPES_H__ */
diff --git a/app/tests/Makefile.am b/app/tests/Makefile.am
index 8ab4c0e..9254bd3 100644
--- a/app/tests/Makefile.am
+++ b/app/tests/Makefile.am
@@ -89,6 +89,7 @@ LDADD = \
        ../actions/libappactions.a                                      \
        ../dialogs/libappdialogs.a                                      \
        ../display/libappdisplay.a                                      \
+       ../propgui/libapppropgui.a                                      \
        ../widgets/libappwidgets.a                                      \
        ../xcf/libappxcf.a                                              \
        ../pdb/libappinternal-procs.a                                   \
diff --git a/app/tools/gimpfiltertool-widgets.h b/app/tools/gimpfiltertool-widgets.h
index db5fb07..7d97ad4 100644
--- a/app/tools/gimpfiltertool-widgets.h
+++ b/app/tools/gimpfiltertool-widgets.h
@@ -21,9 +21,6 @@
 #define __GIMP_FILTER_TOOL_WIDGETS_H__
 
 
-#include "widgets/gimppropgui.h" /* FIXME remove */
-
-
 GimpToolWidget * gimp_filter_tool_create_widget (GimpFilterTool     *filter_tool,
                                                  GimpControllerType  controller_type,
                                                  GCallback           callback,
diff --git a/app/tools/gimpoperationtool.c b/app/tools/gimpoperationtool.c
index 7453008..2b44bd7 100644
--- a/app/tools/gimpoperationtool.c
+++ b/app/tools/gimpoperationtool.c
@@ -45,7 +45,8 @@
 #include "widgets/gimpbuffersourcebox.h"
 #include "widgets/gimphelp-ids.h"
 #include "widgets/gimppickablebutton.h"
-#include "widgets/gimppropgui.h"
+
+#include "propgui/gimppropgui.h"
 
 #include "display/gimpdisplay.h"
 #include "display/gimptoolgui.h"
diff --git a/app/widgets/Makefile.am b/app/widgets/Makefile.am
index c45a6f8..c672a3c 100644
--- a/app/widgets/Makefile.am
+++ b/app/widgets/Makefile.am
@@ -299,26 +299,6 @@ libappwidgets_a_sources = \
        gimpprogressbox.h               \
        gimpprogressdialog.c            \
        gimpprogressdialog.h            \
-       gimppropgui.c                   \
-       gimppropgui.h                   \
-       gimppropgui-channel-mixer.c     \
-       gimppropgui-channel-mixer.h     \
-       gimppropgui-color-balance.c     \
-       gimppropgui-color-balance.h     \
-       gimppropgui-color-rotate.c      \
-       gimppropgui-color-rotate.h      \
-       gimppropgui-convolution-matrix.c        \
-       gimppropgui-convolution-matrix.h        \
-       gimppropgui-diffration-patterns.c       \
-       gimppropgui-diffration-patterns.h       \
-       gimppropgui-eval.c              \
-       gimppropgui-eval.h              \
-       gimppropgui-generic.c           \
-       gimppropgui-generic.h           \
-       gimppropgui-hue-saturation.c    \
-       gimppropgui-hue-saturation.h    \
-       gimppropgui-spiral.c            \
-       gimppropgui-spiral.h            \
        gimppropwidgets.c               \
        gimppropwidgets.h               \
        gimpradioaction.c               \
diff --git a/app/widgets/gimpsymmetryeditor.c b/app/widgets/gimpsymmetryeditor.c
index 21f5a66..60f39dc 100644
--- a/app/widgets/gimpsymmetryeditor.c
+++ b/app/widgets/gimpsymmetryeditor.c
@@ -25,14 +25,15 @@
 
 #include "libgimpwidgets/gimpwidgets.h"
 
-#include "widgets-types.h"
+#include "propgui/propgui-types.h" /* ugly, but what the heck */
 
 #include "core/gimpimage.h"
 #include "core/gimpimage-symmetry.h"
 #include "core/gimpsymmetry.h"
 
+#include "propgui/gimppropgui.h"
+
 #include "gimpmenufactory.h"
-#include "gimppropgui.h"
 #include "gimpsymmetryeditor.h"
 
 #include "gimp-intl.h"
diff --git a/configure.ac b/configure.ac
index f61a4c9..533ab0e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2493,6 +2493,7 @@ app/menus/Makefile
 app/paint/Makefile
 app/pdb/Makefile
 app/plug-in/Makefile
+app/propgui/Makefile
 app/text/Makefile
 app/tools/Makefile
 app/vectors/Makefile
diff --git a/devel-docs/app/Makefile.am b/devel-docs/app/Makefile.am
index 94baf04..3f1824c 100644
--- a/devel-docs/app/Makefile.am
+++ b/devel-docs/app/Makefile.am
@@ -77,6 +77,7 @@ GTKDOC_LIBS = \
         $(top_builddir)/app/menus/libappmenus.a                                     \
         $(top_builddir)/app/tools/libapptools.a                                     \
         $(top_builddir)/app/display/libappdisplay.a                         \
+        $(top_builddir)/app/propgui/libapppropgui.a                         \
         $(top_builddir)/app/widgets/libappwidgets.a                         \
        $(top_builddir)/app/pdb/libappinternal-procs.a                       \
         $(top_builddir)/app/xcf/libappxcf.a                                 \
diff --git a/po/POTFILES.in b/po/POTFILES.in
index cce4ae5..0dfc0ca 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -369,6 +369,15 @@ app/plug-in/gimptemporaryprocedure.c
 app/plug-in/plug-in-enums.c
 app/plug-in/plug-in-rc.c
 
+app/propgui/gimppropgui-channel-mixer.c
+app/propgui/gimppropgui-color-balance.c
+app/propgui/gimppropgui-color-rotate.c
+app/propgui/gimppropgui-convolution-matrix.c
+app/propgui/gimppropgui-diffration-patterns.c
+app/propgui/gimppropgui-generic.c
+app/propgui/gimppropgui-hue-saturation.c
+app/propgui/gimppropgui.c
+
 app/text/gimpfont.c
 app/text/gimptext-compat.c
 app/text/gimptextlayer.c
@@ -544,14 +553,6 @@ app/widgets/gimppdbdialog.c
 app/widgets/gimppickablepopup.c
 app/widgets/gimppluginview.c
 app/widgets/gimpprogressdialog.c
-app/widgets/gimppropgui-channel-mixer.c
-app/widgets/gimppropgui-color-balance.c
-app/widgets/gimppropgui-color-rotate.c
-app/widgets/gimppropgui-convolution-matrix.c
-app/widgets/gimppropgui-diffration-patterns.c
-app/widgets/gimppropgui-generic.c
-app/widgets/gimppropgui-hue-saturation.c
-app/widgets/gimppropgui.c
 app/widgets/gimppropwidgets.c
 app/widgets/gimpsavedialog.c
 app/widgets/gimpsearchpopup.c


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]