1 #ifndef __MATEWEATHER_DIALOG_H_ 2 #define __MATEWEATHER_DIALOG_H_ 3 4 /* $Id$ */ 5 6 /* 7 * Papadimitriou Spiros <spapadim+@cs.cmu.edu> 8 * 9 * This code released under the GNU GPL. 10 * Read the file COPYING for more information. 11 * 12 * Main status dialog 13 * 14 */ 15 16 #include <gtk/gtk.h> 17 18 #define MATEWEATHER_I_KNOW_THIS_IS_UNSTABLE 19 20 #include "mateweather.h" 21 22 G_BEGIN_DECLS 23 24 #define MATEWEATHER_TYPE_DIALOG mateweather_dialog_get_type () 25 G_DECLARE_FINAL_TYPE (MateWeatherDialog, mateweather_dialog, 26 MATEWEATHER, DIALOG, GtkDialog) 27 28 GtkWidget *mateweather_dialog_new (MateWeatherApplet *applet); 29 void mateweather_dialog_update (MateWeatherDialog *dialog); 30 31 G_END_DECLS 32 33 #endif /* __MATEWEATHER_DIALOG_H_ */ 34 35