BREAKING CHANGE: add package to simpledisplay and terminal

This commit is contained in:
Adam D. Ruppe 2016-04-07 14:57:33 -04:00
parent ad9eb11ee6
commit 2ee3c8d61c
9 changed files with 19 additions and 19 deletions

2
bmp.d
View File

@ -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");

View File

@ -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));

View File

@ -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;

View File

@ -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;

4
png.d
View File

@ -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;

View File

@ -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=<div class="pitfall">$0</div>
WARNING=<div class="warning">$0</div>
+/
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: <a href="#topics-3d">in the 3d topic</a>.
---
import simpledisplay;
import arsd.simpledisplay;
void main() {
auto window = new SimpleWindow(500, 500, "OpenGL Test", OpenGlOptions.yes);

View File

@ -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;

View File

@ -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:

View File

@ -16,5 +16,5 @@ writing plain applications.
*/
module arsd.xwindows;
public import simpledisplay;
public import arsd.simpledisplay;