~cairo-dock-team/ubuntu/oneiric/cairo-dock-plug-ins/2.3.0-2.1

« back to all changes in this revision

Viewing changes to weather/src/applet-read-data.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthieu Baerts (matttbe)
  • Date: 2011-04-20 20:46:51 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20110420204651-ftnpzesj6uc7qeul
Tags: 2.3.0~1-0ubuntu1
* New Upstream Version (LP: #723995)
* Upstream short ChangeLog (since 2.3.0~0rc1):
 - Updated translations
 - Updated the integration of the new versions of kwin and compiz
    (Switcher, ShowDesktop, etc.)
 - Removed a lot of useless g_print
 - Updated a few plug-ins to fit with the new version of the API (gldit)
 - Fixed a few bugs
 - Updated MeMenu, MessagingMenu and Status-Notifier to works
    with the latest version of dbusmenu, etc.
* Switch to dpkg-source 3.0 (quilt) format
* debian/cairo-dock-plug-ins.install:
 - Added new files (interfaces for python, ruby, vala and mono)
* debian/control:
 - Added new dependences for new applets (sensors and zeitgeist)
    and new interfaces (python, valac, ruby and mono)
 - Updated the version of cairo-dock build-dependences
* debian/rules:
 - Added a new CMake flag to install python interface in debian/tmp
* Updated debian/watch

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
18
*/
19
19
 
20
 
 
21
20
#ifndef __APPLET_READ_DATA__
22
21
#define  __APPLET_READ_DATA__
23
22
 
24
23
#include <cairo-dock.h>
25
24
 
26
25
 
27
 
gchar *cd_weather_get_location_data (const gchar *cLocation);
28
 
 
29
26
GList *cd_weather_parse_location_data  (const gchar *cData, GError **erreur);
30
27
 
31
28
 
32
 
void cd_weather_get_distant_data (CairoDockModuleInstance *myApplet);
 
29
void cd_weather_reset_weather_data (CDWeatherData *pData);
33
30
 
34
31
void cd_weather_reset_data (CairoDockModuleInstance *myApplet);
35
32
 
 
33
 
 
34
void cd_weather_launch_periodic_task (CairoDockModuleInstance *myApplet);
 
35
 
 
36
 
36
37
#endif