Main > Free Download Search >

Free table layout android software for linux

table layout android

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1759
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
Tables for Ada 1.7

Tables for Ada 1.7


Tables for Ada is a library provides an implementation of tables indexed by strings. more>>
Tables for Ada is a library provides an implementation of tables indexed by strings. The binary search is used for names of known length. It is also possible to search a table for names of unknown length, i.e. to parse a string using some table. Table elements can be of any private type. Key- insensitive tables are supported.
Enhancements:
- GPS project files were added for GNAT users.
<<less
Download (0.017MB)
Added: 2007-05-20 License: GMGPL (GNAT Modified GPL) Price:
888 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
MySQL table patcher 1.6.2

MySQL table patcher 1.6.2


MySQL table patcher is a patch that reads table creation file (tables.sql) and compares it to what mysqldump gives. more>>
MySQL table patcher is a patch that reads table creation file (tables.sql) and compares it to what mysqldump gives. It creates SQL clauses to update the database to match the creation file.

<<less
Download (1.9MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1179 downloads
PostgreSQL Table Log 0.4.4

PostgreSQL Table Log 0.4.4


PostgreSQL Table Log contains functions that allow you to log PostgreSQL table inserts, updates, and deletes into another table. more>>
PostgreSQL Table Log contains functions that allow you to log PostgreSQL table inserts, updates, and deletes into another table.
This can be used to recover the state of the logged table or to recover specific rows from a given time period.
Enhancements:
- This version now works with PostgreSQL versions 8.2 and later.
- Some warnings have been removed and the documentation was cleaned up.
- PGXS is now used for building from source.
- RPM packages are available.
<<less
Download (0.013MB)
Added: 2007-06-06 License: BSD License Price:
872 downloads
Ruby Iptables Network Displayer 0.6

Ruby Iptables Network Displayer 0.6


Ruby Iptables NEtwork Displayer project draws an SVG from a Linux IP table generated by iptables-save. more>>
Ruby Iptables NEtwork Displayer project draws an SVG from a Linux IP table generated by "iptables-save".

<<less
Download (0.015MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
978 downloads
Formitable 1.1

Formitable 1.1


Formitable is a PHP class used to ease the creation of submit-ready HTML forms from MySQL database tables. more>>
Formitable is a PHP class used to ease the creation of submit-ready HTML forms from MySQL database tables.
Formitable project analyzes the fields of a given table and outputs the best input type for each (e.g. enum type becomes radio buttons or select, set type becomes checkboxes or multiselect). Data is automatically inserted into the table upon form submission.
Main features:
- Output a complete form in a few lines of code
- Validate data via regular expressions and provide custom feedback
- Support for normalized data/lookup tables
- Easily retrieve and update existing records
- Outputs attributes such as MAXLENGTH to reflect your table design
- Customize all aspects of output, integrate forms into your layout
- Full CSS styling
- Accessibility support such as labels, fieldsets, legends and more
Enhancements:
- Forms can now be printed using a template with printFromTemplate.
- Custom template delimiters can be set using setTemplateDelimiters.
- Bugs were fixed.
<<less
Download (0.018MB)
Added: 2006-11-21 License: GPL (GNU General Public License) Price:
1068 downloads
PDF::Table 0.91

PDF::Table 0.91


PDF::Table is a utility class for building table layouts in a PDF::API2 object. more>>
PDF::Table is a utility class for building table layouts in a PDF::API2 object.

SYNOPSIS

use PDF::API2;
use PDF::Table;

my $pdftable = new PDF::Table;
my $pdf = new PDF::API2(-file => "table_of_lorem.pdf");
my $page = $pdf->page;

# some data to layout
my $some_data =[
["1 Lorem ipsum dolor",
"Donec odio neque, faucibus vel",
"consequat quis, tincidunt vel, felis."],
["Nulla euismod sem eget neque.",
"Donec odio neque",
"Sed eu velit."],
... and so on
];

# build the table layout
$pdftable->table(
# required params
$pdf,
$page,
$some_data,
x => $left_edge_of_table,
w => 570,
start_y => 500,
next_y => 700,
start_h => 300,
next_h => 500,
# some optional params
padding => 5,
padding_right => 10,
background_color_odd => "gray",
background_color_even => "lightblue", #cell background color for even rows
);

# do other stuff with $pdf
...

This class is a utility for use with the PDF::API2 module from CPAN. It can be used to display text data in a table layout within the PDF. The text data must be in a 2d array (such as returned by a DBI statement handle fetchall_arrayref() call). The PDF::Table will automatically add as many new pages as necessary to display all of the data.

Various layout properties, such as font, font size, and cell padding and background color can be specified for each column and/or for even/odd rows. Also a (non)repeated header row with different layout properties can be specified.
See the METHODS section for complete documentation of every parameter.

<<less
Download (0.011MB)
Added: 2006-09-20 License: Perl Artistic License Price:
1140 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
HTML::TableTiler 1.21

HTML::TableTiler 1.21


HTML::TableTiler can easily generates complex graphic styled HTML tables. more>>
HTML::TableTiler can easily generates complex graphic styled HTML tables.

HTML::TableTiler uses a minimum HTML table as a tile to generate a complete HTML table from a bidimensional array of data. It can easily produce simple or complex graphic styled tables with minimum effort and maximum speed.

Think about the table tile as a sort of tile that automatically expands itself to contain the whole data. You can control the final look of a table by choosing either the HORIZONTAL and the VERTICAL tiling mode among: PULL, TILE and TRIM.

The main advantages to use it are:

automatic table generation

Pass only a bidimensional array of data to generate a complete HTML table. No worry to decide in advance the quantity of cells (or rows) in the table.
complex graphic patterns generation without coding

Just prepare a simple table tile in your preferred WYSIWYG HTML editor and let the module do the job for you.

simple to maintain

You can indipendently change the table tile or the code, and everything will go as you would expect.

<<less
Download (0.008MB)
Added: 2006-07-28 License: Perl Artistic License Price:
1184 downloads
Active Calendar 1.2.0

Active Calendar 1.2.0


Active Calendar is PHP Class, that generates calendars (month or year view) as a HTML Table (XHTML-Valid). more>>
Active Calendar is PHP Class, that generates calendars (month or year view) as a HTML Table (XHTML-Valid). Active Calendars source code is free.
You can modify or pass it on under the conditions of the GNU Lesser General Public License, published by the Free Software Foundation.
The calendars created by this class:
can be static (without any links)
can optionally have navigation controls
can optionally have a date picker control
can optionally have linkable days (url or javascript)
can optionally have event days with event links and own layout
can optionally have event content with links and own layout
support different GMT zones for the current date calculation
support month and day names, depending on your language
can be configured using CSS
do not require Javascript to be displayed or navigated (server side generation)
can be generated with just 2-3 lines of code
Active Calendar is based on the PHP native date functions (default) and supports optionally the ADOdb Date Library. Supported dates (on systems using a 32-bit signed integer Unix time_t):
Using PHP native date functions: 1902 - 2037 (UNIX) and 1971 - 2037 (Windows)
Using ADOdb Date Library: 100 - 3000 and later [ limited by the computation time of adodb_mktime() ] on both UNIX and Windows. To use the ADOdb Date Library just include it in your scripts. The Active Calendar class will use the library functions automatically.
Enhancements:
- An activeCalendarWeek subclass was added.
- The class can generate week calendars (one or multiple rows) according to the date or the week number of the year passed to the class using two public methods, showWeeks() and showWeeksByID().
- The structure of the download package was updated and an example was added for demonstrating how the Active Calendar can be used as a popup date selector in a form.
<<less
Download (0.032MB)
Added: 2006-02-23 License: GPL (GNU General Public License) Price:
1345 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
PyHtmlTable 1.13

PyHtmlTable 1.13


PyHtmlTable is a class for Python CGIs to generate HTML tables on the fly. more>>
PyHtmlTable is a class for Python CGIs to generate HTML tables on the fly. The reason that i made this script is I couldnt find something like Table.pm or Table.php
Main features:
- Allows setting of individual row and cell attributes via arbitrary dictionaries
- Allows spanning of rows and columns
- Autogrows table if cells set outside initial Range.
- Allows dynamic insertion of new rows and columns anywhere in the table
- Allows bulk population of table data via arrays to arbitrary locations in the table.
- Provides default cell attributes for tablewide uniformity and the ability to override these on a cell by cell basis.
- NOTE: Row indexes start at 0 like God and Kernighan demand!
- Influenced heavily by Table.pm and Table.php
<<less
Download (0.011MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1221 downloads
Gtk2::Ex::MindMapView::Layout::Balanced 0.000001

Gtk2::Ex::MindMapView::Layout::Balanced 0.000001


Gtk2::Ex::MindMapView::Layout::Balanced is a Perl module with balanced layout for view items. more>>
Gtk2::Ex::MindMapView::Layout::Balanced is a Perl module with balanced layout for view items.

HEIRARCHY

Gtk2::Ex::MindMapView::Layout::Group
+----Gtk2::Ex::MindMapView::Layout::Balanced

SYNOPSIS

use Gtk2::Ex::MindMapView::Layout::Balanced;

A balanced layout for the mindmap. This module considers the "weight" of each Gtk2::Ex::MindMapView::Item when laying them out. The weight is a measure of the amount of screen real estate taken up by the item.

INTERFACE

new (graph=>$graph)

Instantiates a new balanced layout. This code assigns Gtk2::Ex::MindMapView::Item objects to columns based on their relationships to each other as determined by the Gtk2::Ex::MindMapView::Graph argument.
layout()

Places the items in the balanced layout on the canvas. This code determines the width of the columns in which the Gtk2:Ex::MindMapView::Items are placed, and positions the items appropriately on the canvas.

<<less
Download (0.049MB)
Added: 2007-01-15 License: Perl Artistic License Price:
1012 downloads
TableDatabase 0.1

TableDatabase 0.1


TableDatabase project is a small set of programs that treats HTML tables like database tables. more>>
TableDatabase project is a small set of programs that treats HTML tables like database tables.

By "HTML table", I mean any data which is in the form of

< table >
< tr >
< td > column data < /td >
...etc...
< /tr >
< /table >

This software is still in a very early stage, i.e. pre-Alpha.
<<less
Download (0.013MB)
Added: 2006-11-24 License: GPL (GNU General Public License) Price:
1064 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5