Skip to content

Commit 810f4c6

Browse files
ptzieglerazoitl
authored andcommitted
Create and add SVG variants for Match/Alignment icons
This contributes following SVG icons: - matchsize.svg - matchwidth.svg - matchheight.svg - alignbottom.svg - aligncenter.svg - alignleft.svg - alignmid.svg - alignright.svg - aligntop.svg Note: Because newer versions of SWT are able to automatically generate the "disabled", no SVGs are created for those. Contributes to eclipse-gef#732
1 parent 66928e1 commit 810f4c6

File tree

10 files changed

+2315
-9
lines changed

10 files changed

+2315
-9
lines changed

org.eclipse.gef/src/org/eclipse/gef/internal/InternalImages.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -102,20 +102,20 @@ public class InternalImages {
102102
DESC_ZOOM_IN = createDescriptor("icons/zoom_in.svg"); //$NON-NLS-1$
103103
DESC_ZOOM_OUT = createDescriptor("icons/zoom_out.svg"); //$NON-NLS-1$
104104

105-
DESC_MATCH_SIZE = createDescriptor("icons/matchsize.png"); //$NON-NLS-1$
106-
DESC_MATCH_WIDTH = createDescriptor("icons/matchwidth.png"); //$NON-NLS-1$
107-
DESC_MATCH_HEIGHT = createDescriptor("icons/matchheight.png"); //$NON-NLS-1$
105+
DESC_MATCH_SIZE = createDescriptor("icons/matchsize.svg"); //$NON-NLS-1$
106+
DESC_MATCH_WIDTH = createDescriptor("icons/matchwidth.svg"); //$NON-NLS-1$
107+
DESC_MATCH_HEIGHT = createDescriptor("icons/matchheight.svg"); //$NON-NLS-1$
108108

109109
DESC_MATCH_SIZE_DIS = createDescriptor("icons/matchsize_d.png"); //$NON-NLS-1$
110110
DESC_MATCH_WIDTH_DIS = createDescriptor("icons/matchwidth_d.png"); //$NON-NLS-1$
111111
DESC_MATCH_HEIGHT_DIS = createDescriptor("icons/matchheight_d.png"); //$NON-NLS-1$
112112

113-
DESC_VERT_ALIGN_BOTTOM = createDescriptor("icons/alignbottom.png"); //$NON-NLS-1$
114-
DESC_HORZ_ALIGN_CENTER = createDescriptor("icons/aligncenter.png"); //$NON-NLS-1$
115-
DESC_HORZ_ALIGN_LEFT = createDescriptor("icons/alignleft.png"); //$NON-NLS-1$
116-
DESC_VERT_ALIGN_MIDDLE = createDescriptor("icons/alignmid.png"); //$NON-NLS-1$
117-
DESC_HORZ_ALIGN_RIGHT = createDescriptor("icons/alignright.png"); //$NON-NLS-1$
118-
DESC_VERT_ALIGN_TOP = createDescriptor("icons/aligntop.png"); //$NON-NLS-1$
113+
DESC_VERT_ALIGN_BOTTOM = createDescriptor("icons/alignbottom.svg"); //$NON-NLS-1$
114+
DESC_HORZ_ALIGN_CENTER = createDescriptor("icons/aligncenter.svg"); //$NON-NLS-1$
115+
DESC_HORZ_ALIGN_LEFT = createDescriptor("icons/alignleft.svg"); //$NON-NLS-1$
116+
DESC_VERT_ALIGN_MIDDLE = createDescriptor("icons/alignmid.svg"); //$NON-NLS-1$
117+
DESC_HORZ_ALIGN_RIGHT = createDescriptor("icons/alignright.svg"); //$NON-NLS-1$
118+
DESC_VERT_ALIGN_TOP = createDescriptor("icons/aligntop.svg"); //$NON-NLS-1$
119119

120120
DESC_VERT_ALIGN_BOTTOM_DIS = createDescriptor("icons/alignbottom_d.png"); //$NON-NLS-1$
121121
DESC_HORZ_ALIGN_CENTER_DIS = createDescriptor("icons/aligncenter_d.png"); //$NON-NLS-1$
Lines changed: 283 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)