1 | static const char * fallback_ui_file = |
---|
2 | "<ui>\n" |
---|
3 | " <menubar name='main-window-menu'>\n" |
---|
4 | " <menu action='torrent-menu'>\n" |
---|
5 | " <menuitem action='add-torrent-menu'/>\n" |
---|
6 | " <menuitem action='new-torrent'/>\n" |
---|
7 | " <separator/>\n" |
---|
8 | " <menuitem action='show-torrent-properties'/>\n" |
---|
9 | " <menuitem action='open-torrent-folder'/>\n" |
---|
10 | " <menuitem action='relocate-torrent'/>\n" |
---|
11 | " <separator/>\n" |
---|
12 | " <menuitem action='start-torrent'/>\n" |
---|
13 | " <menuitem action='update-tracker'/>\n" |
---|
14 | " <menuitem action='pause-torrent'/>\n" |
---|
15 | " <menuitem action='verify-torrent'/>\n" |
---|
16 | " <menuitem action='remove-torrent'/>\n" |
---|
17 | " <menuitem action='delete-torrent'/>\n" |
---|
18 | " <separator/>\n" |
---|
19 | " <menuitem action='start-all-torrents'/>\n" |
---|
20 | " <menuitem action='pause-all-torrents'/>\n" |
---|
21 | " <separator/>\n" |
---|
22 | " <menuitem action='quit'/>\n" |
---|
23 | " </menu>\n" |
---|
24 | " <menu action='edit-menu'>\n" |
---|
25 | " <menuitem action='select-all'/>\n" |
---|
26 | " <menuitem action='deselect-all'/>\n" |
---|
27 | " <separator/>\n" |
---|
28 | " <menuitem action='edit-preferences'/>\n" |
---|
29 | " </menu>\n" |
---|
30 | " <menu action='view-menu'>\n" |
---|
31 | " <menuitem action='minimal-view'/>\n" |
---|
32 | " <separator/>\n" |
---|
33 | " <menuitem action='show-toolbar'/>\n" |
---|
34 | " <menuitem action='show-filterbar'/>\n" |
---|
35 | " <menuitem action='show-statusbar'/>\n" |
---|
36 | " <separator/>\n" |
---|
37 | " <menuitem action='sort-by-activity'/>\n" |
---|
38 | " <menuitem action='sort-by-age'/>\n" |
---|
39 | " <menuitem action='sort-by-eta'/>\n" |
---|
40 | " <menuitem action='sort-by-name'/>\n" |
---|
41 | " <menuitem action='sort-by-progress'/>\n" |
---|
42 | " <menuitem action='sort-by-ratio'/>\n" |
---|
43 | " <menuitem action='sort-by-size'/>\n" |
---|
44 | " <menuitem action='sort-by-state'/>\n" |
---|
45 | " <menuitem action='sort-by-tracker'/>\n" |
---|
46 | " <separator/>\n" |
---|
47 | " <menuitem action='sort-reversed'/>\n" |
---|
48 | " </menu>\n" |
---|
49 | " <menu action='help-menu'>\n" |
---|
50 | " <menuitem action='toggle-message-log'/>\n" |
---|
51 | " <menuitem action='show-stats'/>\n" |
---|
52 | " <separator/>\n" |
---|
53 | " <menuitem action='help'/>\n" |
---|
54 | " <menuitem action='show-about-dialog'/>\n" |
---|
55 | " </menu>\n" |
---|
56 | " </menubar>\n" |
---|
57 | "\n" |
---|
58 | " <toolbar name='main-window-toolbar'>\n" |
---|
59 | " <toolitem action='add-torrent-toolbar'/>\n" |
---|
60 | " <toolitem action='start-torrent'/>\n" |
---|
61 | " <toolitem action='pause-torrent'/>\n" |
---|
62 | " <toolitem action='remove-torrent'/>\n" |
---|
63 | " <separator/>\n" |
---|
64 | " <toolitem action='show-torrent-properties'/>\n" |
---|
65 | " </toolbar>\n" |
---|
66 | "\n" |
---|
67 | " <popup name='main-window-popup'>\n" |
---|
68 | " <menuitem action='show-torrent-properties'/>\n" |
---|
69 | " <menuitem action='open-torrent-folder'/>\n" |
---|
70 | " <menuitem action='relocate-torrent'/>\n" |
---|
71 | " <separator/>\n" |
---|
72 | " <menuitem action='start-torrent'/>\n" |
---|
73 | " <menuitem action='pause-torrent'/>\n" |
---|
74 | " <menuitem action='verify-torrent'/>\n" |
---|
75 | " <menuitem action='update-tracker'/>\n" |
---|
76 | " <separator/>\n" |
---|
77 | " <menuitem action='remove-torrent'/>\n" |
---|
78 | " <menuitem action='delete-torrent'/>\n" |
---|
79 | " </popup>\n" |
---|
80 | "\n" |
---|
81 | " <popup name='icon-popup'>\n" |
---|
82 | " <menuitem action='add-torrent-menu'/>\n" |
---|
83 | " <separator/>\n" |
---|
84 | " <menuitem action='toggle-main-window'/>\n" |
---|
85 | " <menuitem action='toggle-message-log'/>\n" |
---|
86 | " <menuitem action='alt-speed-enabled'/>\n" |
---|
87 | " <separator/>\n" |
---|
88 | " <menuitem action='start-all-torrents'/>\n" |
---|
89 | " <menuitem action='pause-all-torrents'/>\n" |
---|
90 | " <separator/>\n" |
---|
91 | " <menuitem action='show-about-dialog'/>\n" |
---|
92 | " <menuitem action='quit'/>\n" |
---|
93 | " </popup>\n" |
---|
94 | "\n" |
---|
95 | "</ui>"; |
---|
96 | |
---|