summaryrefslogtreecommitdiff
path: root/src/trg-rss-model.h
diff options
context:
space:
mode:
authorGravatar Alan F <ajf@eth0.org.uk>2014-02-10 18:53:52 +0000
committerGravatar Alan F <ajf@eth0.org.uk>2014-02-10 18:53:52 +0000
commitadf06453574270bf467b5f37e632c04c153ee90a (patch)
tree2a2fe8031965378d97bdea043fd46dcd79bf1108 /src/trg-rss-model.h
parent9c83dab456ebeeb2bebd9ceae7e0cc53133b1cd5 (diff)
RSS viewer now gets feed URLS from the config JSON, and displays the item titles in a treeview.
Diffstat (limited to 'src/trg-rss-model.h')
-rw-r--r--src/trg-rss-model.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/trg-rss-model.h b/src/trg-rss-model.h
new file mode 100644
index 0000000..9befa48
--- /dev/null
+++ b/src/trg-rss-model.h
@@ -0,0 +1,63 @@
+/*
+ * transmission-remote-gtk - A GTK RPC client to Transmission
+ * Copyright (C) 2011-2013 Alan Fitton
+
+ * 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 Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef TRG_RSS_MODEL_H_
+#define TRG_RSS_MODEL_H_
+
+#include <glib-object.h>
+#include <json-glib/json-glib.h>
+
+#include "trg-client.h"
+#include "trg-model.h"
+
+G_BEGIN_DECLS
+#define TRG_TYPE_RSS_MODEL trg_rss_model_get_type()
+#define TRG_RSS_MODEL(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST ((obj), TRG_TYPE_RSS_MODEL, TrgRssModel))
+#define TRG_RSS_MODEL_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST ((klass), TRG_TYPE_RSS_MODEL, TrgRssModelClass))
+#define TRG_IS_RSS_MODEL(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TRG_TYPE_RSS_MODEL))
+#define TRG_IS_RSS_MODEL_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE ((klass), TRG_TYPE_RSS_MODEL))
+#define TRG_RSS_MODEL_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), TRG_TYPE_RSS_MODEL, TrgRssModelClass))
+ typedef struct {
+ GtkListStore parent;
+} TrgRssModel;
+
+typedef struct {
+ GtkListStoreClass parent_class;
+} TrgRssModelClass;
+
+GType trg_rss_model_get_type(void);
+
+TrgRssModel *trg_rss_model_new(TrgClient *client);
+
+G_END_DECLS
+void trg_rss_model_update(TrgRssModel * model);
+
+enum {
+ RSSCOL_ID,
+ RSSCOL_TITLE,
+ RSSCOL_LINK,
+ RSSCOL_COLUMNS
+};
+
+#endif /* TRG_RSS_MODEL_H_ */