Author |
Message |
Topic: Mirrors |
BenHinkle
Replies: 7
Views: 26799
|
Forum: FragBots Posted: Tue Aug 30, 2005 9:02 am Subject: Mirrors |
Very cool. works like a charm on my Radeon 9600 |
Topic: sample code so far |
BenHinkle
Replies: 13
Views: 40494
|
Forum: MinWin Posted: Thu Aug 18, 2005 2:58 pm Subject: sample code so far |
The issue is that D adds the module name as part of the name mangling. So that means the MinWin library needs to know the module that contains the main() if it is gong to use D name mangling. By using ... |
Topic: TreeView ? |
BenHinkle
Replies: 1
Views: 16398
|
Forum: MinWin Posted: Sat Jul 02, 2005 4:29 pm Subject: TreeView ? |
MinWin doesn't have a TreeView widget. I'm still getting more basic stuff working. Depending on the availability of cross-platform native tree widgets I'm not sure the basic MinWin will have one. Some ... |
Topic: dmdfe |
BenHinkle
Replies: 1
Views: 16223
|
Forum: dmdfe Posted: Fri May 27, 2005 9:14 am Subject: dmdfe |
Would it be possible to set up a project for "dmdfe" the dmd front end starter kit. Right now I just have a zip file on a web site and other people would like to help maintain it since I tend to not u ... |
Topic: Background image for window on Windows |
BenHinkle
Replies: 2
Views: 21191
|
Forum: MinWin Posted: Thu Apr 28, 2005 8:32 pm Subject: Background image for window on Windows |
Try something like
paintDelegate ~= delegate void(Component source, GContext gc) {
HBITMAP bmp = cast(HBITMAP)LoadImageA(null, "img/background.bmp", IMAGE_BI ... |
Topic: Non-resizeable window on Windows |
BenHinkle
Replies: 2
Views: 18077
|
Forum: MinWin Posted: Sun Apr 24, 2005 7:46 pm Subject: Non-resizeable window on Windows |
Oh yeah. I had forgotten about finishing that resizable stuff. Sorry about that! I'll try to fix it up. |
Topic: FlowLayout.flowReverse |
BenHinkle
Replies: 3
Views: 19114
|
Forum: MinWin Posted: Thu Apr 14, 2005 1:25 pm Subject: Re: FlowLayout.flowReverse |
This program doesn't work as expected (Windows, haven't tried GTK or Motif). The last button ("baz") is never showed.
Sorry for the delay in my replies. Life got busy. The bug is in layout.d in the ... |
Topic: GTK Text Widget |
BenHinkle
Replies: 3
Views: 19586
|
Forum: MinWin Posted: Fri Apr 08, 2005 2:10 pm Subject: GTK Text Widget |
And by doing this, I can treat it as a regular D object, in that I don't need to worry about freeing it, ect?
Good point. By default PeerWrapper assumes the user will dispose of everything. To ... |
Topic: GTK Text Widget |
BenHinkle
Replies: 3
Views: 19586
|
Forum: MinWin Posted: Fri Apr 08, 2005 9:19 am Subject: GTK Text Widget |
For a multi-line text widget MinWin uses a GtkTextView. So if that is the widget you're thinking of you can grab the GTK peer using the peer property on the WindowChild. For example
MultiLineText ... |
Topic: MinWin on motif |
BenHinkle
Replies: 12
Views: 38936
|
Forum: MinWin Posted: Fri Apr 08, 2005 9:11 am Subject: MinWin on motif |
OK. Good to hear things are working for you. I've had pretty good luck with Build but I'm keeping my make files for a while. Build seems to work ok on Windows with building applications but my librari ... |
Topic: Two suggestions |
BenHinkle
Replies: 2
Views: 17979
|
Forum: MinWin Posted: Fri Apr 08, 2005 9:08 am Subject: Re: Two suggestions |
+----------------------------------------+
| +-----+ +------+ +------+ |
| | | | | <~~~~~~~~~~> | | |
| +-----+ +------+ +------+ |
+--------------- ... |
Topic: MinWin on motif |
BenHinkle
Replies: 12
Views: 38936
|
Forum: MinWin Posted: Thu Apr 07, 2005 2:49 pm Subject: MinWin on motif |
It looks then like a problem linking with Motif since that symbol is defined in the Motif library. It's declared in the motif_aux.d file that shouldn't be linked in with the final application. Are you ... |
Topic: sunset projects |
BenHinkle
Replies: 5
Views: 19128
|
Forum: Site Posted: Wed Apr 06, 2005 3:02 pm Subject: sunset projects |
The new organization looks much better. Thanks! |
Topic: sunset projects |
BenHinkle
Replies: 5
Views: 19128
|
Forum: Site Posted: Sun Apr 03, 2005 1:04 pm Subject: sunset projects |
Would it be possible to move some project to a "no longer active" area? I'm thinking of the "concurrent" project which can still be useful to people but doesn't have a maintainer for it. Someone said ... |
Topic: MinWin on motif |
BenHinkle
Replies: 12
Views: 38936
|
Forum: MinWin Posted: Sun Apr 03, 2005 12:10 pm Subject: MinWin on motif |
I couldn't reproduce the error you got but when I tried using the latest minwin.zip off of the web site I realized it wouldn't build on Linux because of some paint changes I made when on Windows. I've ... |
|