December 21, 2005
"Shawn Liu" <shawn666.liu@gmail.com> says:do964j$qr7$1@digitaldaemon.com...
> "Poseidon" is an open source D editor written with DWT.
>
> features:

two bugs fixed.
file updated.

1) the GotoLine/New File/New Folder dialog pack() call removed by accident.
fixed.
2) the external tool's command with space at the end give an error result.
fixed

> binary package : http://svn.dsource.org/projects/dwt/downloads/win32/Poseidon-v0.1-bin.rar


December 21, 2005
Shawn Liu wrote:
> In article <dobbna$1ees$1@digitaldaemon.com>, Ivan Senji says...
> 
>>This sounds great. 
> 
> 
> You may download SciTE from http://www.scintilla.org and have a try. If SciTE
> can help you to enter those characters, Poseidon can be modified to satisfy you.

I can enter those characters with SciTE without problem or having to configure it anyhow.

> 
> The current suspect code maybe in ui/editor.d line 1399-1400 in the private void onKeyDown(Event e) method.
> 
> comment the two lines and recompile it. But it only involved in CTRL key ??

I need just a little bit of help on this: I'm trying to compile but i get:
stlp45dm_static.lib
 Warning 2: File Not Found stlp45dm_static.lib

What is that library and where does it come from?

Thanks!
December 22, 2005
In article <docano$r7$1@digitaldaemon.com>, Ivan Senji says...
>
>I need just a little bit of help on this: I'm trying to compile but i get: stlp45dm_static.lib
>  Warning 2: File Not Found stlp45dm_static.lib
>
>What is that library and where does it come from?
>
>Thanks!

The reason is the use of std.recls in Poseidon. May be discussed before in the NG.

It is a warning and just ignore it.


December 22, 2005
Shawn Liu wrote:
> In article <docano$r7$1@digitaldaemon.com>, Ivan Senji says...
> 
>>I need just a little bit of help on this: I'm trying to compile but i get:
>>stlp45dm_static.lib
>> Warning 2: File Not Found stlp45dm_static.lib
>>
>>What is that library and where does it come from?
>>
>>Thanks!
> 
> 
> The reason is the use of std.recls in Poseidon. May be discussed before in the
> NG.
> 
> It is a warning and just ignore it.

I must have been stupid to miss that it is only an error. I commented out those two lines you suggested and it *works* now. Thanks very very much!

Droping PSPad and CodeBlocks... :)



December 22, 2005
Hah, those D document icons look like the ones I made for the eclipseD project sometime last year or so.  I actually made some better looking ones since then.  Grab them here:

http://studiotekne.com/images/DFile.gif http://studiotekne.com/images/DModule.gif

Regards,
Garett


"Shawn Liu" <shawn666.liu@gmail.com> wrote in message news:do964j$qr7$1@digitaldaemon.com...
> "Poseidon" is an open source D editor written with DWT.
>
> features:
> 1) multiple documents/multiple projects management (early)
> 2) syntax high light powered by Scintilla
> 3) customizable hot key (short cut) for editor
> 4) customizable external tools
> 5) decent find/replace, code navigation behaviors
> 6) compile/build integrated as external tools
>
> binary package : http://svn.dsource.org/projects/dwt/downloads/win32/Poseidon-v0.1-bin.rar screen shot: http://svn.dsource.org/projects/dwt/downloads/win32/examples/poseidon.png
>
> The source code is coming with DWT 0.33 soon.
>
> - Shawn Liu
>
>
>
> 


December 22, 2005
:)

All icons and the splash screen picture can be substituted in the images folder.


"Garett Bass" <garettbass@studiotekne.com> says:dodcbf$117m$1@digitaldaemon.com...
> Hah, those D document icons look like the ones I made for the eclipseD project sometime last year or so.  I actually made some better looking ones since then.  Grab them here:
>
> http://studiotekne.com/images/DFile.gif http://studiotekne.com/images/DModule.gif
>
> Regards,
> Garett
>
>
> "Shawn Liu" <shawn666.liu@gmail.com> wrote in message news:do964j$qr7$1@digitaldaemon.com...
>> "Poseidon" is an open source D editor written with DWT.
>>
>> features:
>> 1) multiple documents/multiple projects management (early)
>> 2) syntax high light powered by Scintilla
>> 3) customizable hot key (short cut) for editor
>> 4) customizable external tools
>> 5) decent find/replace, code navigation behaviors
>> 6) compile/build integrated as external tools
>>
>> binary package : http://svn.dsource.org/projects/dwt/downloads/win32/Poseidon-v0.1-bin.rar screen shot: http://svn.dsource.org/projects/dwt/downloads/win32/examples/poseidon.png
>>
>> The source code is coming with DWT 0.33 soon.
>>
>> - Shawn Liu
>>
>>
>>
>>
>
> 


December 22, 2005
John Reimer wrote:
> One other note, I've got a couple of of projects I'm currently working on (and others that need to be updated) but I'm still interested in getting DWT on GTK going.  The more people interested, obviously, the better.  It sure would make the port go more quickly.

I'm somewhat interested on getting DWT on GTK as well (since I use Linux). But I'm not really that familiar with SWT. I looked at the code for DWT, but I wasn't sure where to start. I thought there would be some interfaces or some base code that was shared between all DWT, but the Windows code was seperate and nothing exists in the GTK portion. Taking a look at the windows portion I saw some code that appeared platform agnostic, but it imported os.win32 (or something like that). Would making a GTK version mean writing the whole thing from scratch?

Ideally I'd really like a GUI that could be used on any platform, including a platform like OpenGL (or an engine/library that uses OpenGL).
December 22, 2005
Lucas Goss wrote:

> I'm somewhat interested on getting DWT on GTK as well (since I use Linux). But I'm not really that familiar with SWT. I looked at the code for DWT, but I wasn't sure where to start. I thought there would be some interfaces or some base code that was shared between all DWT, but the Windows code was seperate and nothing exists in the GTK portion. Taking a look at the windows portion I saw some code that appeared platform agnostic, but it imported os.win32 (or something like that). Would making a GTK version mean writing the whole thing from scratch?

SWT on GTK+ /is/ a completely separate port.  Since Win32 and GTK+ are so different, there are a lot of internals that must be custom fit to make SWT run on their specific platforms.  That said the framework is the /same/ from the SWT users perspective, so an application should be sufficiently cross-platform if it uses DWT (it should only require a recompile on each platform).  There are extras like COM on win32 that are specific to that platform.  GTK+ might have some extra "add-ons" that have a similar purpose. But the base framework is the same.

There's no code submitted to the GTK portion as yet. Given the interest that seems to be appearing for GTK+ port, I'm going to work towards getting some code submitted to SVN soon.  The fact that the GTK+ version of SWT is almost a completely different code base, does make the port a challenge.  Over at dsource.org we've discussed ways of automating the port, and there is a tool still in development by one of the dsource members that should ease the Java->D process significantly.  The tool is not complete, but can be further developed as the port proceeds. Ideally, the idea is to improve the tool to the point that it can translate latest Java SWT releases to the an appropriate DWT module package.

> 
> Ideally I'd really like a GUI that could be used on any platform, including a platform like OpenGL (or an engine/library that uses OpenGL).

The SWT GUI is designed to do that.  It's just the underlayers that have be programmed to fit the OS.  An OpenGL-based version of SWT is quite possible, but would be a huge challenge to develop because there's no current Java/OpenGL SWT version that could be ported yet.  Doing the port from scratch would be exceedingly harder than using anything currently available.

-JJR
December 24, 2005
Nice work :).  Do you have icons for all D's constructs  ?

Charlie

"Garett Bass" <garettbass@studiotekne.com> wrote in message news:dodcbf$117m$1@digitaldaemon.com...
> Hah, those D document icons look like the ones I made for the eclipseD project sometime last year or so.  I actually made some better looking
ones
> since then.  Grab them here:
>
> http://studiotekne.com/images/DFile.gif http://studiotekne.com/images/DModule.gif
>
> Regards,
> Garett
>
>
> "Shawn Liu" <shawn666.liu@gmail.com> wrote in message news:do964j$qr7$1@digitaldaemon.com...
> > "Poseidon" is an open source D editor written with DWT.
> >
> > features:
> > 1) multiple documents/multiple projects management (early)
> > 2) syntax high light powered by Scintilla
> > 3) customizable hot key (short cut) for editor
> > 4) customizable external tools
> > 5) decent find/replace, code navigation behaviors
> > 6) compile/build integrated as external tools
> >
> > binary package :
> >
http://svn.dsource.org/projects/dwt/downloads/win32/Poseidon-v0.1-bin.rar
> > screen shot:
> >
http://svn.dsource.org/projects/dwt/downloads/win32/examples/poseidon.png
> >
> > The source code is coming with DWT 0.33 soon.
> >
> > - Shawn Liu
> >
> >
> >
> >
>
>


1 2 3 4
Next ›   Last »