aboutsummaryrefslogtreecommitdiffstats
path: root/filter/filter-colour.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-12-14 12:59:04 +0800
committernobody <nobody@localhost>2001-12-14 12:59:04 +0800
commitdcc8171fd4c8df52faff322827876acf30c35a4a (patch)
tree32cb6f4702fe446ea804947fa4479b5431a3d24a /filter/filter-colour.h
parent969ffa703d70be312a9b9b2f7a6d2b7a8ac87c17 (diff)
downloadgsoc2013-evolution-dcc8171fd4c8df52faff322827876acf30c35a4a.tar
gsoc2013-evolution-dcc8171fd4c8df52faff322827876acf30c35a4a.tar.gz
gsoc2013-evolution-dcc8171fd4c8df52faff322827876acf30c35a4a.tar.bz2
gsoc2013-evolution-dcc8171fd4c8df52faff322827876acf30c35a4a.tar.lz
gsoc2013-evolution-dcc8171fd4c8df52faff322827876acf30c35a4a.tar.xz
gsoc2013-evolution-dcc8171fd4c8df52faff322827876acf30c35a4a.tar.zst
gsoc2013-evolution-dcc8171fd4c8df52faff322827876acf30c35a4a.zip
This commit was manufactured by cvs2svn to create tag 'EOG_0_109_1'.EOG_0_109_1
svn path=/tags/EOG_0_109_1/; revision=15041
Diffstat (limited to 'filter/filter-colour.h')
-rw-r--r--filter/filter-colour.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/filter/filter-colour.h b/filter/filter-colour.h
deleted file mode 100644
index 95ca2a4249..0000000000
--- a/filter/filter-colour.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright (C) 2000 Ximian Inc.
- *
- * Authors: Not Zed <notzed@lostzed.mmc.com.au>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 2 of the GNU General Public
- * License as published by the Free Software Foundation.
- *
- * 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, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- */
-
-#ifndef _FILTER_COLOUR_H
-#define _FILTER_COLOUR_H
-
-#include "filter-element.h"
-
-#define FILTER_COLOUR(obj) GTK_CHECK_CAST (obj, filter_colour_get_type (), FilterColour)
-#define FILTER_COLOUR_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, filter_colour_get_type (), FilterColourClass)
-#define IS_FILTER_COLOUR(obj) GTK_CHECK_TYPE (obj, filter_colour_get_type ())
-
-typedef struct _FilterColour FilterColour;
-typedef struct _FilterColourClass FilterColourClass;
-
-struct _FilterColour {
- FilterElement parent;
- struct _FilterColourPrivate *priv;
-
- guint16 r,g,b,a;
-};
-
-struct _FilterColourClass {
- FilterElementClass parent_class;
-
- /* virtual methods */
-
- /* signals */
-};
-
-guint filter_colour_get_type (void);
-FilterColour *filter_colour_new (void);
-
-/* methods */
-
-#endif /* ! _FILTER_COLOUR_H */
-