Main > Free Download Search >

Free jgraph layout software for linux

jgraph layout

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 563
JGraph 5.9.2.0

JGraph 5.9.2.0


JGraph is the leading Open Source Java Graph Visualization Library. It follows Swing design patterns to provide an API familiar to Swing programmers and functionality that provides a range of features. Graph visualization is a central requirement for applications such as workflow editors, computer and telecommunication networks display, flowcharts, VLSI and CAD, business process modeling, organizational charts, entity-relationship diagrams... more>>

JGraph - JGraph is the leading Open Source Java Graph Visualization Library. It follows Swing design patterns to provide an API familiar to Swing programmers and functionality that provides a range of features. Graph visualization is a central requirement for applications such as workflow editors, computer and telecommunication networks display, flowcharts, VLSI and CAD, business process modeling, organizational charts, entity-relationship and cause and effect diagrams, and much more.

The core JGraph library provides all the features required in a graph visualization library. Built on top of the core are JGraph Layout Pro and JGraphpad Pro. JGraph Layout Pro provides graph layouts that automatically position your nodes. There is a hierarchical layout for workflows, tree layouts for organization charts and so on. JGraphpad Pro is a complete application framework that enables you to rapidly prototype your application, dramatically reducing your time to market for your product.


Enhancements:
Version 5.9.2.0

General bug fixing


System Requirements:
<<less
Download (136.7Kb)
Added: 2006-09-01 License: Free Price: Free
13 downloads
 
Other version of JGraph
JGraph 5.10.1.4JGraph - For Java 1.4 is a freely available graph component for Swing. JGraph 5.10.1.4 - Gaudenz ... JGraph can also be used on the server-side to read an GXL graph, apply a custom layout algorithm
Price: $99
License:LGPL (GNU Lesser General Public License)
Download (0.96MB)
819 downloads
Added: 2007-08-01
JGraphpad 5.6.3

JGraphpad 5.6.3


JGraphpad is a diagram editor. more>>
JGraphpad is a powerful, free diagram editor based on JGraph. It is currently available in English, French and German. With JGraphpad, you can create flow charts, maps, UML diagrams, and many other diagrams.
JGraphpad is provided as an example for the JGraph Swing component. Check out the JGraphpad applet and Web Start version.
JGraphpad is a versatile product that may be used to display and edit any type of diagram in the following fields:
- Knowledge Visualization
- Business Diagramming
- Software Engineering
- Monitoring and Configuration
- Transport Networks
- Workflow Systems
Main features:
- Supported Languages: English, French, German, Spanish, Japanese, Indonesian, Thai, Portuguese
- Flexible configuration, enable/disable features, toolbar buttons, add custom commands
- Programmable toolbar, GUI, and features (create your own toolbar buttons)
- Supports a wide range of platforms (Windows, Linux, Mac, Solaris)
- Copy and paste or drag and drop to and from Java and native applications
- Import/Export Text files, GXL, GIF, JPG, PNG, EPS, HTML Image maps, and GraphViz Dot
- Object library with flexible creation and management
- Shortest path and "spanning tree" selection
- 8 Different Automatic layouts
- Overview with Panning and Zoom
- Command History
- Printing and much more...
Enhancements:
- The release now compiles with JGraph 5.6.3, changing the use of graph references in various renderers.
- Some unused code was removed and various Javadocs were cleaned up.
<<less
Download (1.7MB)
Added: 2005-08-09 License: GPL (GNU General Public License) Price:
2745 downloads
PageLayout 1.12

PageLayout 1.12


PageLayout is a layout lanager for Java Swing/AWT. more>>
PageLayout is a layout lanager for Java Swing/AWT that encapsulates, in a single library, the functionality of many other layout managers. It allows you to lay out components in appropriately aligned rows, columns, and grids.
The elements of rows, columns, and grids may themselves be rows, columns and grids of components. As a result, relatively complex layouts can be managed with code that is compact and conceptually quite straightforward to understand and, therefore, maintain.
PageLayout is available for download for JDK1.5. PageLayout is distributed under LGPL.
The distribution contains the source, extensive documentation, and a large number of nontrivial examples that illustrate the simplicity and the comprehensive nature of the approach.
Enhancements:
- Apart from the addition of new convenience methods, no changes have been made to the code base.
- Programs running under the previous version 1.11 of the layout manager should work without any changes whatsoever.
<<less
Download (0.89MB)
Added: 2006-12-28 License: LGPL (GNU Lesser General Public License) Price:
1031 downloads
JGraphpad Community Edition 5.8.1.1

JGraphpad Community Edition 5.8.1.1


JGraphpad is a diagram editor for Swing that offers the functionality to create flow charts, maps, and UML diagrams. more>>
JGraphpad is a diagram editor for Swing that offers the functionality to create flow charts, maps, and UML diagrams.
This release compiles with JGraph 5.7.3.1. Toolbox buttons to create edges or vertices no longer persist selection state. The former behaviour can be restored by setting GPMarqueeHandler.remanent to true.
The GPMarqueeHandler, GPGraph, DefaultGraphModelFileFormatXML, and GPUserObject classes were moved to org.jgraph and their constructors are now protected so that JGraphpad is easier to extend from as a library without changing its code. Various warnings were removed and a general code cleanup undertaken.
Main features:
- Export to XML and JPG
- Built-in Object Library
- Overview
- Interactive Layout
- Print Support
- Page View
- Automatic Zoom
- Grid
- Drag and Drop
- Search
- Minimum Spanning Tree
- Shortest Path
- Component Count
- Background Image
<<less
Download (0.94MB)
Added: 2006-05-25 License: GPL (GNU General Public License) Price:
1249 downloads
MP3::Album::Layout 0.14

MP3::Album::Layout 0.14


MP3::Album::Layout is a Perl extension to manage/represent a layout for a mp3 album. more>>
MP3::Album::Layout is a Perl extension to manage/represent a layout for a mp3 album.

SYNOPSIS

use MP3::Album::Layout;

#create a new layout
my $layout = new MP3::Album::Layout;

#change the disc title
$layout->title("Perl conference");

#add a track
$layout->add_track(artist=>someone, title=>regex how to);

#edit track
$layout->edit_track(position=>1, artist=>still dont know the name);

MP3::Album::Layout represents a mp3 album layout, which contains the (artistic) information of a album.

<<less
Download (0.008MB)
Added: 2006-11-09 License: GPL (GNU General Public License) Price:
1083 downloads
Gtk2::Ex::FormFactory::Layout 0.65

Gtk2::Ex::FormFactory::Layout 0.65


Gtk2::Ex::FormFactory::Layout can do layout in a FormFactory framework. more>>
Gtk2::Ex::FormFactory::Layout can do layout in a FormFactory framework.

SYNOPSIS

package My::Layout;

use base qw/Gtk2::Ex::FormFactory::Layout/;

sub build_form { ... }
sub add_widget_to_form { ... }
...

package main;

$ff = Gtk2::Ex::FormFactory->new (
layouter => My::Layout->new(),
...
);

This class implements the layout of Containers and their Widgets in a Gtk2::Ex::FormFactory framework. "Layout" means, how are the widgets aligned to each other, how much space is between them, how are titles rendered, how labels, etc.

The idea behind Gtk2::Ex::FormFactory::Layout is to have a unique point in a GUI application which actually implements these things. The advantage of this approach is obvious: the implementation is very generic and if you want to change layout things you subclass from Gtk2::Ex::FormFactory::Layout and implement your changes there, and not at hundreds of spots distributed over the source code of your application.
The natural result: a consistent looking GUI.

<<less
Download (0.10MB)
Added: 2006-07-19 License: Perl Artistic License Price:
1192 downloads
Book Layout Generator 0.2

Book Layout Generator 0.2


Book Layout Generator is a tool that comes handy when printing long documents in a book fashion. more>>
Book Layout Generator is a tool that comes handy when printing long documents in a book fashion.

Book Layout Generator tool generates the correct page sequence to print long documents in a book fashion.

You just need to specify how many pages are there in your document and whether to print 2 or 4 pages on each papersheet side (the latter requires cutting the sheets). You can optionally divide the document into sub-volumes and pack them separately. This tool will produce the exact sequence to feed your print dialog with.

If you need to print a book from bottom to top (some books are read from right to left), you can also check the proper option for doing that.

<<less
Download (0.037MB)
Added: 2006-08-18 License: Freeware Price:
1175 downloads
Passepartout 0.7.0

Passepartout 0.7.0


Passepartout is a desktop publishing application. more>>
Passepartout is an Open Source* Desktop Publishing* application for the X Window System*. Passepartouts goal is to create a system capable of producing pre-press material of professional quality, but also to be a useful tool for any enthusiast with access to a printer.
The main focus is on making it easy for the user to create publications with a flexible layout, typical examples being magazines, brochures and leaflets.
Passepartout is still in the early stages of development, but it is already quite usable.
Main features:
- A user-friendly GTK+-based interface
- Layout templates
- An XML-based typesetting engine called xml2ps
- User-defined text formatting with XSLT stylesheets
- Unicode support
- Importing EPS (Encapsulated PostScript) files
- Importing images in JPEG, TIFF, PNG (no transparency), XPM, PNM, RAS, BMP and GIF format
- Text running around image (or text) frames
- Printing to PDF, PostScript and EPS
- Support for Type1 and TrueType fonts
<<less
Download (0.42MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
828 downloads
Log::Log4perl::Layout::XMLLayout 0.03

Log::Log4perl::Layout::XMLLayout 0.03


Log::Log4perl::Layout::XMLLayout is an XML Layout. more>>
Log::Log4perl::Layout::XMLLayout is an XML Layout.

SYNOPSIS

use Log::Log4perl::Layout::XMLLayout;

my $app = Log::Log4perl::Appender->new("Log::Log4perl::Appender::File");

my $logger = Log::Log4perl->get_logger("abc.def.ghi");
$logger->add_appender($app);

# Log with LocationInfo
my $layout = Log::Log4perl::Layout::XMLLayout->new(
{ LocationInfo => { value => TRUE },
Encoding => { value => iso8859-1}});

$app->layout($layout);
$logger->debug("Thats the message");

########################### Log4perl Config File entries for XMLLayout
log4perl.appender.A1.layout = Log::Log4perl::Layout::XMLLayout
log4perl.appender.A1.layout.LocationInfo = TRUE
log4perl.appender.A1.layout.Encoding =iso8859-1
###########################

Creates a XML layout according to http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/xml/XMLLayout.html
Logfiles generated based on XMLLayout can be viewed and filtered within the log4j chainsaw graphical user interface (see example section below). chainsaw is part of the JAVA based log4j package and can be downloaded from http://jakarta.apache.org/

The output of the XMLLayout consists of a series of log4j:event elements as defined in the log4j.dtd. It does not output a complete well-formed XML file. The output is designed to be included as an external entity in a separate file to form a correct XML file.

For example, if abc is the name of the file where the XMLLayout ouput goes, then a well-formed XML file would be:

< ?xml version="1.0" ? >
< !DOCTYPE log4j:eventSet SYSTEM "log4j.dtd" [< !ENTITY data SYSTEM "abc" >] >

< log4j:eventSet version="1.2" xmlns:log4j="http://jakarta.apache.org/log4j/" > &data; < /log4j:eventSet >

This approach enforces the independence of the XMLLayout and the appender where it is embedded.

The version attribute helps components to correctly intrepret output generated by XMLLayout. The value of this attribute should be "1.1" for output generated by log4j versions prior to log4j 1.2 (final release) and "1.2" for relase 1.2 and later.

<<less
Download (0.006MB)
Added: 2007-06-08 License: Perl Artistic License Price:
869 downloads
Galeon 2.0.3

Galeon 2.0.3


Galeon is a GNOME Web browser based on Gecko (the mozilla layout engine). more>>
Galeon is a GNOME Web browser based on Gecko (the mozilla layout engine). Galeon is fast, it has a light interface, and it is fully standards-compliant.
This release is primarily to get some nice bug fixes out to everyone; Ive highlighted these below.
Its also one of the very few times where we didnt need to make any changes to account for new mozilla releases (of course, there are lots of changes to keep up with mozilla cvs).
Enhancements:
- This release will actually build against Mozilla 1.7.5+.
<<less
Download (5.6MB)
Added: 2006-09-22 License: GPL (GNU General Public License) Price:
1127 downloads
Graph::Writer::DrGeo 0.01

Graph::Writer::DrGeo 0.01


Graph::Writer::DrGeo can save the graph output DrGeo scheme script. more>>
Graph::Writer::DrGeo can save the graph output DrGeo scheme script.

SYNOPSIS

my $g = new Graph;

# Add some vertices/edges to $g

my $writer = Graph::Writer::DrGeo->new();
$writer->write_graph($g,"graph.scm");

# graph.scm can be evaluated and rendered with Dr.Geo

Dr. Geo is a GTK interactive geometry software. It allows one to create geometric figure plus the interactive manipulation of such figure in respect with their geometric constraints. It is useable in teaching situation with students from primary or secondary level.

Besides the general file format, Dr.Geo also provide a dynamic graph definition using the language of Scheme. This module save any Graph object into Scheme language, which can be evaluated and rendered in Dr.Geo.

So far the default layout is the circle layout, more kind of layout could be added, and patches welcome.

<<less
Download (0.008MB)
Added: 2006-07-19 License: Perl Artistic License Price:
1193 downloads
MP3::Album::Layout::Fetcher 0.14

MP3::Album::Layout::Fetcher 0.14


MP3::Album::Layout::Fetcher is a Perl extension to manage fetchers of album layouts. more>>
MP3::Album::Layout::Fetcher is a Perl extension to manage fetchers of album layouts.

This module is a fetcher manager. It searches for modules in the MP3::Album::Layout::Fetcher::* name space and registers them as available fetchers.

The fetcher modules are called by MP3::Album::Layout::Fetcher and they return lists of album layouts (MP3::Album::Layout).

This module calls the respective Fetcher->fetch() method and returns the result.
In case of error the Fetchers must return undef with the error description in $@.

The fetcher selection is made by the "method" parameter passed to the fetch() of this module.

The value of the "method" parameter must be a * part of the MP3::Album::Layout::Fetcher::* fetcher package name. (i.e. for MP3::Album::Layout::Fetcher::CDDB the method is CDDB).

<<less
Download (0.008MB)
Added: 2006-11-09 License: Perl Artistic License Price:
1079 downloads
Gtk2::Ex::MindMapView::Layout::Group 0.000001

Gtk2::Ex::MindMapView::Layout::Group 0.000001


Gtk2::Ex::MindMapView::Layout::Group is a group of items displayed on canvas. more>>
Gtk2::Ex::MindMapView::Layout::Group is a group of items displayed on canvas.

SYNOPSIS

use base Gtk2::Ex::MindMapView::Layout::Group;

Base class for the layout modules. This module is internal to Gtk2::Ex::MindMapView.

INTERFACE

new()

Instantiates an object and intializes the x, y, width, and height properties of the object.

get(property)

Returns the value of the x, y, width or height properties.

get_horizontal_padding()

Returns the horizontal padding between columns.

get_max_width()

Returns the maximum width of a column. This is used to limit the width of a Gtk2::Ex::MindMapView::Item when it is first placed in the Gtk2::Ex::MindMapView.

get_vertical_padding()

Returns the vertical spacing between Gtk2::Ex::MindMapView::Items.

set(property=>$value)

Sets the value of the x, y, width or height properties.

DIAGNOSTICS

Undefined value for key $key.

You tried to get a value that is not defined in this module.

<<less
Download (0.049MB)
Added: 2007-01-27 License: Perl Artistic License Price:
1000 downloads
phpLedAds 2.2

phpLedAds 2.2


phpLedAds provides a simple yet very powerful PHP/MySql driven banner rotation program. more>>
phpLedAds provides a simple yet very powerful PHP/MySql driven banner rotation program.
This is a simple yet very powerful PHP/MySql driven banner rotation program. Complete with Administrative control panel and statistics for each ad. This ad program was designed for single site use. Version 2.2 includes many upgrades including improved database design and graphed statistics (created on-the-fly). Also supports either standard image-based ads (with upload support) or rich text ads -- and so much more! Version 2.2 includes many bug fixes as well as more graphs and advanced features!
Main features:
- Better Database Design - Massive improvements made over the previous version of phpLedAds (formally Led-Ads)
- Simple Interface - The interface, while powerful and very functional, is very easy to use. No more guessing what something does!
- Graphical Stats - If your host has GD support compiled into php, LedAds will generate graphs representing displays and clicks from the previous 10 days -- automatically! (Graphs creating using JGraph 1.11).
- NEW for version 2.2! -- 30-day history graph comparing displays-to-clicks!
- Two Ad Types - You can use standard ad banners or use your own rich-media adcode (such as what you would get from an ad company).
- Three Link Options - Choose to open clicks on standard ad banners in one of three target attributes (this one was highly requested!)
- Random Number Generation - You can now insert random numbers into the Rich-Media. This allows you to dynamically create what ad your ad company may call unique keys for each time the ad is displayed (highly requested as well!)
- Image Uploads and Storage - You can upload your ad banners right from the control panel -- and let the program take care off all the storage and retrieval.
- Full upgrade ability. You can easily upgrade your Led-Ads (previous name) v1.0 ad stats and info. There is no support to import LedAds 2.0 (CGI Version) yet.
- Full Stats - Stats tracked per day, per month, per year and lifetime! Now you know your total stats all the time!
<<less
Download (0.43MB)
Added: 2007-05-01 License: Freeware Price:
907 downloads
Gtk2::Ex::MindMapView::Layout::Column 0.000001

Gtk2::Ex::MindMapView::Layout::Column 0.000001


Gtk2::Ex::MindMapView::Layout::Column is a Perl module to display vertical layout of clusters. more>>
Gtk2::Ex::MindMapView::Layout::Column is a Perl module to display vertical layout of clusters.

SYNOPSIS

use Gtk2::Ex::MindMapView::Layout::Column;

The Gtk2::Ex::MindMapView::Layout::Column is used to layout Gtk2::Ex::MindMapView::Items in columns on a Gnome2::Canvas.

INTERFACE

new(column_no=>$column_no)

Instantiates the column and saves the column number for future reference.

Each column is assigned a column number, which is used to determine which side of the root column it is on. The root column is always column zero. Columns to the right of the root have positive column numbers, columns to the left of the root column have negative column numbers.

add($predecessor_item, $item)

Each Gtk2::Ex::MindMapView::Item is added to a cluster in a column. The cluster groups items according to their predecessor.

layout()

Places Gtk2::Ex::MindMapView::Items on the canvas according to the cluster they belong to.

DIAGNOSTICS

Gtk2::Ex::MindMapView::Layout::Column requires a column_no

You must pass in a column_no argument when creating a Gtk2::Ex::MindMapView::Layout::Column.
<<less
Download (0.049MB)
Added: 2007-01-26 License: Perl Artistic License Price:
1001 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5