chiark
/
gitweb
/
~mdw
/
disorder
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge tag 'branchpoint-5.1' into release
[disorder]
/
disobedience
/
menu.c
diff --git
a/disobedience/menu.c
b/disobedience/menu.c
index 8947426241b3832bf90713f2d2914a18e01b49dc..b398606b289c28807ba624d21061c87903847d85 100644
(file)
--- a/
disobedience/menu.c
+++ b/
disobedience/menu.c
@@
-1,6
+1,6
@@
/*
* This file is part of DisOrder.
/*
* This file is part of DisOrder.
- * Copyright (C) 2006-2009 Richard Kettlewell
+ * Copyright (C) 2006-2009
, 2011, 2013
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
*
* 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
@@
-154,7
+154,7
@@
static void about_popup_got_version(void attribute((unused)) *v,
if(!value)
value = "[error]";
if(!value)
value = "[error]";
- byte_xasprintf(&server_version_string, "
S
erver version %s", value);
+ byte_xasprintf(&server_version_string, "
DisOrder s
erver version %s", value);
byte_xasprintf(&short_version_string, "Disobedience %s",
disorder_short_version_string);
w = gtk_dialog_new_with_buttons("About Disobedience",
byte_xasprintf(&short_version_string, "Disobedience %s",
disorder_short_version_string);
w = gtk_dialog_new_with_buttons("About Disobedience",
@@
-182,7
+182,7
@@
static void about_popup_got_version(void attribute((unused)) *v,
FALSE/*fill*/,
1/*padding*/);
gtk_box_pack_start(GTK_BOX(vbox),
FALSE/*fill*/,
1/*padding*/);
gtk_box_pack_start(GTK_BOX(vbox),
- gtk_label_new("\xC2\xA9 200
4-2009 Richard Kettlewel
l"),
+ gtk_label_new("\xC2\xA9 200
3-2013 Richard Kettlewell et a
l"),
FALSE/*expand*/,
FALSE/*fill*/,
1/*padding*/);
FALSE/*expand*/,
FALSE/*fill*/,
1/*padding*/);
@@
-215,11
+215,23
@@
void users_set_sensitive(int sensitive) {
gtk_widget_set_sensitive(w, sensitive);
}
gtk_widget_set_sensitive(w, sensitive);
}
+static void menu_check_userman(void attribute((unused)) *v,
+ const char *err,
+ const char attribute((unused)) *value) {
+ if(err && !strncmp(err, "510", 3))
+ users_set_sensitive(FALSE);
+ else
+ users_set_sensitive(TRUE);
+}
+
/** @brief Called when our rights change */
static void menu_rights_changed(const char attribute((unused)) *event,
void attribute((unused)) *eventdata,
void attribute((unused)) *callbackdata) {
/** @brief Called when our rights change */
static void menu_rights_changed(const char attribute((unused)) *event,
void attribute((unused)) *eventdata,
void attribute((unused)) *callbackdata) {
- users_set_sensitive(!!(last_rights & RIGHT_ADMIN));
+ if(last_rights & RIGHT_ADMIN)
+ disorder_eclient_userinfo(client, menu_check_userman, "", "email", 0);
+ else
+ users_set_sensitive(FALSE);
}
/** @brief Create the menu bar widget */
}
/** @brief Create the menu bar widget */
@@
-283,8
+295,8
@@
GtkWidget *menubar(GtkWidget *w) {
(char *)"<CTRL>A", /* accelerator */
menu_tab_action, /* callback */
offsetof(struct tabtype, selectall_activate), /* callback_action */
(char *)"<CTRL>A", /* accelerator */
menu_tab_action, /* callback */
offsetof(struct tabtype, selectall_activate), /* callback_action */
-
0,
/* item_type */
-
0
/* extra_data */
+
(char *)"<StockItem>",
/* item_type */
+
GTK_STOCK_SELECT_ALL,
/* extra_data */
},
{
(char *)"/Edit/Deselect all tracks", /* path */
},
{
(char *)"/Edit/Deselect all tracks", /* path */
@@
-299,8
+311,8
@@
GtkWidget *menubar(GtkWidget *w) {
0, /* accelerator */
menu_tab_action, /* callback */
offsetof(struct tabtype, properties_activate), /* callback_action */
0, /* accelerator */
menu_tab_action, /* callback */
offsetof(struct tabtype, properties_activate), /* callback_action */
-
0,
/* item_type */
-
0
/* extra_data */
+
(char *)"<StockItem>",
/* item_type */
+
GTK_STOCK_PROPERTIES,
/* extra_data */
},
{
(char *)"/Edit/Edit playlists", /* path */
},
{
(char *)"/Edit/Edit playlists", /* path */
@@
-325,8
+337,8
@@
GtkWidget *menubar(GtkWidget *w) {
(char *)"<CTRL>S", /* accelerator */
0, /* callback */
0, /* callback_action */
(char *)"<CTRL>S", /* accelerator */
0, /* callback */
0, /* callback_action */
-
0,
/* item_type */
-
0
/* extra_data */
+
(char *)"<StockItem>",
/* item_type */
+
GTK_STOCK_STOP,
/* extra_data */
},
{
(char *)"/Control/Playing", /* path */
},
{
(char *)"/Control/Playing", /* path */
@@
-360,6
+372,14
@@
GtkWidget *menubar(GtkWidget *w) {
(char *)"<CheckItem>", /* item_type */
0 /* extra_data */
},
(char *)"<CheckItem>", /* item_type */
0 /* extra_data */
},
+ {
+ (char *)"/Control/Global Preferences", /* path */
+ (char *)"<CTRL>G", /* accelerator */
+ popup_globals, /* callback */
+ 0, /* callback_action */
+ 0, /* item_type */
+ 0 /* extra_data */
+ },
{
(char *)"/Control/Activate playlist", /* path */
0, /* accelerator */
{
(char *)"/Control/Activate playlist", /* path */
0, /* accelerator */
@@
-382,11
+402,11
@@
GtkWidget *menubar(GtkWidget *w) {
0, /* accelerator */
manual_popup, /* callback */
0, /* callback_action */
0, /* accelerator */
manual_popup, /* callback */
0, /* callback_action */
-
0,
/* item_type */
-
0
/* extra_data */
+
(char *)"<StockItem>",
/* item_type */
+
GTK_STOCK_HELP,
/* extra_data */
},
{
},
{
- (char *)"/Help/About Dis
Order",
/* path */
+ (char *)"/Help/About Dis
obedience",
/* path */
0, /* accelerator */
about_popup, /* callback */
0, /* callback_action */
0, /* accelerator */
about_popup, /* callback */
0, /* callback_action */