Re: create gui
xavier mas wrote:
Hi list,
I want to create an interface with Per,l like a form for a database. Searching
in cpan.org I found many Qtk and Tk modules, but I really don't know what I
need in order to create Perl programs that can be handled through an
interface.
Can you advise me on that?
Tk is the usual suggestion, but I am very impressed with wxPerl, whcih is the Perl
interface to wxWindows. It has been created from scratch to be cross-platform,
and has a well-designed API, as well as comprehensive documentation and example
code. It is available from CPAN and its home is on the SourceForge site at
http://wxperl.sourceforge.net/.
Rob
.
Relevant Pages
- Re: create gui
... Searching in cpan.org I found many Qtk and Tk modules, but I really don't know what I need in order to create Perl programs that can be handled through an interface. ... I've been working on a set of Gtk2-Perl modules for database stuff for a couple of years now. ... (perl.beginners) - Re: Beginning C# Q
... starting out with a network app0lication, you have an awful lot to swallow. ... Designing your database is therefore, not quite the first step, particularly ... Groups table, which defines which Groups users belong to, and a Permissions ... That is why an Interface is called an Interface. ... (microsoft.public.dotnet.framework) - Re: Transaction Oriented Architecture (TOA)
... If one builds the application around the database view, ... The problem solution should not have to know about mechanisms like SQL query construction, optimizations like anticipatory caches, or encoding/decoding of dataset formats. ... Note that the CRUD/USER environments already provide exactly that encapsulation by providing a Data Layer that is isolated from the rest of the application through an interface. ... TOA/TOP proposes the database and its application domain stored procedures are the only persistence mechanism necessary, and that the benefits of a focused, single, data-permeable gateway between application and database far exceed the benefits of O/R mappings--regardless of abstraction--and that its lightweight appearance shouldn't be dismissed as missing heavyweight kick. ... (comp.object) - Re: Transaction Oriented Architecture (TOA)
... I don't think the issue is ignoring the database; it is recognizing that the database is a different subject matter applying different business rules than the problem solution. ... There is nothing to prevent abstracting the database subject matter in a classic OO manner with objects like Schema, Table, Tuple, and Query. ... I'm of the opinion that the more obvious the database (or at least its interface) is the more easily maintainable an application becomes. ... I've nothing against creating frameworks and patterns to facilitate those programming activities, but prefer the concept of a problem domain transaction to language-specific expressions mapping 1:1 with anything physically present in the database. ... (comp.object) - Re: OOP style
... Component classes have all their main logic in a Custom base class ... database access unit if they didn't already start with a full DB layer; ... My latest application started with an extensively designed object model ... Typing in the implementation of the database interface is ... (comp.lang.pascal.delphi.misc) |
|