From eca35c468094fc6b7177f33ef51fa873eb88e79c Mon Sep 17 00:00:00 2001 From: Alan Fitton Date: Sun, 30 Jan 2011 10:57:07 +0000 Subject: hello world! --- src/trg-status-bar.h | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 src/trg-status-bar.h (limited to 'src/trg-status-bar.h') diff --git a/src/trg-status-bar.h b/src/trg-status-bar.h new file mode 100644 index 0000000..ed96505 --- /dev/null +++ b/src/trg-status-bar.h @@ -0,0 +1,60 @@ +/* + * transmission-remote-gtk - Transmission RPC client for GTK + * Copyright (C) 2010 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_STATUS_BAR_H_ +#define TRG_STATUS_BAR_H_ + +#include +#include + +#include "trg-torrent-model.h" + +G_BEGIN_DECLS +#define TRG_TYPE_STATUS_BAR trg_status_bar_get_type() +#define TRG_STATUS_BAR(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST ((obj), TRG_TYPE_STATUS_BAR, TrgStatusBar)) +#define TRG_STATUS_BAR_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_CAST ((klass), TRG_TYPE_STATUS_BAR, TrgStatusBarClass)) +#define TRG_IS_STATUS_BAR(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TRG_TYPE_STATUS_BAR)) +#define TRG_IS_STATUS_BAR_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_TYPE ((klass), TRG_TYPE_STATUS_BAR)) +#define TRG_STATUS_BAR_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS ((obj), TRG_TYPE_STATUS_BAR, TrgStatusBarClass)) + typedef struct { + GtkStatusbar parent; +} TrgStatusBar; + +typedef struct { + GtkStatusbarClass parent_class; +} TrgStatusBarClass; + +GType trg_status_bar_get_type(void); + +TrgStatusBar *trg_status_bar_new(GtkStatusIcon * icon); + +G_END_DECLS + void trg_status_bar_update(TrgStatusBar * sb, + TrgTorrentModelClassUpdateStats * stats); +void trg_status_bar_connect(TrgStatusBar * sb, JsonObject * session); +void trg_status_bar_push_connection_msg(TrgStatusBar * sb, + const gchar * msg); + +#endif /* TRG_STATUS_BAR_H_ */ -- cgit v1.2.3