Jump to page: 1 24  
Page
Thread overview
The new DWT2
Mar 21, 2009
Frank Benoit
Mar 21, 2009
Saaa
Mar 21, 2009
Frank Benoit
Mar 21, 2009
Christopher Wright
Mar 21, 2009
Piotrek
Mar 21, 2009
torhu
Mar 21, 2009
Christopher Wright
Mar 22, 2009
Frank Benoit
DWT2 Windows building error
Mar 22, 2009
yidabu
Mar 22, 2009
Frank Benoit
Mar 22, 2009
yidabu
Mar 22, 2009
Frank Benoit
Mar 22, 2009
yidabu
Mar 22, 2009
yidabu
Mar 23, 2009
Frank Benoit
Mar 23, 2009
davidl
Mar 23, 2009
Frank Benoit
Mar 23, 2009
davidl
Mar 23, 2009
davidl
Mar 23, 2009
Frank Benoit
Mar 23, 2009
Saaa
Mar 23, 2009
davidl
Mar 23, 2009
Frank Benoit
Mar 24, 2009
yidabu
Mar 24, 2009
Frank Benoit
Mar 24, 2009
Saaa
Mar 25, 2009
Frank Benoit
Mar 25, 2009
Saaa
Mar 26, 2009
Frank Benoit
Mar 24, 2009
sleek
Mar 24, 2009
Frank Benoit
March 21, 2009
Now there is the new hg repository for DWT2.

DWT2 is like dwt-win/linux/addons, but the folders are organized in the original directory structure of the Eclipse sources. This also means the packages are again like the original.

	DWT.CENTER =>
	SWT.CENTER

	import dwt.widgets.Button; =>
	import org.eclipse.swt.widgets.Button;

This makes future porting of more files and versions much more easier.

I started to make dwt2 compilable also for D2+Phobos. Support for D1+Tango will certainly stay.

The repositories dwt-win/linux/addons/samples will stay and i will support them with bug fixes for a while. But I plan to do my future work in DWT2.

Get it with Mercurial (hg) Version Control software:
First get:
	hg clone http://hg.dsource.org/projects/dwt2
To get later changes from the server
	hg pull -u

To build you need "Rake", that is the Ruby make tool and is part of a standard Ruby installation. Also DMD needs to be in the path environment variable.
March 21, 2009
I'll be trying it out for dmd 2.. how far along is it at the moment?


March 21, 2009
Saaa schrieb:
> I'll be trying it out for dmd 2.. how far along is it at the moment?

At the moment the refactoring is complete for D1+Tango.
The 'base' tree compiles also for D2+Tango and i am working on the swt
tree. But compile means really just compile. There is implementation
work needed for Phobos.

Please see also my posting: "DWT2 D2+Phobos help needed"
March 21, 2009
Frank Benoit wrote:
> Now there is the new hg repository for DWT2.
> 
> DWT2 is like dwt-win/linux/addons, but the folders are organized in the
> original directory structure of the Eclipse sources. This also means the
> packages are again like the original.
> 
> 	DWT.CENTER =>
> 	SWT.CENTER
> 
> 	import dwt.widgets.Button; =>
> 	import org.eclipse.swt.widgets.Button;

Wow, that's like twelve extra characters. I did want to try this out, but I already have gtkd, and that lets me just import gtk.Button.

It shouldn't be too hard to write a script that would generate files of the type:
module dwt.Button;
public import org.eclipse.swt.widgets.Button;
March 21, 2009
Christopher Wright pisze:
> Wow, that's like twelve extra characters. I did want to try this out,
> but I already have gtkd, and that lets me just import gtk.Button.
>
> It shouldn't be too hard to write a script that would generate files of
> the type:
> module dwt.Button;
> public import org.eclipse.swt.widgets.Button;

But SWT re-brand seems to be the better choice after all. I use Descent so I even don't type 1 character.

Cheers
March 21, 2009
On 21.03.2009 14:08, Christopher Wright wrote:
> Frank Benoit wrote:
>>  Now there is the new hg repository for DWT2.
>>
>>  DWT2 is like dwt-win/linux/addons, but the folders are organized in the
>>  original directory structure of the Eclipse sources. This also means the
>>  packages are again like the original.
>>
>>  	DWT.CENTER =>
>>  	SWT.CENTER
>>
>>  	import dwt.widgets.Button; =>
>>  	import org.eclipse.swt.widgets.Button;
>
> Wow, that's like twelve extra characters. I did want to try this out,
> but I already have gtkd, and that lets me just import gtk.Button.
>

It's a bit annoying, but seems like the right thing to do.  I'll probably just type it once for each file, then use my editor's 'duplicate line' feature for the rest.  That's what I've been doing already anyway.
March 21, 2009
torhu wrote:
> On 21.03.2009 14:08, Christopher Wright wrote:
>> Frank Benoit wrote:
>>>  Now there is the new hg repository for DWT2.
>>>
>>>  DWT2 is like dwt-win/linux/addons, but the folders are organized in the
>>>  original directory structure of the Eclipse sources. This also means the
>>>  packages are again like the original.
>>>
>>>      DWT.CENTER =>
>>>      SWT.CENTER
>>>
>>>      import dwt.widgets.Button; =>
>>>      import org.eclipse.swt.widgets.Button;
>>
>> Wow, that's like twelve extra characters. I did want to try this out,
>> but I already have gtkd, and that lets me just import gtk.Button.
>>
> 
> It's a bit annoying, but seems like the right thing to do.  I'll probably just type it once for each file, then use my editor's 'duplicate line' feature for the rest.  That's what I've been doing already anyway.

It's well motivated from a development standpoint. I don't see what it contributes, otherwise.
March 22, 2009
On Sat, 21 Mar 2009 09:57:32 +0100
Frank Benoit <keinfarbton@googlemail.com> wrote:

> Now there is the new hg repository for DWT2.
> 
> DWT2 is like dwt-win/linux/addons, but the folders are organized in the original directory structure of the Eclipse sources. This also means the packages are again like the original.
> 
> 	DWT.CENTER =>
> 	SWT.CENTER
> 
> 	import dwt.widgets.Button; =>
> 	import org.eclipse.swt.widgets.Button;
> 
> This makes future porting of more files and versions much more easier.
> 
> I started to make dwt2 compilable also for D2+Phobos. Support for D1+Tango will certainly stay.
> 
> The repositories dwt-win/linux/addons/samples will stay and i will support them with bug fixes for a while. But I plan to do my future work in DWT2.
> 
> Get it with Mercurial (hg) Version Control software:
> First get:
> 	hg clone http://hg.dsource.org/projects/dwt2
> To get later changes from the server
> 	hg pull -u
> 
> To build you need "Rake", that is the Ruby make tool and is part of a standard Ruby installation. Also DMD needs to be in the path environment variable.


Rake building error:

...dwt2>Rake base --trace
(in .../dwt2)
** Invoke base (first_time)
** Execute base
Building base/src
dmd @...dwt2\rsp
...dwt2\base\src\java\lang\wrappers.d(15): Error: identifier 'equals_t
' is not defined
...dwt2\base\src\java\lang\wrappers.d(15): Error: equals_t is used as
a type
...dwt2\base\src\java\lang\wrappers.d(15): function java.lang.wrappers
.ArrayWrapperT!(byte).ArrayWrapperT.opEquals of type void(Object o) overrides bu
t is not covariant with object.Object.opEquals of type int(Object o)
...dwt2\base\src\java\lang\wrappers.d(15): function java.lang.wrappers
.ArrayWrapperT!(byte).ArrayWrapperT.opEquals does not override any function
...dwt2\base\src\java\lang\wrappers.d(69): template instance java.lang
.wrappers.ArrayWrapperT!(byte) error instantiating
rake aborted!
compile error
.../dwt2/rakefile:83:in `block (2 levels) in buildTree'
...Ruby/lib/ruby/1.9.1/rake.rb:981:in `call'
...Ruby/lib/ruby/1.9.1/rake.rb:981:in `sh'
...Ruby/lib/ruby/1.9.1/rake.rb:1065:in `sh'
.../dwt2/rakefile:75:in `block in buildTree'
.../dwt2/rakefile:69:in `chdir'
.../dwt2/rakefile:69:in `buildTree'
.../dwt2/rakefile:116:in `block in <top (required)>'
...Ruby/lib/ruby/1.9.1/rake.rb:613:in `call'
...Ruby/lib/ruby/1.9.1/rake.rb:613:in `block in execute'
...Ruby/lib/ruby/1.9.1/rake.rb:608:in `each'
...Ruby/lib/ruby/1.9.1/rake.rb:608:in `execute'
...Ruby/lib/ruby/1.9.1/rake.rb:574:in `block in invoke_with_call_chain
'
...Ruby/lib/ruby/1.9.1/monitor.rb:190:in `mon_synchronize'
...Ruby/lib/ruby/1.9.1/rake.rb:567:in `invoke_with_call_chain'
...Ruby/lib/ruby/1.9.1/rake.rb:560:in `invoke'
...Ruby/lib/ruby/1.9.1/rake.rb:2012:in `invoke_task'
...Ruby/lib/ruby/1.9.1/rake.rb:1990:in `block (2 levels) in top_level'

...Ruby/lib/ruby/1.9.1/rake.rb:1990:in `each' ...Ruby/lib/ruby/1.9.1/rake.rb:1990:in `block in top_level' ...Ruby/lib/ruby/1.9.1/rake.rb:2029:in `standard_exception_handling' ...Ruby/lib/ruby/1.9.1/rake.rb:1984:in `top_level' ...Ruby/lib/ruby/1.9.1/rake.rb:1963:in `block in run' ...Ruby/lib/ruby/1.9.1/rake.rb:2029:in `standard_exception_handling' ...Ruby/lib/ruby/1.9.1/rake.rb:1960:in `run' ...Ruby/bin/rake.bat:39:in `<main>'





\src\dwt2>Rake swt
(in /src/dwt2)
Building org.eclipse.swt.win32.win32.x86/src
src\dwt2\org.eclipse.swt.win32.win32.x86\src\org\eclipse\swt\internal\C
ompatibility.d(15): module File cannot read file 'java\io\File.d'
rake aborted!
compile error
/dwt2/rakefile:83:in `block (2 levels) in buildTree'
(See full trace by running task with --trace)





my environment:

Ruby Windows 1.91, Rake 0.83

Tango 0.99.7, Revision:4052, last changed date:2008-10-30 DMD 1.037







-- 
yidabu <dyuyan.spam@gmail.com> http://www.dsource.org/projects/dwin

D 语言-中文(D Chinese): http://www.d-programming-language-china.org/ http://bbs.d-programming-language-china.org/ http://dwin.d-programming-language-china.org/ http://scite4d.d-programming-language-china.org/


March 22, 2009
Christopher Wright schrieb:
> It's well motivated from a development standpoint. I don't see what it contributes, otherwise.

there are existing naming conflicts of packages.
org.eclipse.swt => dwt
that was the start. Well then, rename all other swt to dwt also. So we have
SWT => DWT
SWTError => DWTError
SWTException => DWTException
SWTEventObject => DWTEventObject
SWTEventListener => DWTEventListener
then there are the packages from jface. Oh the first problem.
org.eclipse.jface where to map those. Ok, have all the future packages
from org.eclipse in dwtx, dwtx to be an abbreviation for org.eclipse
org.eclipse.jface => dwtx.jface
...
Oh, oh, now there is org.eclipse.osgi and org.osgi, now it gets a bit ugly.
You see, where this is going to?
All those renaming produce work in comparing versions and updates. A
porting project like this needs lots of comparing and merging.
It produces work for me, the developer. And I think my time is the most
valuable resource the dwt project has. And really, I see not what those
renaming contribute. Instead, when the original namings are used,
examples and snippets can be used without or less change, that is a
contribute for the user.

March 22, 2009
yidabu schrieb:
> Rake building error:
> 
> ....dwt2>Rake base --trace
> (in .../dwt2)
> ** Invoke base (first_time)
> ** Execute base
> Building base/src
> dmd @...dwt2\rsp
> ....dwt2\base\src\java\lang\wrappers.d(15): Error: identifier 'equals_t
> ' is not defined
> ....dwt2\base\src\java\lang\wrappers.d(15): Error: equals_t is used as
> a type
...

> Ruby Windows 1.91, Rake 0.83
> 
> Tango 0.99.7, Revision:4052, last changed date:2008-10-30 DMD 1.037

for dwt2 i use the tango 0.99.8 ( see svn tags/releases/0.99.8), there the type equals_t is defined in object.di. For dmd i use 1.041.
« First   ‹ Prev
1 2 3 4