~meese/pantheon-photos/fix-uglyicons

164 by Jim Nelson
First stab at direct photo editing (#187); can open a single file and edit it with our tool set. Fullscreen
1
<ui>
2
1354 by Jim Nelson
#3148: Moved AlienDb/F-Spot import menu actions into LibraryWindow as a common action.
3
    <menubar name="MenuBar">
164 by Jim Nelson
First stab at direct photo editing (#187); can open a single file and edit it with our tool set. Fullscreen
4
        <menu name="FileMenu" action="FileMenu">
167 by Jim Nelson
Added Save and Save As ... to direct editing window. Moved more functionality from LibraryPhoto into
5
            <menuitem name="Save" action="Save" />
6
            <menuitem name="SaveAs" action="SaveAs" />
1270 by Eric Gregory
#2894 moved SendTo in various menus
7
            <separator />
8
            <placeholder name="PrintPlaceholder"/>
9
            <separator />
1138 by Jim Nelson
#1110: Send pictures via Nautilus Send To integration. #2248: Added View Event for Photo to the full-window page context menu. #2735: Better temporary file management. Now using /tmp and relying on the system to manage the files (i.e. delete them at boot time). This change affects all users of temp files, the largest of which right now are the WebConnectors and Send To.
10
            <menuitem name="SendTo" action="SendTo" />
821 by Allison Barlow
#2119: improve menu grouping
11
            <placeholder name="SetBackgroundPlaceholder" />
12
            <separator />
808 by Patrick Tierney
#2077: Show in File Manager command now appears on Trash Page. Required code refractoring, so that menu appears in DirectEditMode too.
13
            <menuitem name="JumpToFile" action="CommonJumpToFile" />
714 by Jim Nelson
#1552: Jump to file in file manager
14
            <separator />
164 by Jim Nelson
First stab at direct photo editing (#187); can open a single file and edit it with our tool set. Fullscreen
15
            <menuitem name="Quit" action="CommonQuit" />
16
        </menu>
17
        
282 by Jim Nelson
First stage of #65/#1001. This patch was getting large and I wanted to check it in. Undo and Redo are
18
        <menu name="EditMenu" action="EditMenu">
19
            <menuitem name="Undo" action="CommonUndo" />
20
            <menuitem name="Redo" action="CommonRedo" />
306 by Jim Nelson
#879: Delete open photo (i.e. when in full-window or fullscreen mode)
21
        </menu>
282 by Jim Nelson
First stage of #65/#1001. This patch was getting large and I wanted to check it in. Undo and Redo are
22
        
286 by Jim Nelson
Part two of #65: All adjustments in the photo editor (including each slider in the adjustments panel) are now
23
        <menu name="ViewMenu" action="ViewMenu">
24
            <menuitem name="Fullscreen" action="CommonFullscreen" />
613 by Lucas Beeler
Allows user to zoom in and out of photos in the single picture library view, the direct edit view, and the full screen view. Closes #1162.
25
            <separator />
26
            <menuitem name="IncreaseSize" action="IncreaseSize" />
27
            <menuitem name="DecreaseSize" action="DecreaseSize" />
871 by Patrick Tierney
#2169: added keyboard shortcuts for zooming to window, zooming 100%, and zooming 200%
28
            <separator />
29
            <menuitem name="ZoomFit" action="ZoomFit" />
30
            <menuitem name="Zoom100" action="Zoom100" />
31
            <menuitem name="Zoom200" action="Zoom200" />
286 by Jim Nelson
Part two of #65: All adjustments in the photo editor (including each slider in the adjustments panel) are now
32
        </menu>
33
169 by Jim Nelson
#647: Context menu added to direct editing page. Queries before losing changes to photo. Fixed thumbing
34
        <menu name="PhotoMenu" action="PhotoMenu">
35
            <menuitem name="PrevPhoto" action="PrevPhoto" />
36
            <menuitem name="NextPhoto" action="NextPhoto" />
37
            <separator />
38
            <menuitem name="RotateClockwise" action="RotateClockwise" />
39
            <menuitem name="RotateCounterclockwise" action="RotateCounterclockwise" />
876 by Jim Nelson
#2223: Mirror -> Flip Horizontally, Flip -> Flip Vertically
40
            <menuitem name="FlipHorizontally" action="FlipHorizontally" />
41
            <menuitem name="FlipVertically" action="FlipVertically" />
170 by Jim Nelson
Edit/Undo -> Photo/Revert to Original. A better solution in the future is for EditingHostPage to have its own
42
            <separator />
684 by Allison Barlow
fixes four tickets: #1820 (Don't reflow CheckerboardLayout if not in view), #1866 (version compatibility message is confusing), #1881 (crop, red-eye, adjust should have keyboard shortcuts), and #1915 (flip image vertically).
43
            <menu name="Tools" action="Tools">
44
                <menuitem name="Enhance" action="Enhance" />
45
                <menuitem name="Crop" action="Crop" />
1979 by Adam Dingle
Added Straighten to Tools menu. Closes #4745.
46
                <menuitem name="Straighten" action="Straighten" />
684 by Allison Barlow
fixes four tickets: #1820 (Don't reflow CheckerboardLayout if not in view), #1866 (version compatibility message is confusing), #1881 (crop, red-eye, adjust should have keyboard shortcuts), and #1915 (flip image vertically).
47
                <menuitem name="RedEye" action="RedEye" />
48
                <menuitem name="Adjust" action="Adjust" />
49
            </menu>
170 by Jim Nelson
Edit/Undo -> Photo/Revert to Original. A better solution in the future is for EditingHostPage to have its own
50
            <menuitem name="Revert" action="Revert" />
412 by Allison Barlow
implements set photo as desktop background feature
51
            <separator />
454 by Allison Barlow
#1299 direct-edit time/date adjust
52
            <menuitem name="AdjustDateTime" action="AdjustDateTime" />
169 by Jim Nelson
#647: Context menu added to direct editing page. Queries before losing changes to photo. Fixed thumbing
53
        </menu>
54
        
164 by Jim Nelson
First stab at direct photo editing (#187); can open a single file and edit it with our tool set. Fullscreen
55
        <menu name="HelpMenu" action="HelpMenu">
56
            <menuitem name="About" action="CommonAbout" />
57
        </menu>
58
    </menubar>
2055 by Adam Dingle
Fixed #4562 (single shared menu for all Shotwell views) and #4841 (sidebar and menu flash during import).
59
169 by Jim Nelson
#647: Context menu added to direct editing page. Queries before losing changes to photo. Fixed thumbing
60
    <popup name="DirectContextMenu">
2055 by Adam Dingle
Fixed #4562 (single shared menu for all Shotwell views) and #4841 (sidebar and menu flash during import).
61
        <placeholder name="ContextJumpPlaceholder">
62
            <menuitem name="ContextJumpToFile" action="CommonJumpToFile" />
63
        </placeholder>
169 by Jim Nelson
#647: Context menu added to direct editing page. Queries before losing changes to photo. Fixed thumbing
64
    </popup>
2055 by Adam Dingle
Fixed #4562 (single shared menu for all Shotwell views) and #4841 (sidebar and menu flash during import).
65
    
2513.2.4 by KJ Lawrence
Fixes some code styling issues and removes unnecessary MenuItems from the Help menu
66
</ui>