diff --git a/bmp.d b/bmp.d index 09ed46a..af14f74 100644 --- a/bmp.d +++ b/bmp.d @@ -379,7 +379,7 @@ void writeBmp(MemoryImage img, string filename) { /+ void main() { - import simpledisplay; + import arsd.simpledisplay; //import std.file; //auto img = readBmp(cast(ubyte[]) std.file.read("/home/me/test2.bmp")); auto img = readBmp("/home/me/test2.bmp"); diff --git a/color.d b/color.d index c82eabc..89e06f8 100644 --- a/color.d +++ b/color.d @@ -1080,7 +1080,7 @@ img = imageFromPng(readPng(range.range)).getAsTrueColorImage; auto qimg = quantize(img, null, 2); - import simpledisplay; + import arsd.simpledisplay; auto win = new SimpleWindow(img.width, img.height * 3); auto painter = win.draw(); painter.drawImage(Point(0, 0), Image.fromMemoryImage(img)); diff --git a/gamehelpers.d b/gamehelpers.d index f46bad4..5c063cd 100644 --- a/gamehelpers.d +++ b/gamehelpers.d @@ -63,7 +63,7 @@ module arsd.gamehelpers; public import arsd.color; -public import simpledisplay; +public import arsd.simpledisplay; import std.math; public import core.time; diff --git a/minigui.d b/minigui.d index cf6ed96..40e8a9a 100644 --- a/minigui.d +++ b/minigui.d @@ -163,7 +163,7 @@ class DataView : Widget { // FIXME: menus should prolly capture the mouse. ugh i kno. -public import simpledisplay; +public import arsd.simpledisplay; version(Windows) import core.sys.windows.windows; diff --git a/png.d b/png.d index 4aece2f..288a380 100644 --- a/png.d +++ b/png.d @@ -24,7 +24,7 @@ void writePng(string filename, MemoryImage mi) { //Here's a simple test program that shows how to write a quick image viewer with simpledisplay: import arsd.png; -import simpledisplay; +import arsd.simpledisplay; import std.file; void main(string[] args) { @@ -939,7 +939,7 @@ struct Color { } */ -//import simpledisplay; +//import arsd.simpledisplay; struct RgbaScanline { Color[] pixels; diff --git a/simpledisplay.d b/simpledisplay.d index 65c5ee3..842f7de 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -104,7 +104,7 @@ --- // dmd example.d simpledisplay.d color.d - import simpledisplay; + import arsd.simpledisplay; import std.conv; void main() { @@ -155,7 +155,7 @@ --- // dmd example.d simpledisplay.d color.d - import simpledisplay; + import arsd.simpledisplay; enum paddleMovementSpeed = 8; enum paddleHeight = 48; @@ -300,7 +300,7 @@ --- // dmd example.d simpledisplay.d color.d - import simpledisplay; + import arsd.simpledisplay; void main() { auto window = new SimpleWindow(200, 200); window.eventLoop(0, @@ -330,7 +330,7 @@ --- // dmd example.d simpledisplay.d color.d - import simpledisplay; + import arsd.simpledisplay; void main() { auto window = new SimpleWindow(200, 200); { // introduce sub-scope @@ -365,7 +365,7 @@ --- // dmd example.d simpledisplay.d color.d - import simpledisplay; + import arsd.simpledisplay; void main() { @@ -377,7 +377,7 @@ --- // dmd example.d simpledisplay.d color.d png.d - import simpledisplay; + import arsd.simpledisplay; import arsd.png; void main() { @@ -404,7 +404,7 @@ The pulse timeout is used by setting a non-zero interval as the first argument to `eventLoop` function and adding a zero-argument delegate to handle the pulse. --- - import simpledisplay; + import arsd.simpledisplay; void main() { auto window = new SimpleWindow(400, 400); @@ -430,7 +430,7 @@ The pulse timer and instances of the $(LREF Timer) class may be combined at will. --- - import simpledisplay; + import arsd.simpledisplay; void main() { auto window = new SimpleWindow(400, 400); @@ -526,7 +526,7 @@ PITFALL=