From 2ee3c8d61cb4502f8c161b366b075a1176e9e5ae Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 7 Apr 2016 14:57:33 -0400 Subject: [PATCH] BREAKING CHANGE: add package to simpledisplay and terminal --- bmp.d | 2 +- color.d | 2 +- gamehelpers.d | 2 +- minigui.d | 2 +- png.d | 4 ++-- simpledisplay.d | 20 ++++++++++---------- stb_truetype.d | 2 +- terminal.d | 2 +- xwindows.d | 2 +- 9 files changed, 19 insertions(+), 19 deletions(-) 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=
$0
WARNING=
$0
+/ -module simpledisplay; +module arsd.simpledisplay; // FIXME: icons on Windows don't look quite right, I think the transparency mask is off. @@ -1866,7 +1866,7 @@ version(without_opengl) { See more: in the 3d topic. --- - import simpledisplay; + import arsd.simpledisplay; void main() { auto window = new SimpleWindow(500, 500, "OpenGL Test", OpenGlOptions.yes); diff --git a/stb_truetype.d b/stb_truetype.d index 4430b6c..62c1228 100644 --- a/stb_truetype.d +++ b/stb_truetype.d @@ -126,7 +126,7 @@ struct TtfFont { int main(string[] args) { import std.conv; -import simpledisplay; +import arsd.simpledisplay; int c = (args.length > 1 ? to!int(args[1]) : 'a'), s = (args.length > 2 ? to!int(args[2]) : 20); import std.file; diff --git a/terminal.d b/terminal.d index ea50384..900e00c 100644 --- a/terminal.d +++ b/terminal.d @@ -55,7 +55,7 @@ * Do a full TUI widget set. I might do some basics and lay a little groundwork, but a full TUI is outside the scope of this module (unless I can do it really small.) +/ -module terminal; +module arsd.terminal; /* Widgets: diff --git a/xwindows.d b/xwindows.d index 966ba62..7013c01 100644 --- a/xwindows.d +++ b/xwindows.d @@ -16,5 +16,5 @@ writing plain applications. */ module arsd.xwindows; -public import simpledisplay; +public import arsd.simpledisplay;