chiark / gitweb /
Added print direct move icons for x and y
authorDaid <daid303@gmail.com>
Thu, 19 Apr 2012 19:39:44 +0000 (21:39 +0200)
committerDaid <daid303@gmail.com>
Thu, 19 Apr 2012 19:39:44 +0000 (21:39 +0200)
13 files changed:
Cura/gui/printWindow.py
Cura/images/print-move-x-1.png [new file with mode: 0644]
Cura/images/print-move-x-10.png [new file with mode: 0644]
Cura/images/print-move-x-100.png [new file with mode: 0644]
Cura/images/print-move-x1.png [new file with mode: 0644]
Cura/images/print-move-x10.png [new file with mode: 0644]
Cura/images/print-move-x100.png [new file with mode: 0644]
Cura/images/print-move-y-1.png [new file with mode: 0644]
Cura/images/print-move-y-10.png [new file with mode: 0644]
Cura/images/print-move-y-100.png [new file with mode: 0644]
Cura/images/print-move-y1.png [new file with mode: 0644]
Cura/images/print-move-y10.png [new file with mode: 0644]
Cura/images/print-move-y100.png [new file with mode: 0644]

index 27d2d9eeec07db8799874814d2d57319fca83b5b..195b5942575e56d999bcd3602fe0a4944974225a 100644 (file)
@@ -122,21 +122,21 @@ class printWindow(wx.Frame):
                \r
                sizer = wx.GridBagSizer(2, 2)\r
                self.directControlPanel.SetSizer(sizer)\r
-               sizer.Add(PrintCommandButton(self, 'G1 Y100 F6000', 'object-mul-y-add.png'), pos=(0,3))\r
-               sizer.Add(PrintCommandButton(self, 'G1 Y10 F6000', 'object-mul-y-add.png'), pos=(1,3))\r
-               sizer.Add(PrintCommandButton(self, 'G1 Y1 F6000', 'object-mul-y-add.png'), pos=(2,3))\r
+               sizer.Add(PrintCommandButton(self, 'G1 Y100 F6000', 'print-move-y100.png'), pos=(0,3))\r
+               sizer.Add(PrintCommandButton(self, 'G1 Y10 F6000', 'print-move-y10.png'), pos=(1,3))\r
+               sizer.Add(PrintCommandButton(self, 'G1 Y1 F6000', 'print-move-y1.png'), pos=(2,3))\r
 \r
-               sizer.Add(PrintCommandButton(self, 'G1 Y-1 F6000', 'object-mul-y-sub.png'), pos=(4,3))\r
-               sizer.Add(PrintCommandButton(self, 'G1 Y-10 F6000', 'object-mul-y-sub.png'), pos=(5,3))\r
-               sizer.Add(PrintCommandButton(self, 'G1 Y-100 F6000', 'object-mul-y-sub.png'), pos=(6,3))\r
+               sizer.Add(PrintCommandButton(self, 'G1 Y-1 F6000', 'print-move-y-1.png'), pos=(4,3))\r
+               sizer.Add(PrintCommandButton(self, 'G1 Y-10 F6000', 'print-move-y-10.png'), pos=(5,3))\r
+               sizer.Add(PrintCommandButton(self, 'G1 Y-100 F6000', 'print-move-y-100.png'), pos=(6,3))\r
 \r
-               sizer.Add(PrintCommandButton(self, 'G1 X-100 F6000', 'object-mul-x-sub.png'), pos=(3,0))\r
-               sizer.Add(PrintCommandButton(self, 'G1 X-10 F6000', 'object-mul-x-sub.png'), pos=(3,1))\r
-               sizer.Add(PrintCommandButton(self, 'G1 X-1 F6000', 'object-mul-x-sub.png'), pos=(3,2))\r
+               sizer.Add(PrintCommandButton(self, 'G1 X-100 F6000', 'print-move-x-100.png'), pos=(3,0))\r
+               sizer.Add(PrintCommandButton(self, 'G1 X-10 F6000', 'print-move-x-10.png'), pos=(3,1))\r
+               sizer.Add(PrintCommandButton(self, 'G1 X-1 F6000', 'print-move-x-1.png'), pos=(3,2))\r
 \r
-               sizer.Add(PrintCommandButton(self, 'G1 X1 F6000', 'object-mul-x-add.png'), pos=(3,4))\r
-               sizer.Add(PrintCommandButton(self, 'G1 X10 F6000', 'object-mul-x-add.png'), pos=(3,5))\r
-               sizer.Add(PrintCommandButton(self, 'G1 X100 F6000', 'object-mul-x-add.png'), pos=(3,6))\r
+               sizer.Add(PrintCommandButton(self, 'G1 X1 F6000', 'print-move-x1.png'), pos=(3,4))\r
+               sizer.Add(PrintCommandButton(self, 'G1 X10 F6000', 'print-move-x10.png'), pos=(3,5))\r
+               sizer.Add(PrintCommandButton(self, 'G1 X100 F6000', 'print-move-x100.png'), pos=(3,6))\r
 \r
                sizer.Add(PrintCommandButton(self, 'G1 Z10 F200', 'object-max-size.png'), pos=(0,6))\r
                sizer.Add(PrintCommandButton(self, 'G1 Z1 F200', 'object-max-size.png'), pos=(1,6))\r
diff --git a/Cura/images/print-move-x-1.png b/Cura/images/print-move-x-1.png
new file mode 100644 (file)
index 0000000..e7358c8
Binary files /dev/null and b/Cura/images/print-move-x-1.png differ
diff --git a/Cura/images/print-move-x-10.png b/Cura/images/print-move-x-10.png
new file mode 100644 (file)
index 0000000..184a398
Binary files /dev/null and b/Cura/images/print-move-x-10.png differ
diff --git a/Cura/images/print-move-x-100.png b/Cura/images/print-move-x-100.png
new file mode 100644 (file)
index 0000000..08dd9a9
Binary files /dev/null and b/Cura/images/print-move-x-100.png differ
diff --git a/Cura/images/print-move-x1.png b/Cura/images/print-move-x1.png
new file mode 100644 (file)
index 0000000..93f7a3f
Binary files /dev/null and b/Cura/images/print-move-x1.png differ
diff --git a/Cura/images/print-move-x10.png b/Cura/images/print-move-x10.png
new file mode 100644 (file)
index 0000000..7d32c09
Binary files /dev/null and b/Cura/images/print-move-x10.png differ
diff --git a/Cura/images/print-move-x100.png b/Cura/images/print-move-x100.png
new file mode 100644 (file)
index 0000000..786bbf3
Binary files /dev/null and b/Cura/images/print-move-x100.png differ
diff --git a/Cura/images/print-move-y-1.png b/Cura/images/print-move-y-1.png
new file mode 100644 (file)
index 0000000..136c625
Binary files /dev/null and b/Cura/images/print-move-y-1.png differ
diff --git a/Cura/images/print-move-y-10.png b/Cura/images/print-move-y-10.png
new file mode 100644 (file)
index 0000000..5db0655
Binary files /dev/null and b/Cura/images/print-move-y-10.png differ
diff --git a/Cura/images/print-move-y-100.png b/Cura/images/print-move-y-100.png
new file mode 100644 (file)
index 0000000..cc66e4e
Binary files /dev/null and b/Cura/images/print-move-y-100.png differ
diff --git a/Cura/images/print-move-y1.png b/Cura/images/print-move-y1.png
new file mode 100644 (file)
index 0000000..60455c4
Binary files /dev/null and b/Cura/images/print-move-y1.png differ
diff --git a/Cura/images/print-move-y10.png b/Cura/images/print-move-y10.png
new file mode 100644 (file)
index 0000000..d2a9ff8
Binary files /dev/null and b/Cura/images/print-move-y10.png differ
diff --git a/Cura/images/print-move-y100.png b/Cura/images/print-move-y100.png
new file mode 100644 (file)
index 0000000..db6cb3d
Binary files /dev/null and b/Cura/images/print-move-y100.png differ