]> saetta.ns0.it Git - libzakcgi/commitdiff
Added ZakCgiFormElementIFilter.
authorAndrea Zagli <azagli@libero.it>
Mon, 5 Oct 2015 15:24:13 +0000 (17:24 +0200)
committerAndrea Zagli <azagli@libero.it>
Mon, 5 Oct 2015 15:24:13 +0000 (17:24 +0200)
src/Makefile.am
src/formelement.c
src/formelementifilter.c [new file with mode: 0644]
src/formelementifilter.h [new file with mode: 0644]

index 62477160ab78d3ab3893a235f366fa9e4134c2bf..50aa5fa50656c20e14fe1057291034bd89aa8ca0 100644 (file)
@@ -17,6 +17,7 @@ libzakcgi_la_SOURCES = commons.c \
                        formelementtext.c \
                        formelementtextarea.c \
                        formelementsubmit.c \
+                       formelementifilter.c \
                        main.c \
                        session.c \
                        tag.c \
@@ -36,6 +37,7 @@ libzakcgi_include_HEADERS = \
                             formelementtext.h \
                             formelementtextarea.h \
                             formelementsubmit.h \
+                            formelementifilter.h \
                             main.h \
                             session.h \
                             tag.h \
index d517c58c740d18dfd2b46895589adc30cbd533da..977ac0dfed66fd95a58807930ad0a73b494a9ba1 100644 (file)
@@ -297,7 +297,7 @@ zak_cgi_form_element_construct (ZakCgiFormElement *element,
 {
        ZakCgiFormElementPrivate *priv;
 
-       g_return_val_if_fail (id != NULL, NULL);
+       g_return_if_fail (id != NULL);
 
        priv = ZAK_CGI_FORM_ELEMENT_GET_PRIVATE (element);
 
diff --git a/src/formelementifilter.c b/src/formelementifilter.c
new file mode 100644 (file)
index 0000000..00e0305
--- /dev/null
@@ -0,0 +1,35 @@
+/*
+ * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include "formelementifilter.h"
+
+G_DEFINE_INTERFACE (ZakCgiFormElementIFilter, zak_cgi_form_element_ifilter, G_TYPE_OBJECT);
+
+static void
+zak_cgi_form_element_ifilter_default_init (ZakCgiFormElementIFilterInterface *iface)
+{
+    /* add properties and signals to the interface here */
+}
+
+void
+zak_cgi_form_element_ifilter_filter (ZakCgiFormElementIFilter *self)
+{
+       g_return_if_fail (ZAK_CGI_IS_FORM_ELEMENT_IFILTER (self));
+
+       ZAK_CGI_FORM_ELEMENT_IFILTER_GET_IFACE (self)->filter (self);
+}
diff --git a/src/formelementifilter.h b/src/formelementifilter.h
new file mode 100644 (file)
index 0000000..07b264c
--- /dev/null
@@ -0,0 +1,44 @@
+/*
+ * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#ifndef __ZAK_CGI_FORM_ELEMENT_IFILTER_H__
+#define __ZAK_CGI_FORM_ELEMENT_IFILTER_H__
+
+#include <glib-object.h>
+
+
+G_BEGIN_DECLS
+
+
+#define ZAK_CGI_TYPE_FORM_ELEMENT_IFILTER zak_cgi_form_element_ifilter_get_type ()
+G_DECLARE_INTERFACE (ZakCgiFormElementIFilter, zak_cgi_form_element_ifilter, ZAK_CGI, FORM_ELEMENT_IFILTER, GObject)
+
+struct _ZakCgiFormElementIFilterInterface
+{
+       GTypeInterface parent_iface;
+
+       void (*filter) (ZakCgiFormElementIFilter *self);
+};
+
+void zak_cgi_form_element_ifilter_filter (ZakCgiFormElementIFilter *self);
+
+
+G_END_DECLS
+
+
+#endif /* __ZAK_CGI_FOR_ELEMENT_IFILTER_H__ */