2008-08-11 19:05:02 +00:00
|
|
|
static const char * fallback_ui_file =
|
2008-09-23 19:11:04 +00:00
|
|
|
"<ui>\n"
|
|
|
|
" <menubar name='main-window-menu'>\n"
|
|
|
|
" <menu action='torrent-menu'>\n"
|
|
|
|
" <menuitem action='add-torrent-menu'/>\n"
|
|
|
|
" <menuitem action='new-torrent'/>\n"
|
|
|
|
" <separator/>\n"
|
2008-11-13 04:10:04 +00:00
|
|
|
" <menuitem action='show-torrent-properties'/>\n"
|
2008-09-23 19:11:04 +00:00
|
|
|
" <menuitem action='open-torrent-folder'/>\n"
|
|
|
|
" <separator/>\n"
|
|
|
|
" <menuitem action='start-torrent'/>\n"
|
|
|
|
" <menuitem action='update-tracker'/>\n"
|
|
|
|
" <menuitem action='pause-torrent'/>\n"
|
|
|
|
" <menuitem action='verify-torrent'/>\n"
|
|
|
|
" <menuitem action='remove-torrent'/>\n"
|
|
|
|
" <menuitem action='delete-torrent'/>\n"
|
|
|
|
" <separator/>\n"
|
|
|
|
" <menuitem action='quit'/>\n"
|
|
|
|
" </menu>\n"
|
|
|
|
" <menu action='edit-menu'>\n"
|
|
|
|
" <menuitem action='select-all'/>\n"
|
|
|
|
" <menuitem action='deselect-all'/>\n"
|
|
|
|
" <separator/>\n"
|
|
|
|
" <menuitem action='edit-preferences'/>\n"
|
|
|
|
" </menu>\n"
|
|
|
|
" <menu action='view-menu'>\n"
|
|
|
|
" <menuitem action='minimal-view'/>\n"
|
|
|
|
" <separator/>\n"
|
|
|
|
" <menuitem action='show-toolbar'/>\n"
|
|
|
|
" <menuitem action='show-filterbar'/>\n"
|
|
|
|
" <menuitem action='show-statusbar'/>\n"
|
|
|
|
" <separator/>\n"
|
|
|
|
" <menuitem action='sort-by-activity'/>\n"
|
|
|
|
" <menuitem action='sort-by-age'/>\n"
|
|
|
|
" <menuitem action='sort-by-name'/>\n"
|
|
|
|
" <menuitem action='sort-by-progress'/>\n"
|
2009-02-18 06:03:45 +00:00
|
|
|
" <menuitem action='sort-by-eta'/>\n"
|
2008-09-23 19:11:04 +00:00
|
|
|
" <menuitem action='sort-by-ratio'/>\n"
|
|
|
|
" <menuitem action='sort-by-state'/>\n"
|
|
|
|
" <menuitem action='sort-by-tracker'/>\n"
|
|
|
|
" <separator/>\n"
|
|
|
|
" <menuitem action='sort-reversed'/>\n"
|
|
|
|
" </menu>\n"
|
|
|
|
" <menu action='help-menu'>\n"
|
|
|
|
" <menuitem action='toggle-message-log'/>\n"
|
|
|
|
" <menuitem action='show-stats'/>\n"
|
|
|
|
" <separator/>\n"
|
|
|
|
" <menuitem action='help'/>\n"
|
|
|
|
" <menuitem action='show-about-dialog'/>\n"
|
|
|
|
" </menu>\n"
|
|
|
|
" </menubar>\n"
|
|
|
|
"\n"
|
|
|
|
" <toolbar name='main-window-toolbar'>\n"
|
|
|
|
" <toolitem action='add-torrent-toolbar'/>\n"
|
|
|
|
" <toolitem action='start-torrent'/>\n"
|
|
|
|
" <toolitem action='pause-torrent'/>\n"
|
|
|
|
" <toolitem action='remove-torrent'/>\n"
|
|
|
|
" <separator/>\n"
|
2008-11-13 04:10:04 +00:00
|
|
|
" <toolitem action='show-torrent-properties'/>\n"
|
2008-09-23 19:11:04 +00:00
|
|
|
" </toolbar>\n"
|
|
|
|
"\n"
|
|
|
|
" <popup name='main-window-popup'>\n"
|
2008-11-13 04:10:04 +00:00
|
|
|
" <menuitem action='show-torrent-properties'/>\n"
|
2008-09-23 19:11:04 +00:00
|
|
|
" <menuitem action='open-torrent-folder'/>\n"
|
|
|
|
" <separator/>\n"
|
|
|
|
" <menuitem action='start-torrent'/>\n"
|
|
|
|
" <menuitem action='pause-torrent'/>\n"
|
|
|
|
" <menuitem action='verify-torrent'/>\n"
|
|
|
|
" <menuitem action='update-tracker'/>\n"
|
|
|
|
" <separator/>\n"
|
|
|
|
" <menuitem action='remove-torrent'/>\n"
|
|
|
|
" <menuitem action='delete-torrent'/>\n"
|
|
|
|
" </popup>\n"
|
|
|
|
"\n"
|
|
|
|
" <popup name='icon-popup'>\n"
|
|
|
|
" <menuitem action='add-torrent-menu'/>\n"
|
|
|
|
" <separator/>\n"
|
|
|
|
" <menuitem action='toggle-main-window'/>\n"
|
|
|
|
" <menuitem action='toggle-message-log'/>\n"
|
|
|
|
" <menuitem action='show-about-dialog'/>\n"
|
|
|
|
" <separator/>\n"
|
2008-12-03 05:15:17 +00:00
|
|
|
" <menuitem action='pause-all-torrents'/>\n"
|
|
|
|
" <separator/>\n"
|
2008-09-23 19:11:04 +00:00
|
|
|
" <menuitem action='quit'/>\n"
|
|
|
|
" </popup>\n"
|
|
|
|
"\n"
|
|
|
|
"</ui>";
|
2007-06-18 03:40:41 +00:00
|
|
|
|