Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gThumb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
91
Issues
91
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
gThumb
Commits
781ef8c1
Commit
781ef8c1
authored
Aug 17, 2012
by
Paolo Bacchilega
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cairo_io: renamed some files to more meaningful names
parent
628e1911
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
32 additions
and
32 deletions
+32
-32
extensions/cairo_io/Makefile.am
extensions/cairo_io/Makefile.am
+17
-17
extensions/cairo_io/cairo-image-surface-jpeg.c
extensions/cairo_io/cairo-image-surface-jpeg.c
+1
-1
extensions/cairo_io/cairo-image-surface-jpeg.h
extensions/cairo_io/cairo-image-surface-jpeg.h
+3
-3
extensions/cairo_io/cairo-image-surface-png.c
extensions/cairo_io/cairo-image-surface-png.c
+1
-1
extensions/cairo_io/cairo-image-surface-png.h
extensions/cairo_io/cairo-image-surface-png.h
+3
-3
extensions/cairo_io/cairo-image-surface-svg.c
extensions/cairo_io/cairo-image-surface-svg.c
+1
-1
extensions/cairo_io/cairo-image-surface-svg.h
extensions/cairo_io/cairo-image-surface-svg.h
+3
-3
extensions/cairo_io/main.c
extensions/cairo_io/main.c
+3
-3
No files found.
extensions/cairo_io/Makefile.am
View file @
781ef8c1
...
...
@@ -29,30 +29,30 @@ enum-types.c: $(HEADER_FILES)
$^
>
xgen-
$
(
@F
)
\
&&
mv
-f
xgen-
$
(
@F
)
enum-types.c
)
libcairo_io_la_SOURCES
=
\
cairo-i
o-png.c
\
cairo-i
o-png.h
\
gth-png-saver.c
\
gth-png-saver.h
\
gth-tga-saver.c
\
gth-tga-saver.h
\
gth-tiff-saver.c
\
gth-tiff-saver.h
\
preferences.c
\
libcairo_io_la_SOURCES
=
\
cairo-i
mage-surface-png.c
\
cairo-i
mage-surface-png.h
\
gth-png-saver.c
\
gth-png-saver.h
\
gth-tga-saver.c
\
gth-tga-saver.h
\
gth-tiff-saver.c
\
gth-tiff-saver.h
\
preferences.c
\
main.c
if
ENABLE_JPEG_TOOLS
libcairo_io_la_SOURCES
+=
\
cairo-i
o-jpeg.c
\
cairo-i
o-jpeg.h
\
gth-jpeg-saver.c
\
libcairo_io_la_SOURCES
+=
\
cairo-i
mage-surface-jpeg.c
\
cairo-i
mage-surface-jpeg.h
\
gth-jpeg-saver.c
\
gth-jpeg-saver.h
endif
if
ENABLE_LIBRSVG
libcairo_io_la_SOURCES
+=
\
cairo-i
o-svg.c
\
cairo-i
o
-svg.h
libcairo_io_la_SOURCES
+=
\
cairo-i
mage-surface-svg.c
\
cairo-i
mage-surface
-svg.h
endif
libcairo_io_la_CFLAGS
=
$(GTHUMB_CFLAGS)
$(JPEG_CFLAGS)
$(LIBRSVG_CFLAGS)
-I
$(top_srcdir)
-I
$(top_builddir)
/gthumb
...
...
extensions/cairo_io/cairo-i
o
-jpeg.c
→
extensions/cairo_io/cairo-i
mage-surface
-jpeg.c
View file @
781ef8c1
...
...
@@ -28,7 +28,7 @@
#include <gthumb.h>
#include <extensions/jpeg_utils/jmemorysrc.h>
#include <extensions/jpeg_utils/jpeg-info.h>
#include "cairo-i
o
-jpeg.h"
#include "cairo-i
mage-surface
-jpeg.h"
/* error handler data */
...
...
extensions/cairo_io/cairo-i
o
-jpeg.h
→
extensions/cairo_io/cairo-i
mage-surface
-jpeg.h
View file @
781ef8c1
...
...
@@ -19,8 +19,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef CAIRO_I
O
_JPEG_H
#define CAIRO_I
O
_JPEG_H
#ifndef CAIRO_I
MAGE_SURFACE
_JPEG_H
#define CAIRO_I
MAGE_SURFACE
_JPEG_H
#include <gtk/gtk.h>
#include <gthumb.h>
...
...
@@ -37,4 +37,4 @@ GthImage * _cairo_image_surface_create_from_jpeg (GthFileData *file_data,
G_END_DECLS
#endif
/* CAIRO_I
O
_JPEG_H */
#endif
/* CAIRO_I
MAGE_SURFACE
_JPEG_H */
extensions/cairo_io/cairo-i
o
-png.c
→
extensions/cairo_io/cairo-i
mage-surface
-png.c
View file @
781ef8c1
...
...
@@ -22,7 +22,7 @@
#include <config.h>
#include <png.h>
#include <gthumb.h>
#include "cairo-i
o
-png.h"
#include "cairo-i
mage-surface
-png.h"
/* starting from libpng version 1.5 it is not possible
* to access inside the PNG struct directly
...
...
extensions/cairo_io/cairo-i
o
-png.h
→
extensions/cairo_io/cairo-i
mage-surface
-png.h
View file @
781ef8c1
...
...
@@ -19,8 +19,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef CAIRO_I
O
_PNG_H
#define CAIRO_I
O
_PNG_H
#ifndef CAIRO_I
MAGE_SURFACE
_PNG_H
#define CAIRO_I
MAGE_SURFACE
_PNG_H
#include <gtk/gtk.h>
#include <gthumb.h>
...
...
@@ -37,4 +37,4 @@ GthImage * _cairo_image_surface_create_from_png (GthFileData *file_data,
G_END_DECLS
#endif
/* CAIRO_I
O
_PNG_H */
#endif
/* CAIRO_I
MAGE_SURFACE
_PNG_H */
extensions/cairo_io/cairo-i
o
-svg.c
→
extensions/cairo_io/cairo-i
mage-surface
-svg.c
View file @
781ef8c1
...
...
@@ -23,7 +23,7 @@
#include <gthumb.h>
#include <librsvg/rsvg.h>
#include <librsvg/rsvg-cairo.h>
#include "cairo-i
o
-svg.h"
#include "cairo-i
mage-surface
-svg.h"
/* GthImageSvg (private class) */
...
...
extensions/cairo_io/cairo-i
o
-svg.h
→
extensions/cairo_io/cairo-i
mage-surface
-svg.h
View file @
781ef8c1
...
...
@@ -19,8 +19,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef CAIRO_I
O
_SVG_H
#define CAIRO_I
O
_SVG_H
#ifndef CAIRO_I
MAGE_SURFACE
_SVG_H
#define CAIRO_I
MAGE_SURFACE
_SVG_H
#include <gtk/gtk.h>
#include <gthumb.h>
...
...
@@ -37,4 +37,4 @@ GthImage * _cairo_image_surface_create_from_svg (GthFileData *file_data,
G_END_DECLS
#endif
/* CAIRO_I
O
_SVG_H */
#endif
/* CAIRO_I
MAGE_SURFACE
_SVG_H */
extensions/cairo_io/main.c
View file @
781ef8c1
...
...
@@ -22,9 +22,9 @@
#include <config.h>
#include <gthumb.h>
#include "cairo-i
o
-jpeg.h"
#include "cairo-i
o
-png.h"
#include "cairo-i
o
-svg.h"
#include "cairo-i
mage-surface
-jpeg.h"
#include "cairo-i
mage-surface
-png.h"
#include "cairo-i
mage-surface
-svg.h"
#include "gth-jpeg-saver.h"
#include "gth-png-saver.h"
#include "gth-tga-saver.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment