diff dynamin/gui/theme.d @ 104:5c8c1c2e12c0

Change from real to double. double is not dependant on the platform, and it uses less space.
author Jordan Miner <jminer7@gmail.com>
date Fri, 06 Jul 2012 18:39:45 -0500
parents 73060bc3f004
children acdbb30fee7e
line wrap: on
line diff
--- a/dynamin/gui/theme.d	Tue May 15 22:06:02 2012 -0500
+++ b/dynamin/gui/theme.d	Fri Jul 06 18:39:45 2012 -0500
@@ -21,7 +21,7 @@
  * left and top are drawn with the first color, and the right and
  * bottom are drawn with the second color.
  */
-void draw3dRectangle(Graphics g, real x, real y, real width, real height,
+void draw3dRectangle(Graphics g, double x, double y, double width, double height,
 	Color c1, Color c2) {
 	g.lineWidth = 1;
 
@@ -38,7 +38,7 @@
 	g.stroke();
 }
 
-void drawCheckerboard(Graphics g, real x, real y, real width, real height,
+void drawCheckerboard(Graphics g, double x, double y, double width, double height,
 	Color c1, Color c2, int squareSize = 1) {
 	drawCheckerboard(g, Rect(x, y, width, height), c1, c2, squareSize);
 }
@@ -116,7 +116,7 @@
 	void RadioButton_paint(CheckBox c, Graphics g);
 	void ScrollBarTrack_paint(ScrollBarTrack c, Graphics g);
 	void ScrollBarThumb_paint(ScrollBarThumb c, Graphics g);
-	real ScrollBar_size();
+	double ScrollBar_size();
 	void ArrowButton_paint(ArrowButton c, Graphics g);
 	BorderSize Scrollable_borderSize(Scrollable c);
 	void Scrollable_paint(Scrollable c, Graphics g);