X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/39fe10140c119ea11d2834416d59ff0995675adc..9fbe0996fdfc08527b76667ef286963587becd8d:/disobedience/menu.c diff --git a/disobedience/menu.c b/disobedience/menu.c index ded1f89..db51ba8 100644 --- a/disobedience/menu.c +++ b/disobedience/menu.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2006 Richard Kettlewell + * Copyright (C) 2006, 2007 Richard Kettlewell * * 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 @@ -17,6 +17,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA */ +/** @file disobedience/menu.c + * @brief Main menu + */ #include "disobedience.h" @@ -25,6 +28,10 @@ static GtkWidget *properties_widget; static void about_popup_got_version(void *v, const char *value); +/** @brief Called when the quit option is activated + * + * Just exits. + */ static void quit_program(gpointer attribute((unused)) callback_data, guint attribute((unused)) callback_action, GtkWidget attribute((unused)) *menu_item) { @@ -33,6 +40,11 @@ static void quit_program(gpointer attribute((unused)) callback_data, } /* TODO can we have a single parameterized callback for all these */ + +/** @brief Called when the select all option is activated + * + * Calls the per-tab select all function. + */ static void select_all(gpointer attribute((unused)) callback_data, guint attribute((unused)) callback_action, GtkWidget attribute((unused)) *menu_item) { @@ -43,6 +55,10 @@ static void select_all(gpointer attribute((unused)) callback_data, t->selectall_activate(tab); } +/** @brief Called when the track properties option is activated + * + * Calls the per-tab properties function. + */ static void properties_item(gpointer attribute((unused)) callback_data, guint attribute((unused)) callback_action, GtkWidget attribute((unused)) *menu_item) { @@ -53,6 +69,19 @@ static void properties_item(gpointer attribute((unused)) callback_data, t->properties_activate(tab); } +/** @brief Called when the login option is activated */ +static void login(gpointer attribute((unused)) callback_data, + guint attribute((unused)) callback_action, + GtkWidget attribute((unused)) *menu_item) { + login_box(); +} + +/** @brief Update menu state + * + * Determines option sensitivity according to the current tab and adjusts the + * widgets accordingly. Knows about @ref DISORDER_CONNECTED so the callbacks + * need not. + */ void menu_update(int page) { GtkWidget *tab = gtk_notebook_get_nth_page (GTK_NOTEBOOK(tabs), @@ -61,11 +90,13 @@ void menu_update(int page) { assert(t != 0); gtk_widget_set_sensitive(properties_widget, - t->properties_sensitive(tab)); + (t->properties_sensitive(tab) + && (disorder_eclient_state(client) & DISORDER_CONNECTED))); gtk_widget_set_sensitive(selectall_widget, t->selectall_sensitive(tab)); } - + +/** @brief Fetch version in order to display the about... popup */ static void about_popup(gpointer attribute((unused)) callback_data, guint attribute((unused)) callback_action, GtkWidget attribute((unused)) *menu_item) { @@ -77,6 +108,7 @@ static void about_popup(gpointer attribute((unused)) callback_data, 0); } +/** @brief Callde when version arrives, displays about... popup */ static void about_popup_got_version(void attribute((unused)) *v, const char *value) { GtkWidget *w; @@ -101,9 +133,12 @@ static void about_popup_got_version(void attribute((unused)) *v, gtk_widget_destroy(w); } +/** @brief Create the menu bar widget */ GtkWidget *menubar(GtkWidget *w) { static const GtkItemFactoryEntry entries[] = { { (char *)"/File", 0, 0, 0, (char *)"", 0 }, + { (char *)"/File/Login", (char *)"L", login, 0, + 0, 0 }, { (char *)"/File/Quit Disobedience", (char *)"Q", quit_program, 0, (char *)"", GTK_STOCK_QUIT }, { (char *)"/Edit", 0, 0, 0, (char *)"", 0 },