summaryrefslogtreecommitdiff
path: root/src/gpm-point-obj.c
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2011-12-11 12:55:19 +0100
committerStefano Karapetsas <[email protected]>2011-12-11 12:55:19 +0100
commit51175189c6d7313a3b84019e39496f957c4e6164 (patch)
treee4c2c130fa3140bca28685ef900f04a012e53dcd /src/gpm-point-obj.c
downloadmate-power-manager-51175189c6d7313a3b84019e39496f957c4e6164.tar.bz2
mate-power-manager-51175189c6d7313a3b84019e39496f957c4e6164.tar.xz
moved from Mate-Extra
Diffstat (limited to 'src/gpm-point-obj.c')
-rw-r--r--src/gpm-point-obj.c64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/gpm-point-obj.c b/src/gpm-point-obj.c
new file mode 100644
index 0000000..b3bfa5c
--- /dev/null
+++ b/src/gpm-point-obj.c
@@ -0,0 +1,64 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2008 Richard Hughes <[email protected]>
+ *
+ * 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 2 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, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#include <glib.h>
+
+#include "egg-debug.h"
+#include "gpm-point-obj.h"
+
+/**
+ * gpm_point_obj_copy:
+ **/
+GpmPointObj *
+gpm_point_obj_copy (const GpmPointObj *cobj)
+{
+ GpmPointObj *obj;
+ obj = g_new0 (GpmPointObj, 1);
+ obj->x = cobj->x;
+ obj->y = cobj->y;
+ obj->color = cobj->color;
+ return obj;
+}
+
+/**
+ * gpm_point_obj_new:
+ **/
+GpmPointObj *
+gpm_point_obj_new (void)
+{
+ GpmPointObj *obj;
+ obj = g_new0 (GpmPointObj, 1);
+ obj->x = 0.0f;
+ obj->y = 0.0f;
+ obj->color = 0x0;
+ return obj;
+}
+
+/**
+ * gpm_point_obj_free:
+ **/
+void
+gpm_point_obj_free (GpmPointObj *obj)
+{
+ if (obj == NULL)
+ return;
+ g_free (obj);
+}
+