summaryrefslogtreecommitdiff
path: root/libmatemixer/matemixer-app-info.c
diff options
context:
space:
mode:
authorMichal Ratajsky <[email protected]>2014-08-18 20:49:17 +0200
committerMichal Ratajsky <[email protected]>2014-08-18 20:49:17 +0200
commit5f20ab328add9442082277a57c23273a3a2125ed (patch)
treefb458ba63f25db35de6b5a9c9acf0f967020107f /libmatemixer/matemixer-app-info.c
parent94d24482d8b1013947c0e2dac7330180b6ae02f6 (diff)
downloadlibmatemixer-5f20ab328add9442082277a57c23273a3a2125ed.tar.bz2
libmatemixer-5f20ab328add9442082277a57c23273a3a2125ed.tar.xz
Global update
Diffstat (limited to 'libmatemixer/matemixer-app-info.c')
-rw-r--r--libmatemixer/matemixer-app-info.c142
1 files changed, 142 insertions, 0 deletions
diff --git a/libmatemixer/matemixer-app-info.c b/libmatemixer/matemixer-app-info.c
new file mode 100644
index 0000000..369f148
--- /dev/null
+++ b/libmatemixer/matemixer-app-info.c
@@ -0,0 +1,142 @@
+/*
+ * Copyright (C) 2014 Michal Ratajsky <[email protected]>
+ *
+ * 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 of the licence, 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "matemixer-app-info.h"
+#include "matemixer-app-info-private.h"
+
+G_DEFINE_BOXED_TYPE (MateMixerAppInfo, mate_mixer_app_info,
+ _mate_mixer_app_info_copy,
+ _mate_mixer_app_info_free)
+
+/**
+ * mate_mixer_app_info_get_name:
+ * @device: a #MateMixerAppInfo
+ */
+const gchar *
+mate_mixer_app_info_get_name (MateMixerAppInfo *info)
+{
+ g_return_val_if_fail (info != NULL, NULL);
+
+ return info->name;
+}
+
+/**
+ * mate_mixer_app_info_get_id:
+ * @device: a #MateMixerAppInfo
+ */
+const gchar *
+mate_mixer_app_info_get_id (MateMixerAppInfo *info)
+{
+ g_return_val_if_fail (info != NULL, NULL);
+
+ return info->id;
+}
+
+/**
+ * mate_mixer_app_info_get_version:
+ * @device: a #MateMixerAppInfo
+ */
+const gchar *
+mate_mixer_app_info_get_version (MateMixerAppInfo *info)
+{
+ g_return_val_if_fail (info != NULL, NULL);
+
+ return info->version;
+}
+
+/**
+ * mate_mixer_app_info_get_icon:
+ * @device: a #MateMixerAppInfo
+ */
+const gchar *
+mate_mixer_app_info_get_icon (MateMixerAppInfo *info)
+{
+ g_return_val_if_fail (info != NULL, NULL);
+
+ return info->icon;
+}
+
+MateMixerAppInfo *
+_mate_mixer_app_info_new (void)
+{
+ return g_slice_new0 (MateMixerAppInfo);
+}
+
+void
+_mate_mixer_app_info_set_name (MateMixerAppInfo *info, const gchar *name)
+{
+ g_return_if_fail (info != NULL);
+
+ g_free (info->name);
+
+ info->name = g_strdup (name);
+}
+
+void
+_mate_mixer_app_info_set_id (MateMixerAppInfo *info, const gchar *id)
+{
+ g_return_if_fail (info != NULL);
+
+ g_free (info->id);
+
+ info->id = g_strdup (id);
+}
+
+void
+_mate_mixer_app_info_set_version (MateMixerAppInfo *info, const gchar *version)
+{
+ g_return_if_fail (info != NULL);
+
+ g_free (info->version);
+
+ info->version = g_strdup (version);
+}
+
+void
+_mate_mixer_app_info_set_icon (MateMixerAppInfo *info, const gchar *icon)
+{
+ g_return_if_fail (info != NULL);
+
+ g_free (info->icon);
+
+ info->icon = g_strdup (icon);
+}
+
+MateMixerAppInfo *
+_mate_mixer_app_info_copy (MateMixerAppInfo *info)
+{
+ MateMixerAppInfo *info2;
+
+ info2 = _mate_mixer_app_info_new ();
+ info2->name = g_strdup (info->name);
+ info2->id = g_strdup (info->id);
+ info2->version = g_strdup (info->version);
+ info2->icon = g_strdup (info->icon);
+
+ return info2;
+}
+
+void
+_mate_mixer_app_info_free (MateMixerAppInfo *info)
+{
+ g_free (info->name);
+ g_free (info->id);
+ g_free (info->version);
+ g_free (info->icon);
+
+ g_slice_free (MateMixerAppInfo, info);
+}