]> Pileus Git - grits/blobdiff - src/aweather-view.h
* Road plan (HACKING)
[grits] / src / aweather-view.h
index 0dc58fd16f33ff35fbd68a65a9daadd9b660a7ad..eed4bad7c82cc0fd9217564f63d232695d320bf9 100644 (file)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 Andy Spencer <spenceal@rose-hulman.edu>
+ * 
+ * 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 3 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, see <http://www.gnu.org/licenses/>.
+ */
+
 #ifndef __AWEATHER_VIEW_H__
 #define __AWEATHER_VIEW_H__
 
@@ -18,7 +35,7 @@ struct _AWeatherView {
        GObject parent_instance;
 
        /* instance members */
-       gint   time;
+       gchar *time;
        gchar *location;
 };
 
@@ -32,10 +49,14 @@ GType aweather_view_get_type(void);
 
 /* Methods */
 AWeatherView *aweather_view_new();
-void aweather_view_set_time(AWeatherView *view, gint time);
-gint aweather_view_get_time(AWeatherView *view);
+void aweather_view_set_time(AWeatherView *view, const gchar *time);
+gchar *aweather_view_get_time(AWeatherView *view);
 
 void aweather_view_set_location(AWeatherView *view, const gchar *location);
 gchar *aweather_view_get_location(AWeatherView *view);
 
+void aweather_view_refresh(AWeatherView *view);
+void aweather_view_zoomin(AWeatherView *view);
+void aweather_view_zoomout(AWeatherView *view);
+
 #endif