Sigma Visual builder 2.02 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Sigma Visual builder 2.02 (Default branch)
# 1  
Old 01-09-2009
Sigma Visual builder 2.02 (Default branch)

Image Sigma Visual builder is a WYSIWYG tool for rapid Web application design and involved script programming. With this powerful builder, Web applications can be developed using only drag and drop, just like what you do in VB or Delphi. More than 35 common AJAX components, including Tabs, Dialog, TreeGrid, TimeLine, and many other Web GUI components are supported. Its rich client-side API works with any backend (such as PHP, .NET, Java, or Python) or static HTML pages. The generated application has wide cross-browser compatibility. License: GNU Lesser General Public License (LGPL) Changes:
Tons of bugs in 1.1 were fixed. More components attributes and APIs were added, especially on the tree-grid. Themes are now supported, and three themes are built in. Multiple-language support was added. A template based on JavaScript was added. Drag and drop was enhanced. The visual builder interface was changed to be easier to use. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Gtk2::Builder(3pm)					User Contributed Perl Documentation					Gtk2::Builder(3pm)

NAME
Gtk2::Builder - wrapper for GtkBuilder HIERARCHY
Glib::Object +----Gtk2::Builder METHODS
builder = Gtk2::Builder->new integer = $builder->add_from_file ($filename) o $filename (localized file name) May croak with a Glib::Error in $@ on failure. integer = $builder->add_from_string ($buffer) o $buffer (string) May croak with a Glib::Error in $@ on failure. integer = $builder->add_objects_from_string ($buffer, $first_object_id, ...) o $buffer (string) o $first_object_id (string) o ... (list) Since: gtk+ 2.14 $builder->connect_signals ($user_data) $builder->connect_signals ($user_data, $package) $builder->connect_signals ($user_data, %handlers) There are four ways to let Gtk2::Builder do the signal connecting work for you: "$builder->connect_signals ($user_data)" When invoked like this, Gtk2::Builder will connect signals to functions in the calling package. The callback names are specified in the UI description. "$builder->connect_signals ($user_data, $package)" When invoked like this, Gtk2::Builder will connect signals to functions in the package $package. "$builder->connect_signals ($user_data, $object)" When invoked like this, Gtk2::Builder will connect signals to method calls against the object $object. "$builder->connect_signals ($user_data, %handlers)" When invoked like this, %handlers is used as a mapping from handler names to code references. $builder->connect_signals_full ($func, $user_data=undef) o $func (scalar) o $user_data (scalar) object = $builder->get_object ($name) o $name (string) list = $builder->get_objects string or undef = $builder->get_translation_domain $builder->set_translation_domain ($domain) o $domain (string or undef) PROPERTIES
'translation-domain' (string : default undef : readable / writable / private) The translation domain used by gettext SEE ALSO
Gtk2, Glib::Object COPYRIGHT
Copyright (C) 2003-2011 by the gtk2-perl team. This software is licensed under the LGPL. See Gtk2 for a full notice. perl v5.14.2 2012-05-27 Gtk2::Builder(3pm)