diff options
-rw-r--r-- | hardinfo2/computer.c | 2 | ||||
-rw-r--r-- | hardinfo2/menu.c | 10 | ||||
-rw-r--r-- | hardinfo2/report.c | 2 | ||||
-rw-r--r-- | hardinfo2/uidefs.h | 3 |
4 files changed, 15 insertions, 2 deletions
diff --git a/hardinfo2/computer.c b/hardinfo2/computer.c index d31f22c3..a314adb0 100644 --- a/hardinfo2/computer.c +++ b/hardinfo2/computer.c @@ -1,6 +1,6 @@ /* * HardInfo - Displays System Information - * Copyright (C) 2003-2007 Leandro A. F. Pereira <leandro@hardinfo.org> + * Copyright (C) 2003-2008 Leandro A. F. Pereira <leandro@hardinfo.org> * * 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 diff --git a/hardinfo2/menu.c b/hardinfo2/menu.c index 6c945c9c..63601c39 100644 --- a/hardinfo2/menu.c +++ b/hardinfo2/menu.c @@ -47,6 +47,16 @@ static GtkActionEntry entries[] = { NULL, G_CALLBACK(cb_sync_manager)}, + {"OpenAction", GTK_STOCK_OPEN, + "_Open...", NULL, + NULL, + G_CALLBACK(cb_sync_manager)}, + + {"ConnectToAction", GTK_STOCK_CONNECT, + "_Connect to...", NULL, + NULL, + G_CALLBACK(cb_sync_manager)}, + {"CopyAction", GTK_STOCK_COPY, "_Copy to Clipboard", "<control>C", NULL, diff --git a/hardinfo2/report.c b/hardinfo2/report.c index 5f492af3..c0cc8563 100644 --- a/hardinfo2/report.c +++ b/hardinfo2/report.c @@ -1,6 +1,6 @@ /* * HardInfo - Displays System Information - * Copyright (C) 2003-2007 Leandro A. F. Pereira <leandro@hardinfo.org> + * Copyright (C) 2003-2008 Leandro A. F. Pereira <leandro@hardinfo.org> * * 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 diff --git a/hardinfo2/uidefs.h b/hardinfo2/uidefs.h index 8bae1998..333c9ce5 100644 --- a/hardinfo2/uidefs.h +++ b/hardinfo2/uidefs.h @@ -4,6 +4,9 @@ char *uidefs_str = "<ui>" \ " <menubar>" \ " <menu name=\"InformationMenu\" action=\"InformationMenuAction\">" \ +/*" <menuitem name=\"Open\" action=\"OpenAction\" />" \ +" <menuitem name=\"ConnectTo\" action=\"ConnectToAction\" />" \ +" <separator/>" \*/ " <menuitem name=\"Report\" action=\"ReportAction\" />" \ /*" <separator/>" \ */ " <menuitem name=\"Copy\" action=\"CopyAction\" />" \ |