Code Comments

Programming Forum and web based access to our favorite programming groups.
For Programmers: Free Programming Magazines | New: Database administration forum
Registration is free! Edit your profileCalendarFind other membersFrequently Asked QuestionsSearch -> 
Post New Thread











Thread
Author

SpecTcl and/or Visual Tcl: who uses them?
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

I'm curious to see if anyone out there uses either of these GUI builders
on a regular basis. I maintain packages of both for the Mac, but I
actually write my Tk code by hand--it's faster and more flexible.
Because that's less than a ringing endorsement of these tools, and
because the downloads of them by Mac users have been minimal, I'm
wondering if anyone on other platforms has more positive experiences to
report.

- --
Kevin Walzer, PhD
WordTech Software--Open Source Applications and Packages for OS X
http://www.wordtech-software.com
http://www.smallbizmac.com
http://www.kevin-walzer.com
mailto:sw@wordtech-software.com
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (Darwin)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

 iD8DBQFBeRL4JmdQs+6YVcoRAkQSAJ42rNjn+bgc
3el5ANszH/GwrGyb2ACfaNyb
dON9ocibCbPWdd1osvWFLi8=
=PW/G
-----END PGP SIGNATURE-----


Report this thread to moderator Post Follow-up to this message
Old Post
Kevin Walzer
10-22-04 08:58 PM


Re: SpecTcl and/or Visual Tcl: who uses them?
When I first started using TCL/TK about seven years ago, I found
VisualTCl a great help in putting together my first GUI driven
utltilites. There was I time when I needed to move away however.
The GUI interface building was fine, but the extra code generated
by the package was becoming burdensome and needed thinning down.
I still have a large-ish app that uses code produced by VisualTCL
though, every time I revise, those elements are re-written.

I see that the developement on VisualTCL has slowed down. Perhaps some
simplifaction is in order. Rather than striving to be a bells-n-whistles
applications development environment, it acts to be a window 'n' widget
builder. Simply producing a loadable package with procs to generate a
window that can be fine-tuned by the programmer.

Nowadays ASED is my enivironment of choice. Perhaps some extension,
where windows, dialogs and widgets can be visually assembled would be
useful.


WJG



Report this thread to moderator Post Follow-up to this message
Old Post
William J Giddings
10-23-04 01:56 PM


Re: SpecTcl and/or Visual Tcl: who uses them?
Kevin Walzer <sw@wordtech-software.com> writes:

> I'm curious to see if anyone out there uses either of these GUI builders

I do use spectcl.

Donald Arseneau                          asnd@triumf.ca


Report this thread to moderator Post Follow-up to this message
Old Post
Donald Arseneau
10-23-04 01:56 PM


Re: SpecTcl and/or Visual Tcl: who uses them?
Kevin Walzer <sw@wordtech-software.com> wrote in message news:<Zp8ed.3144$Ag.2646@fe37.usen
etserver.com>...
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> I'm curious to see if anyone out there uses either of these GUI builders
> on a regular basis. I maintain packages of both for the Mac, but I
> actually write my Tk code by hand--it's faster and more flexible.
> Because that's less than a ringing endorsement of these tools, and
> because the downloads of them by Mac users have been minimal, I'm
> wondering if anyone on other platforms has more positive experiences to
> report.

I use SpecTcl for complex gui design, but do simple gui's by hand. One
of the drawbacks to SpecTcl is that it saves a gui design in a
separate file. I an working on changing that so it will save/load a
single pure tcl/tk file. I've already done this on a version of
VisualTcl where I gut all the code editing features and just use it as
a form generator which generates unpolluted tcl  code.

The original maintainers of SpecTcl had a vision that the gui building
tool should just be that, and not a complete IDE. I agree with this
vision. On the  the hand, SpecTcl include support for Java, Perl &
HTML. I personally have no interest in maintaining the code to support
those feature, and I feel that the codebase should be forked so that
the tcl/tk gui editor can be enhanced without concern for breaking the
other language features.

My plans are:

Gut all the Java, perl & HTML support from SpecTcl.
Rework the file load/save to work on pure tcl/tk files
Add Place geometry manager support
Add a facility to make adding new widgets very easy.

I'd like to hear from the other SpecTcl maintainers or from those of
you who have Ideas to contribute so that we can move forward to
further develop this useful tool.

Steve Redler IV

Report this thread to moderator Post Follow-up to this message
Old Post
Steve Redler IV
10-23-04 08:56 PM


Re: SpecTcl and/or Visual Tcl: who uses them?
Steve Redler IV wrote:

> Kevin Walzer <sw@wordtech-software.com> wrote in message
> news:<Zp8ed.3144$Ag.2646@fe37.usenetserver.com>... 
>
> I use SpecTcl for complex gui design, but do simple gui's by hand. One
> of the drawbacks to SpecTcl is that it saves a gui design in a
> separate file. I an working on changing that so it will save/load a
> single pure tcl/tk file. I've already done this on a version of
> VisualTcl where I gut all the code editing features and just use it as
> a form generator which generates unpolluted tcl  code.
>
> The original maintainers of SpecTcl had a vision that the gui building
> tool should just be that, and not a complete IDE. I agree with this
> vision. On the  the hand, SpecTcl include support for Java, Perl &
> HTML. I personally have no interest in maintaining the code to support
> those feature, and I feel that the codebase should be forked so that
> the tcl/tk gui editor can be enhanced without concern for breaking the
> other language features.
>
> My plans are:
>
>   Gut all the Java, perl & HTML support from SpecTcl.
>   Rework the file load/save to work on pure tcl/tk files
>   Add Place geometry manager support
>   Add a facility to make adding new widgets very easy.
>
> I'd like to hear from the other SpecTcl maintainers or from those of
> you who have Ideas to contribute so that we can move forward to
> further develop this useful tool.
>
> Steve Redler IV

Before you do all that....Have you taken a look at TKproE at:

http://tkproe.sourceforge.net/



Report this thread to moderator Post Follow-up to this message
Old Post
Dennis LaBelle
10-26-04 08:57 AM


Re: SpecTcl and/or Visual Tcl: who uses them?
William J Giddings wrote:

> When I first started using TCL/TK about seven years ago, I found
> VisualTCl a great help in putting together my first GUI driven
> utltilites. There was I time when I needed to move away however.
> The GUI interface building was fine, but the extra code generated
> by the package was becoming burdensome and needed thinning down.
> I still have a large-ish app that uses code produced by VisualTCL
> though, every time I revise, those elements are re-written.
>
> I see that the developement on VisualTCL has slowed down. Perhaps some
> simplifaction is in order. Rather than striving to be a bells-n-whistles
> applications development environment, it acts to be a window 'n' widget
> builder. Simply producing a loadable package with procs to generate a
> window that can be fine-tuned by the programmer.
>
> Nowadays ASED is my enivironment of choice. Perhaps some extension,
> where windows, dialogs and widgets can be visually assembled would be
> useful.
>
>
> WJG

Have you taken a look at http://tkproe.sourceforge.net/  ??


Report this thread to moderator Post Follow-up to this message
Old Post
Dennis LaBelle
10-26-04 08:57 AM


Re: SpecTcl and/or Visual Tcl: who uses them?
Dennis

Thanks, I'll take a go.

Will

Report this thread to moderator Post Follow-up to this message
Old Post
William J Giddings
10-26-04 02:00 PM


Sponsored Links




Last Thread Next Thread Next
Search this forum -> 
Post New Thread

Tcl archive

Show a Printable Version Send to friend Email This Page to Someone! subscribe to this thread Receive updates to this thread
Computer Consultants
Programming Jobs
Visual Basic Controls
SQL Server Programming
Webservices
Java Security
Visual Studio
C# Programming
Visual J++
Software engineering
Open source Software
Perl Programming
PHP Programming
ASP Programming
ASP .NET Programming
Visual Basic Programming
Windows Scripting Host
Java Programming
Java Help
Java Beans
VBScript
Cobol
MAC Applications
Unix Programming
Forum Jump:
All times are GMT. The time now is 04:40 AM.

 
Free MCSE Braindumps | Real Estate Topics

Programming forum archive

Copyrights CodeComments.com 2004 - 2006

Powered by vBulletin Copyright 2000-2006 Jelsoft Enterprises Limited.