mirror of https://github.com/adamdruppe/arsd.git
some bugs
This commit is contained in:
parent
0bc256f9d0
commit
179c0fe987
62
minigui.d
62
minigui.d
|
@ -679,7 +679,7 @@ class VerticalLayout : Widget {
|
||||||
// intentionally blank - widget's default is vertical layout right now
|
// intentionally blank - widget's default is vertical layout right now
|
||||||
}
|
}
|
||||||
class HorizontalLayout : Widget {
|
class HorizontalLayout : Widget {
|
||||||
this(Widget parent = null) { super(parent); }
|
this(Widget parent = null) { super(parent); if(parent) this.parentWindow = parent.parentWindow; }
|
||||||
override void recomputeChildLayout() {
|
override void recomputeChildLayout() {
|
||||||
.recomputeChildLayout!"width"(this);
|
.recomputeChildLayout!"width"(this);
|
||||||
}
|
}
|
||||||
|
@ -1234,7 +1234,7 @@ class StatusBar : Widget {
|
||||||
_parts = Parts(this);
|
_parts = Parts(this);
|
||||||
version(win32_widgets) {
|
version(win32_widgets) {
|
||||||
parentWindow = parent.parentWindow;
|
parentWindow = parent.parentWindow;
|
||||||
createWin32Window(this, "msctls_statusbar32", "D rox", 0);
|
createWin32Window(this, "msctls_statusbar32", "", 0);
|
||||||
|
|
||||||
RECT rect;
|
RECT rect;
|
||||||
GetWindowRect(hwnd, &rect);
|
GetWindowRect(hwnd, &rect);
|
||||||
|
@ -1798,6 +1798,22 @@ int[2] getChildPositionRelativeToParentHwnd(Widget c) nothrow {
|
||||||
return [x, y];
|
return [x, y];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class TextLabel : Widget {
|
||||||
|
override int maxHeight() { return Window.lineHeight; }
|
||||||
|
override int minHeight() { return Window.lineHeight; }
|
||||||
|
|
||||||
|
string label;
|
||||||
|
this(string label, Widget parent = null) {
|
||||||
|
this.label = label;
|
||||||
|
super(parent);
|
||||||
|
parentWindow = parent.parentWindow;
|
||||||
|
paint = (ScreenPainter painter) {
|
||||||
|
painter.drawText(Point(0, 0), this.label);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
class LineEdit : Widget {
|
class LineEdit : Widget {
|
||||||
version(win32_widgets)
|
version(win32_widgets)
|
||||||
this(Widget parent = null) {
|
this(Widget parent = null) {
|
||||||
|
@ -1806,6 +1822,36 @@ class LineEdit : Widget {
|
||||||
createWin32Window(this, "edit", "",
|
createWin32Window(this, "edit", "",
|
||||||
WS_BORDER|WS_HSCROLL|ES_AUTOHSCROLL);
|
WS_BORDER|WS_HSCROLL|ES_AUTOHSCROLL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
string _content;
|
||||||
|
@property string content() {
|
||||||
|
version(win32_widgets) {
|
||||||
|
char[4096] buffer;
|
||||||
|
|
||||||
|
// FIXME: GetWindowTextW
|
||||||
|
// FIXME: GetWindowTextLength
|
||||||
|
auto l = GetWindowTextA(hwnd, buffer.ptr, buffer.length - 1);
|
||||||
|
if(l >= 0)
|
||||||
|
_content = buffer[0 .. l].idup;
|
||||||
|
}
|
||||||
|
return _content;
|
||||||
|
}
|
||||||
|
@property void content(string s) {
|
||||||
|
_content = s;
|
||||||
|
version(win32_widgets)
|
||||||
|
SetWindowTextA(hwnd, toStringzInternal(s));
|
||||||
|
else
|
||||||
|
redraw();
|
||||||
|
}
|
||||||
|
|
||||||
|
void focus() {
|
||||||
|
assert(parentWindow !is null);
|
||||||
|
parentWindow.focusedWidget = this;
|
||||||
|
}
|
||||||
|
|
||||||
|
override int minHeight() { return Window.lineHeight; }
|
||||||
|
override int maxHeight() { return Window.lineHeight; }
|
||||||
|
override int widthStretchiness() { return 3; }
|
||||||
}
|
}
|
||||||
|
|
||||||
class TextEdit : Widget {
|
class TextEdit : Widget {
|
||||||
|
@ -1847,7 +1893,17 @@ class TextEdit : Widget {
|
||||||
}
|
}
|
||||||
|
|
||||||
string _content;
|
string _content;
|
||||||
@property string content() { return _content; }
|
@property string content() {
|
||||||
|
version(win32_widgets) {
|
||||||
|
char[4096] buffer;
|
||||||
|
// FIXME: GetWindowTextW
|
||||||
|
// FIXME: GetWindowTextLength
|
||||||
|
auto l = GetWindowTextA(hwnd, buffer.ptr, buffer.length - 1);
|
||||||
|
if(l >= 0)
|
||||||
|
_content = buffer[0 .. l].idup;
|
||||||
|
}
|
||||||
|
return _content;
|
||||||
|
}
|
||||||
@property void content(string s) {
|
@property void content(string s) {
|
||||||
_content = s;
|
_content = s;
|
||||||
version(win32_widgets)
|
version(win32_widgets)
|
||||||
|
|
|
@ -110,6 +110,7 @@ http://msdn.microsoft.com/en-us/library/windows/desktop/ms649016%28v=vs.85%29.as
|
||||||
|
|
||||||
// this does a delegate because it is actually an async call on X...
|
// this does a delegate because it is actually an async call on X...
|
||||||
// the receiver may never be called if the clipboard is empty or unavailable
|
// the receiver may never be called if the clipboard is empty or unavailable
|
||||||
|
/// gets plain text from the clipboard
|
||||||
void getClipboardText(SimpleWindow clipboardOwner, void delegate(string) receiver) {
|
void getClipboardText(SimpleWindow clipboardOwner, void delegate(string) receiver) {
|
||||||
version(Windows) {
|
version(Windows) {
|
||||||
HWND hwndOwner = clipboardOwner ? clipboardOwner.impl.hwnd : null;
|
HWND hwndOwner = clipboardOwner ? clipboardOwner.impl.hwnd : null;
|
||||||
|
@ -145,6 +146,7 @@ Unicode text format. Each line ends with a carriage return/linefeed (CR-LF) comb
|
||||||
} else static assert(0);
|
} else static assert(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// copies some text to the clipboard
|
||||||
void setClipboardText(SimpleWindow clipboardOwner, string text) {
|
void setClipboardText(SimpleWindow clipboardOwner, string text) {
|
||||||
assert(clipboardOwner !is null);
|
assert(clipboardOwner !is null);
|
||||||
version(Windows) {
|
version(Windows) {
|
||||||
|
@ -1342,10 +1344,26 @@ class SimpleWindow {
|
||||||
this.image = image;
|
this.image = image;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// to wrap a native window handle with very little additional processing - notably no destruction
|
||||||
|
/// this is incomplete so don't use it for much right now
|
||||||
|
this(NativeWindowHandle nativeWindow) {
|
||||||
|
version(Windows)
|
||||||
|
impl.hwnd = nativeWindow;
|
||||||
|
else version(X11)
|
||||||
|
impl.window = nativeWindow;
|
||||||
|
else static assert(0);
|
||||||
|
// FIXME: set the size correctly
|
||||||
|
width = 1;
|
||||||
|
height = 1;
|
||||||
|
nativeMapping[nativeWindow] = this;
|
||||||
|
_suppressDestruction = true; // so it doesn't try to close
|
||||||
|
}
|
||||||
|
|
||||||
this(Size size, string title = null, OpenGlOptions opengl = OpenGlOptions.no, Resizablity resizable = Resizablity.automaticallyScaleIfPossible) {
|
this(Size size, string title = null, OpenGlOptions opengl = OpenGlOptions.no, Resizablity resizable = Resizablity.automaticallyScaleIfPossible) {
|
||||||
this(size.width, size.height, title, opengl, resizable);
|
this(size.width, size.height, title, opengl, resizable);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// the base constructor
|
||||||
this(int width, int height, string title = null, OpenGlOptions opengl = OpenGlOptions.no, Resizablity resizable = Resizablity.automaticallyScaleIfPossible) {
|
this(int width, int height, string title = null, OpenGlOptions opengl = OpenGlOptions.no, Resizablity resizable = Resizablity.automaticallyScaleIfPossible) {
|
||||||
this.width = width;
|
this.width = width;
|
||||||
this.height = height;
|
this.height = height;
|
||||||
|
@ -1490,8 +1508,11 @@ class SimpleWindow {
|
||||||
version(Windows)
|
version(Windows)
|
||||||
private WindowsIcon winIcon;
|
private WindowsIcon winIcon;
|
||||||
|
|
||||||
|
bool _suppressDestruction;
|
||||||
|
|
||||||
~this() {
|
~this() {
|
||||||
|
if(_suppressDestruction)
|
||||||
|
return;
|
||||||
version(X11) {
|
version(X11) {
|
||||||
if(pixmapsHolder[0])
|
if(pixmapsHolder[0])
|
||||||
XFreePixmap(XDisplayConnection.get, pixmapsHolder[0]);
|
XFreePixmap(XDisplayConnection.get, pixmapsHolder[0]);
|
||||||
|
@ -1682,8 +1703,8 @@ version(Windows) {
|
||||||
assert(height %4 == 0);
|
assert(height %4 == 0);
|
||||||
|
|
||||||
int icon_plen = height*((width+3)&~3);
|
int icon_plen = height*((width+3)&~3);
|
||||||
int icon_mlen = height*((((width+7)/8)+3)&~3);
|
int icon_mlen = icon_plen / 8; // height*((((width+7)/8)+3)&~3);
|
||||||
icon_len = 40+icon_plen+icon_mlen;
|
icon_len = 40+icon_plen+icon_mlen + RGBQUAD.sizeof * colorCount;
|
||||||
|
|
||||||
biSize = 40;
|
biSize = 40;
|
||||||
biWidth = width;
|
biWidth = width;
|
||||||
|
@ -1693,17 +1714,22 @@ version(Windows) {
|
||||||
biSizeImage = icon_plen+icon_mlen;
|
biSizeImage = icon_plen+icon_mlen;
|
||||||
|
|
||||||
int offset = 0;
|
int offset = 0;
|
||||||
|
int andOff = icon_plen * 8; // the and offset is in bits
|
||||||
for(int y = height - 1; y >= 0; y--) {
|
for(int y = height - 1; y >= 0; y--) {
|
||||||
int off2 = y * width;
|
int off2 = y * width;
|
||||||
foreach(x; 0 .. width) {
|
foreach(x; 0 .. width) {
|
||||||
auto b = indexedImage.data[offset + x];
|
auto b = indexedImage.data[off2 + x];
|
||||||
data[off2 + x] = b;
|
data[offset] = b;
|
||||||
|
offset++;
|
||||||
|
|
||||||
// FIXME: I think the and mask is broken
|
auto andBit = andOff % 8;
|
||||||
int andOff = y * width/8 + x / 8 + icon_plen;
|
auto andIdx = andOff / 8;
|
||||||
auto andBit = x % 8;
|
|
||||||
assert(b < indexedImage.palette.length);
|
assert(b < indexedImage.palette.length);
|
||||||
data[andOff] |= ((indexedImage.palette[b].a > 127) ? (1 << andBit) : 0);
|
// this is anded to the destination, since and 0 means erase,
|
||||||
|
// we want that to be opaque, and 1 for transparent
|
||||||
|
data[andIdx] |= ((indexedImage.palette[b].a < 127) ? (1 << (7-andBit)) : 0);
|
||||||
|
|
||||||
|
andOff++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3337,6 +3363,8 @@ version(Windows) {
|
||||||
pragma(lib, "gdi32");
|
pragma(lib, "gdi32");
|
||||||
|
|
||||||
extern(Windows) {
|
extern(Windows) {
|
||||||
|
HWND GetConsoleWindow();
|
||||||
|
|
||||||
BOOL OpenClipboard(HWND hWndNewOwner);
|
BOOL OpenClipboard(HWND hWndNewOwner);
|
||||||
BOOL CloseClipboard();
|
BOOL CloseClipboard();
|
||||||
BOOL EmptyClipboard();
|
BOOL EmptyClipboard();
|
||||||
|
@ -3527,6 +3555,8 @@ nothrow:
|
||||||
alias SetWindowTextA SetWindowText;
|
alias SetWindowTextA SetWindowText;
|
||||||
|
|
||||||
BOOL SetWindowTextA(HWND hWnd, LPCTSTR lpString);
|
BOOL SetWindowTextA(HWND hWnd, LPCTSTR lpString);
|
||||||
|
int GetWindowTextA(HWND hWnd, LPTSTR lpString, int maxCount);
|
||||||
|
int GetWindowTextLength(HWND hwnd);
|
||||||
|
|
||||||
|
|
||||||
alias SetWindowLongW SetWindowLong;
|
alias SetWindowLongW SetWindowLong;
|
||||||
|
|
Loading…
Reference in New Issue