X-Git-Url: http://pileus.org/git/?p=aweather;a=blobdiff_plain;f=src%2Fmain.c;h=26fe2b84614db095121dfa1be36743a0f2deae72;hp=55d0ad94cc99ef79be4d88adb7fd283e60a44ae4;hb=274a83a00dae79b7d1927210e51214422e77d0d5;hpb=bdae122854ed2d93abf51d7ef4acfd72cd77f209 diff --git a/src/main.c b/src/main.c index 55d0ad9..26fe2b8 100644 --- a/src/main.c +++ b/src/main.c @@ -21,6 +21,10 @@ #include #include +#ifdef MAC_INTEGRATION +#include +#endif + #include #include "aweather-gui.h" @@ -47,11 +51,13 @@ static void log_func(const gchar *log_domain, GLogLevelFlags log_level, } } -static void xdg_open(GtkLinkButton *button, const gchar *link, gpointer user_data) +#if ! GTK_CHECK_VERSION(3,0,0) +static void xdg_open(GtkWidget *widget, const gchar *link, gpointer user_data) { gchar *argv[] = {"xdg-open", (gchar*)link, NULL}; g_spawn_async(NULL, argv, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, NULL, NULL); } +#endif static void on_log_level_changed(GtkSpinButton *spinner, AWeatherGui *self) { @@ -64,19 +70,23 @@ static void set_location_time(AWeatherGui *gui, char *site, char *time) /* Set time * Do this before setting setting location * so that it doesn't refresh twice */ - int year, mon, day, hour, min; - sscanf(time, "%d-%d-%d %d:%d", &year, &mon, &day, &hour, &min); - time_t sec = mktime(&(struct tm){0, year-1900, mon-1, day, hour, min}); - if (sec > 0) - grits_viewer_set_time(gui->viewer, sec); - g_debug("date = [%s] == %lu\n", time, sec); + if (time) { + int year, mon, day, hour, min; + sscanf(time, "%d-%d-%d %d:%d", &year, &mon, &day, &hour, &min); + time_t sec = mktime(&(struct tm){0, year-1900, mon-1, day, hour, min}); + if (sec > 0) + grits_viewer_set_time(gui->viewer, sec); + g_debug("date = [%s] == %lu\n", time, sec); + } /* Set location */ - for (city_t *city = cities; city->type; city++) { - if (city->type == LOCATION_CITY && g_str_equal(city->code, site)) { - grits_viewer_set_location(gui->viewer, - city->pos.lat, city->pos.lon, EARTH_R/35); - break; + if (site) { + for (city_t *city = cities; city->type; city++) { + if (city->type == LOCATION_CITY && g_str_equal(city->code, site)) { + grits_viewer_set_location(gui->viewer, + city->pos.lat, city->pos.lon, EARTH_R/35); + break; + } } } } @@ -87,6 +97,19 @@ static void set_toggle_action(AWeatherGui *gui, const char *action, gboolean ena gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(object), enabled); } +static void setup_mac(AWeatherGui *gui) +{ +#ifdef MAC_INTEGRATION + GtkWidget *menu = aweather_gui_get_widget(gui, "main_menu"); + GtkosxApplication *app = g_object_new(GTKOSX_TYPE_APPLICATION, NULL); + gtk_widget_hide(menu); + gtkosx_application_set_menu_bar(app, GTK_MENU_SHELL(menu)); + gtkosx_application_set_use_quartz_accelerators(app, TRUE); + gtkosx_application_ready(app); + //gtkosx_application_sync_menubar(app) +#endif +} + /******** * Main * ********/ @@ -94,8 +117,8 @@ int main(int argc, char *argv[]) { /* Defaults */ gint debug = 2; // G_LOG_LEVEL_WARNING - gchar *site = ""; - gchar *time = ""; + gchar *site = NULL; + gchar *time = NULL; gboolean autoupdate = FALSE; gboolean offline = FALSE; gboolean fullscreen = FALSE; @@ -118,10 +141,11 @@ int main(int argc, char *argv[]) {NULL} }; + /* All times in UTC */ + g_setenv("TZ", "UTC", TRUE); + /* Init */ GError *error = NULL; - g_thread_init(NULL); - gdk_threads_init(); if (!gtk_init_with_args(&argc, &argv, "aweather", entries, NULL, &error)) { g_print("%s\n", error->message); g_error_free(error); @@ -129,14 +153,17 @@ int main(int argc, char *argv[]) } /* Use external handler for link buttons */ - gtk_link_button_set_uri_hook(xdg_open, NULL, NULL); +#if ! GTK_CHECK_VERSION(3,0,0) + gtk_link_button_set_uri_hook((GtkLinkButtonUriFunc)xdg_open, NULL, NULL); + gtk_about_dialog_set_url_hook((GtkAboutDialogActivateLinkFunc)xdg_open, NULL, NULL); + gtk_about_dialog_set_email_hook((GtkAboutDialogActivateLinkFunc)xdg_open, NULL, NULL); +#endif /* Setup debug level for aweather_gui_new */ g_log_set_handler(NULL, G_LOG_LEVEL_MASK, log_func, NULL); log_levels = int2log(opt_debug >= 0 ? opt_debug : debug); /* Set up AWeather */ - gdk_threads_enter(); /* Pre-load some types for gtkbuilder */ GRITS_TYPE_OPENGL; AWEATHER_TYPE_GUI; @@ -173,8 +200,8 @@ int main(int argc, char *argv[]) /* Done with init, show gui */ gtk_widget_show_all(GTK_WIDGET(gui)); set_toggle_action(gui, "fullscreen", fullscreen); // Resest widget hiding + setup_mac(gui); // done after show_all gtk_main(); - gdk_threads_leave(); - gdk_display_close(gdk_display_get_default()); + //gdk_display_close(gdk_display_get_default()); return 0; }