gtk gimp
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1178
The Gimp 2.4.0 RC1
The GIMP is the GNU Image Manipulation Program. more>>
The GIMP is the GNU Image Manipulation Program. It is a freely distributed piece of software for such tasks as photo retouching, image composition and image authoring. The Gimp works on many operating systems, in many languages.
GIMP is an acronym for GNU Image Manipulation Program. It is a freely distributed program for such tasks as photo retouching, image composition and image authoring.
It has many capabilities. It can be used as a simple paint program, an expert quality photo retouching program, an online batch processing system, a mass production image renderer, an image format converter, etc.
GIMP is expandable and extensible. It is designed to be augmented with plug-ins and extensions to do just about anything. The advanced scripting interface allows everything from the simplest task to the most complex image manipulation procedures to be easily scripted.
GIMP is written and developed under X11 on UNIX platforms.
Main features:
Painting
- Full suite of painting tools including Brush, Pencil, Airbrush, Clone, etc.
- Sub-pixel sampling for all paint tools for high quality anti-aliasing
- Extremely powerful gradient editor and blend tool
- Supports custom brushes and patterns
System
- Tile based memory management so image size is limited only by available disk space
- Virtually unlimited number of images open at one time
Advanced Manipulation
- Full alpha channel support
- Layers and channels
- Multiple Undo/Redo (limited only by diskspace)
- Editable text layers
- Transformation tools including rotate, scale, shear and flip
- Selection tools including rectangle, ellipse, free, fuzzy and intelligent
- Advanced path tool doing bezier and polygonal selections.
- Transformable paths, transformable selections.
- Quickmask to paint a selection.
Extensible
- A Procedural Database for calling internal GIMP functions from external programs as in Script-fu
- Advanced scripting capabilities (Scheme, Python, Perl)
- Plug-ins which allow for the easy addition of new file formats and new effect filters
- Over 100 plug-ins already available
Animation
- Load and save animations in a convenient frame-as-layer format
- MNG support
- Frame Navigator (in GAP, the GIMP Animation Package)
- Onion Skin (in GAP, the GIMP Animation Package)
- Bluebox (in GAP, the GIMP Animation Package)
File Handling
- File formats supported include bmp, gif, jpeg, mng, pcx, pdf, png, ps, psd, svg, tiff, tga, xpm, and many others
- Load, display, convert, save to many file formats
- SVG path import/export
<<lessGIMP is an acronym for GNU Image Manipulation Program. It is a freely distributed program for such tasks as photo retouching, image composition and image authoring.
It has many capabilities. It can be used as a simple paint program, an expert quality photo retouching program, an online batch processing system, a mass production image renderer, an image format converter, etc.
GIMP is expandable and extensible. It is designed to be augmented with plug-ins and extensions to do just about anything. The advanced scripting interface allows everything from the simplest task to the most complex image manipulation procedures to be easily scripted.
GIMP is written and developed under X11 on UNIX platforms.
Main features:
Painting
- Full suite of painting tools including Brush, Pencil, Airbrush, Clone, etc.
- Sub-pixel sampling for all paint tools for high quality anti-aliasing
- Extremely powerful gradient editor and blend tool
- Supports custom brushes and patterns
System
- Tile based memory management so image size is limited only by available disk space
- Virtually unlimited number of images open at one time
Advanced Manipulation
- Full alpha channel support
- Layers and channels
- Multiple Undo/Redo (limited only by diskspace)
- Editable text layers
- Transformation tools including rotate, scale, shear and flip
- Selection tools including rectangle, ellipse, free, fuzzy and intelligent
- Advanced path tool doing bezier and polygonal selections.
- Transformable paths, transformable selections.
- Quickmask to paint a selection.
Extensible
- A Procedural Database for calling internal GIMP functions from external programs as in Script-fu
- Advanced scripting capabilities (Scheme, Python, Perl)
- Plug-ins which allow for the easy addition of new file formats and new effect filters
- Over 100 plug-ins already available
Animation
- Load and save animations in a convenient frame-as-layer format
- MNG support
- Frame Navigator (in GAP, the GIMP Animation Package)
- Onion Skin (in GAP, the GIMP Animation Package)
- Bluebox (in GAP, the GIMP Animation Package)
File Handling
- File formats supported include bmp, gif, jpeg, mng, pcx, pdf, png, ps, psd, svg, tiff, tga, xpm, and many others
- Load, display, convert, save to many file formats
- SVG path import/export
Download (16MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
100334 downloads
Other version of The Gimp
License:GPL (GNU General Public License)
GTK Cervi 0.3
GTK Cervi is a multiplayer Cervi clone. more>>
GTK Cervi project is a multiplayer Cervi clone.
Im not really sure if Cervi is original name of it but I know this game as Cervi so it will be named GTK Cervi. It is a multiplayer game (for 2-8 players) where players drive their worms.
Worms are getting longer and players mustnt collide with any worm. Winner is the last surviving worm. For more information see `Gameplay internals section.
Differences between "GTK Cervi" and the original Cervi:
- Some little differences in gameplay - these wont be fixed because I like this gameplay.
- Our cervs are antialiased.
- We have different field size, and it can be changed.
- Different controls.
- More players.
- Different scoring.
- Hatrick and extra hatrick bonuses.
<<lessIm not really sure if Cervi is original name of it but I know this game as Cervi so it will be named GTK Cervi. It is a multiplayer game (for 2-8 players) where players drive their worms.
Worms are getting longer and players mustnt collide with any worm. Winner is the last surviving worm. For more information see `Gameplay internals section.
Differences between "GTK Cervi" and the original Cervi:
- Some little differences in gameplay - these wont be fixed because I like this gameplay.
- Our cervs are antialiased.
- We have different field size, and it can be changed.
- Different controls.
- More players.
- Different scoring.
- Hatrick and extra hatrick bonuses.
Download (0.022MB)
Added: 2006-12-09 License: GPL (GNU General Public License) Price:
616 downloads
GIMP# 0.12
GIMP# is an API wrapper around GIMP, written in C#. more>>
GIMP# is an API wrapper around GIMP, written in C#. However, its not just a wrapper. GIMP# project also adds a thin layer which adds C# specific features, like iterating through a collection. An example of this is an iteration through the guides of an image. In C# this looks like:
foreach (Guide guide in image.Guides)
{
// Do something
}
In C this would have been:
gint32 guide_ID = 0:
while ((guide_ID = gimp_image_find_next_guide(image_ID, guide_ID)) != 0)
{
// Do something
}
GIMP# also offers a base plug-in class which does the difficult stuff for you. Implementing a new plug-in is just a matter of overriding a few virtual methods. See the samples directory for examples of how to do this.
Gimp# fills the niche between scripting languages (easy to write, slow) and C (harder to write, fast). If you need a quick and dirty plug-in where speed doesnt matter that much, write it in any of the scripting languages that come with GIMP (Scheme, Perl, etc.). Scripting languages are very well fitted for calling existing functionality, shortening manual tasks.
You probably dont want pixel manipulation in Scheme. In C, on the other hand, it takes a lot more time to create a plug-in for several reasons: building the GUI is time consuming. Secondly, pixel handling is not completely trivial. You have to know how to traverse through the tiles of an image, etc. Typically the actual algorithm is only a very small (5 - 20 %) part of the total code. Gimp# is not as fast as C, but much faster than a scripting language. Building a decent GUI is much easier than in C.
<<lessforeach (Guide guide in image.Guides)
{
// Do something
}
In C this would have been:
gint32 guide_ID = 0:
while ((guide_ID = gimp_image_find_next_guide(image_ID, guide_ID)) != 0)
{
// Do something
}
GIMP# also offers a base plug-in class which does the difficult stuff for you. Implementing a new plug-in is just a matter of overriding a few virtual methods. See the samples directory for examples of how to do this.
Gimp# fills the niche between scripting languages (easy to write, slow) and C (harder to write, fast). If you need a quick and dirty plug-in where speed doesnt matter that much, write it in any of the scripting languages that come with GIMP (Scheme, Perl, etc.). Scripting languages are very well fitted for calling existing functionality, shortening manual tasks.
You probably dont want pixel manipulation in Scheme. In C, on the other hand, it takes a lot more time to create a plug-in for several reasons: building the GUI is time consuming. Secondly, pixel handling is not completely trivial. You have to know how to traverse through the tiles of an image, etc. Typically the actual algorithm is only a very small (5 - 20 %) part of the total code. Gimp# is not as fast as C, but much faster than a scripting language. Building a decent GUI is much easier than in C.
Download (0.77MB)
Added: 2007-05-03 License: LGPL (GNU Lesser General Public License) Price:
904 downloads
Gtk2 1.144
Gtk2 is a Perl interface to the 2.x series of the Gimp Toolkit library. more>>
Gtk2 is a Perl interface to the 2.x series of the Gimp Toolkit library.
SYNOPSIS
use Gtk2 -init;
# Gtk2->init; works if you didnt use -init on use
my $window = Gtk2::Window->new (toplevel);
my $button = Gtk2::Button->new (Quit);
$button->signal_connect (clicked => sub { Gtk2->main_quit });
$window->add ($button);
$window->show_all;
Gtk2->main;
ABSTRACT
Perl bindings to the 2.x series of the Gtk+ widget set. This module allows you to write graphical user interfaces in a perlish and object-oriented way, freeing you from the casting and memory management in C, yet remaining very close in spirit to original API.
The Gtk2 module allows a perl developer to use the Gtk+ graphical user interface library. Find out more about Gtk+ at http://www.gtk.org.
The GTK+ Reference Manual is also a handy companion when writing Gtk programs in any language. http://developer.gnome.org/doc/API/2.0/gtk/ The perl bindings follow the C API very closely, and the C reference documentation should be considered the canonical source.
<<lessSYNOPSIS
use Gtk2 -init;
# Gtk2->init; works if you didnt use -init on use
my $window = Gtk2::Window->new (toplevel);
my $button = Gtk2::Button->new (Quit);
$button->signal_connect (clicked => sub { Gtk2->main_quit });
$window->add ($button);
$window->show_all;
Gtk2->main;
ABSTRACT
Perl bindings to the 2.x series of the Gtk+ widget set. This module allows you to write graphical user interfaces in a perlish and object-oriented way, freeing you from the casting and memory management in C, yet remaining very close in spirit to original API.
The Gtk2 module allows a perl developer to use the Gtk+ graphical user interface library. Find out more about Gtk+ at http://www.gtk.org.
The GTK+ Reference Manual is also a handy companion when writing Gtk programs in any language. http://developer.gnome.org/doc/API/2.0/gtk/ The perl bindings follow the C API very closely, and the C reference documentation should be considered the canonical source.
Download (0.65MB)
Added: 2007-03-13 License: Perl Artistic License Price:
955 downloads
Gtk 0.7009
Gtk enums, flags, object types, arguments and signals. more>>
Gtk enums, flags, object types, arguments and signals.
Gnome::AppBar (Gtk::HBox)
Signals
undef clear-prompt (Gnome::AppBar)
undef user-response (Gnome::AppBar)
Gnome::AppletWidget (Gtk::Plug)
Signals
undef back-change (Gnome::AppletWidget, Gtk::Enum, gpointer, gpointer)
undef change-orient (Gnome::AppletWidget, Gtk::Enum)
undef change-pixel-size (Gnome::AppletWidget, integer)
undef change-position (Gnome::AppletWidget, integer, integer)
undef do-draw (Gnome::AppletWidget)
bool save-session (Gnome::AppletWidget, string, string)
undef tooltip-state (Gnome::AppletWidget, integer)
Gnome::Calculator (Gtk::VBox)
Signals
undef result-changed (Gnome::Calculator, number)
Gnome::Canvas (Gtk::Layout)
Gnome::CanvasEllipse (Gnome::CanvasRE)
Gnome::CanvasGroup (Gnome::CanvasItem)
Arguments
x (number) [writable, readable]
y (number) [writable, readable]
Gnome::CanvasImage (Gnome::CanvasItem)
Arguments
anchor (Gtk::AnchorType) [writable, readable]
height (number) [writable, readable]
image (Gtk::GdkImlibImage) [writable, readable]
pixbuf (Gtk::Boxed) [writable]
width (number) [writable, readable]
x (number) [writable, readable]
y (number) [writable, readable]
Gnome::CanvasItem (Gtk::Object)
Signals
bool event (Gnome::CanvasItem, Gtk::Gdk::Event)
Gnome::CanvasLine (Gnome::CanvasItem)
Arguments
arrow_shape_a (number) [writable, readable]
arrow_shape_b (number) [writable, readable]
arrow_shape_c (number) [writable, readable]
cap_style (Gtk::GdkCapStyle) [writable, readable]
fill_color (string) [writable]
fill_color_gdk (Gtk::GdkColor) [writable, readable]
fill_color_rgba (unsigned) [writable, readable]
fill_stipple (Gtk::GdkWindow) [writable, readable]
first_arrowhead (bool) [writable, readable]
join_style (Gtk::GdkJoinStyle) [writable, readable]
last_arrowhead (bool) [writable, readable]
line_style (Gtk::GdkLineStyle) [writable, readable]
points (Gnome::CanvasPoints) [writable, readable]
smooth (bool) [writable, readable]
spline_steps (unsigned) [writable, readable]
width_pixels (unsigned) [writable]
width_units (number) [writable]
<<lessGnome::AppBar (Gtk::HBox)
Signals
undef clear-prompt (Gnome::AppBar)
undef user-response (Gnome::AppBar)
Gnome::AppletWidget (Gtk::Plug)
Signals
undef back-change (Gnome::AppletWidget, Gtk::Enum, gpointer, gpointer)
undef change-orient (Gnome::AppletWidget, Gtk::Enum)
undef change-pixel-size (Gnome::AppletWidget, integer)
undef change-position (Gnome::AppletWidget, integer, integer)
undef do-draw (Gnome::AppletWidget)
bool save-session (Gnome::AppletWidget, string, string)
undef tooltip-state (Gnome::AppletWidget, integer)
Gnome::Calculator (Gtk::VBox)
Signals
undef result-changed (Gnome::Calculator, number)
Gnome::Canvas (Gtk::Layout)
Gnome::CanvasEllipse (Gnome::CanvasRE)
Gnome::CanvasGroup (Gnome::CanvasItem)
Arguments
x (number) [writable, readable]
y (number) [writable, readable]
Gnome::CanvasImage (Gnome::CanvasItem)
Arguments
anchor (Gtk::AnchorType) [writable, readable]
height (number) [writable, readable]
image (Gtk::GdkImlibImage) [writable, readable]
pixbuf (Gtk::Boxed) [writable]
width (number) [writable, readable]
x (number) [writable, readable]
y (number) [writable, readable]
Gnome::CanvasItem (Gtk::Object)
Signals
bool event (Gnome::CanvasItem, Gtk::Gdk::Event)
Gnome::CanvasLine (Gnome::CanvasItem)
Arguments
arrow_shape_a (number) [writable, readable]
arrow_shape_b (number) [writable, readable]
arrow_shape_c (number) [writable, readable]
cap_style (Gtk::GdkCapStyle) [writable, readable]
fill_color (string) [writable]
fill_color_gdk (Gtk::GdkColor) [writable, readable]
fill_color_rgba (unsigned) [writable, readable]
fill_stipple (Gtk::GdkWindow) [writable, readable]
first_arrowhead (bool) [writable, readable]
join_style (Gtk::GdkJoinStyle) [writable, readable]
last_arrowhead (bool) [writable, readable]
line_style (Gtk::GdkLineStyle) [writable, readable]
points (Gnome::CanvasPoints) [writable, readable]
smooth (bool) [writable, readable]
spline_steps (unsigned) [writable, readable]
width_pixels (unsigned) [writable]
width_units (number) [writable]
Download (0.43MB)
Added: 2006-07-11 License: Perl Artistic License Price:
1202 downloads
GTK+ 2.9.4
Gtk+ is a library for creating graphical user interfaces. more>>
GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites.
GTK+ is free software and part of the GNU Project. However, the licensing terms for GTK+, the GNU LGPL, allow it to be used by all developers, including those developing proprietary software, without any license fees or royalties.
GTK+ is based on three libraries developed by the GTK+ team:
- GLib is the low-level core library that forms the basis of GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system.
- Pango is a library for layout and rendering of text, with an emphasis on internationalization. It forms the core of text and font handling for GTK+-2.0.
- The ATK library provides a set of interfaces for accessibility. By supporting the ATK interfaces, an application or toolkit can be used with such tools as screen readers, magnifiers, and alternative input devices.
GTK+ has been designed from the ground up to support a range of languages, not only C/C++. Using GTK+ from languages such as Perl and Python (especially in combination with the Glade GUI builder) provides an effective method of rapid application development.
<<lessGTK+ is free software and part of the GNU Project. However, the licensing terms for GTK+, the GNU LGPL, allow it to be used by all developers, including those developing proprietary software, without any license fees or royalties.
GTK+ is based on three libraries developed by the GTK+ team:
- GLib is the low-level core library that forms the basis of GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system.
- Pango is a library for layout and rendering of text, with an emphasis on internationalization. It forms the core of text and font handling for GTK+-2.0.
- The ATK library provides a set of interfaces for accessibility. By supporting the ATK interfaces, an application or toolkit can be used with such tools as screen readers, magnifiers, and alternative input devices.
GTK+ has been designed from the ground up to support a range of languages, not only C/C++. Using GTK+ from languages such as Perl and Python (especially in combination with the Glade GUI builder) provides an effective method of rapid application development.
Download (19MB)
Added: 2006-07-04 License: LGPL (GNU Lesser General Public License) Price:
1756 downloads
Other version of GTK+
License:GPL (GNU General Public License)
SLgtk 0.7.2
SLgtk package binds the GIMP Toolkit, also known as Gtk, to the S-Lang scripting language. more>>
SLgtk package binds the GIMP Toolkit, also known as Gtk, to the S-Lang scripting language. This application was created with the SLIRP code generator, and provides an importable module which makes most of Gtk and its constituent libraries callable directly from S-Lang scripts.
With SLgtk the S-Lang programmer now has access to a powerful, cross-platform widget set for creating sophisticated graphical user interfaces (GUIs). The package also includes bindings to GtkExtra, which are used in the vwhere visualization and filtering guilet, as well as a gdk-pixbuf loader for the FITS image file format widely used within astronomy, and an easy-to-use but powerful image compositing, display, and output tool.
Enhancements:
VWhere 1.3.9:
- When a vector is passed with the & operator VWhere will reflect the proper variable name in the Axis Expression window, instead of assigning the less-meaningful "arrayN".
imdisplay 0.3.4:
- new "panes" option added, to support display of multiple images using either horizontal or vertical tiling
- multiple animations may now be displayed, and even commingled alongside static images
- fill rule may now be specified in an option string, and now defaults to "scale" instead of "none"
- imdisplay_defaults() function added, for option persistence
- 1D images which can be reshaped to NxN are now accepted
changed S-Lang semantics of C Gdk function void gdk_window_get_frame_extents(GdkWindow, &GdkRectangle) to GdkRectantle gdk_window_get_frame_extents(GdkWindow)
- more sophisticated placement/reparenting strategies for win chaining
- rgbwidget version 0.3.0, which adds POW scaling and version info
<<lessWith SLgtk the S-Lang programmer now has access to a powerful, cross-platform widget set for creating sophisticated graphical user interfaces (GUIs). The package also includes bindings to GtkExtra, which are used in the vwhere visualization and filtering guilet, as well as a gdk-pixbuf loader for the FITS image file format widely used within astronomy, and an easy-to-use but powerful image compositing, display, and output tool.
Enhancements:
VWhere 1.3.9:
- When a vector is passed with the & operator VWhere will reflect the proper variable name in the Axis Expression window, instead of assigning the less-meaningful "arrayN".
imdisplay 0.3.4:
- new "panes" option added, to support display of multiple images using either horizontal or vertical tiling
- multiple animations may now be displayed, and even commingled alongside static images
- fill rule may now be specified in an option string, and now defaults to "scale" instead of "none"
- imdisplay_defaults() function added, for option persistence
- 1D images which can be reshaped to NxN are now accepted
changed S-Lang semantics of C Gdk function void gdk_window_get_frame_extents(GdkWindow, &GdkRectangle) to GdkRectantle gdk_window_get_frame_extents(GdkWindow)
- more sophisticated placement/reparenting strategies for win chaining
- rgbwidget version 0.3.0, which adds POW scaling and version info
Download (0.96MB)
Added: 2007-07-18 License: GPL (GNU General Public License) Price:
828 downloads
Gtk# 1.0.10
Gtk# is a .Net language bindings for Gtk+ and selected Gnome libraries. more>>
Gtk# is a .Net language bindings for Gtk+ and selected Gnome libraries.
Gtk# provides tools to bind GObject based libraries for use by Mono/.Net applications in addition to a set of assemblies that binds the Gtk+ libraries and several Gnome libraries.
The effort essentially boils down to an exercise in PInvoke against the C
dynamic libraries. It may end up being slow as hell, but well see when we get
there and adjust accordingly.
<<lessGtk# provides tools to bind GObject based libraries for use by Mono/.Net applications in addition to a set of assemblies that binds the Gtk+ libraries and several Gnome libraries.
The effort essentially boils down to an exercise in PInvoke against the C
dynamic libraries. It may end up being slow as hell, but well see when we get
there and adjust accordingly.
Download (1.8MB)
Added: 2006-01-19 License: LGPL (GNU Lesser General Public License) Price:
1377 downloads
gimphp 0.2.0
gimphp is a PHP Class library to write Gimp scripts directly in PHP. more>>
gimphp is a PHP Class library to write Gimp scripts directly in PHP.
To realize the Cultural Association Milug cards it was created a web-application that is based on PHP to use Gimp as a graphic engine. It work with gimuse server to produce cards.
<<lessTo realize the Cultural Association Milug cards it was created a web-application that is based on PHP to use Gimp as a graphic engine. It work with gimuse server to produce cards.
Download (1.8MB)
Added: 2006-05-05 License: GPL (GNU General Public License) Price:
1267 downloads
Vqcc-gtk 0.5
Vqcc-gtk is a chat application written in C for the GTK+ toolkit, primarily used in small LANs. more>>
Vqcc-gtk is a chat application written in C for the GTK+ toolkit, primarily used in small LANs. Based on quickChat/Vypress Chat (TM) for Windows (from Vypress Research) and is licensed under the GPL.
The application supports both quickChat and Vypress Chat(TM) protocols and hopefully is compatible enough to substitute those applications when using Linux, FreeBSD or another *NIX desktop. You need no server to run, however it is not possible to communicate outside your LAN (or subnet).
Those running KDE might be happier with VyQChat which is making nice progress too and looks more native to the users of KDE. Also there is a fine console (text mode) chat client eChat. It is compatible with both quickChat and VypressChat.
<<lessThe application supports both quickChat and Vypress Chat(TM) protocols and hopefully is compatible enough to substitute those applications when using Linux, FreeBSD or another *NIX desktop. You need no server to run, however it is not possible to communicate outside your LAN (or subnet).
Those running KDE might be happier with VyQChat which is making nice progress too and looks more native to the users of KDE. Also there is a fine console (text mode) chat client eChat. It is compatible with both quickChat and VypressChat.
Download (0.11MB)
Added: 2005-07-27 License: GPL (GNU General Public License) Price:
1555 downloads
Gtk-Qt Theme Engine 0.7
GTK-Qt Theme Engine is a project allowing GTK to use Qt widget styles. more>>
The GTK-Qt Theme Engine is a project allowing GTK to use Qt widget styles.
Gtk-Qt Theme Engine behaves like a normal GTK theme engine, but calls functions from Qt instead of doing the drawing itself.
Version restrictions:
- Due to an incompatibility between Qt and the GNOME window manager, some parts of GNOME will not be themed by Qt.
- The theme will run fine under GNOME, but the logout box and window border menus will appear blank.
- It appears that the only way to overcome this bug is by patching Qt itself.
<<lessGtk-Qt Theme Engine behaves like a normal GTK theme engine, but calls functions from Qt instead of doing the drawing itself.
Version restrictions:
- Due to an incompatibility between Qt and the GNOME window manager, some parts of GNOME will not be themed by Qt.
- The theme will run fine under GNOME, but the logout box and window border menus will appear blank.
- It appears that the only way to overcome this bug is by patching Qt itself.
Download (0.14MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1217 downloads
Gtk-IPTables 0.5.0
Gtk-IPTables is a GTK-based frontend for iptables written in C. more>>
Gtk-IPTables is a GTK-based frontend for iptables written in C. You can create rules for all chains for Filter, NAT, and Mangle tables.
To install read the INSTALL file.
To run it just type gtkiptables
In order to compile you must have Gtk-dev which contains the headers files
and static libraries. You also need the Gtk set of widgets that cames with
almost every distro. We are talking of version 1.2.10 for both.
Gtk packages: www.gtk.org
<<lessTo install read the INSTALL file.
To run it just type gtkiptables
In order to compile you must have Gtk-dev which contains the headers files
and static libraries. You also need the Gtk set of widgets that cames with
almost every distro. We are talking of version 1.2.10 for both.
Gtk packages: www.gtk.org
Download (0.018MB)
Added: 2006-12-17 License: GPL (GNU General Public License) Price:
1046 downloads
GTK+ Send-PR 0.4.7
GTK+ Send-PR is a user friendly GNATS client. more>>
GTK+ Send-PR is a user friendly GNATS client.
gtk-send-pr is a problem report tool, designed to send reports to a GNATS database server using libesmtp to deliver mail.
The program has a user friendly interface and lets you use any SMTP server, including support for AUTH and TLS, to send the report, removing the need for a local configured sendmail. gtk-send-pr is part of both the FreeBSD ports and NetBSDs pkgsrc.
<<lessgtk-send-pr is a problem report tool, designed to send reports to a GNATS database server using libesmtp to deliver mail.
The program has a user friendly interface and lets you use any SMTP server, including support for AUTH and TLS, to send the report, removing the need for a local configured sendmail. gtk-send-pr is part of both the FreeBSD ports and NetBSDs pkgsrc.
Download (0.036MB)
Added: 2006-01-10 License: BSD License Price:
1382 downloads
Samba-Gtk 0.1
Samba-Gtk is a GTK+ frontend for Samba 4. more>>
Samba-Gtk is a GTK+ frontend for Samba 4.
A set of GTK+ applications that allow use of SMB- and related protocols. Current tools include a registry editor (local files and remote), DCE/RPC endpoint profiler, remote job planner (at/cron equivalent) and remote service manager.
Also contains a shared library with custom GTK+ widgets.
<<lessA set of GTK+ applications that allow use of SMB- and related protocols. Current tools include a registry editor (local files and remote), DCE/RPC endpoint profiler, remote job planner (at/cron equivalent) and remote service manager.
Also contains a shared library with custom GTK+ widgets.
Download (MB)
Added: 2007-03-01 License: GPL (GNU General Public License) Price:
976 downloads
GTK-VNC 0.1.0
GTK-VNC is a VNC viewer widget for GTK. more>>
GTK-VNC project is a VNC viewer widget for GTK.
It provides a core library written in C, using coroutines to allow it to be completely asynchronous while remaining single threaded. A wrapper library using PyGTK provides access to the widget functionality from Python. Two example programs illustrate use of the widget by re-implementing the traditional vncviewer in a few 10s of lines of code.
The client is fully IPv6 aware, and as well as the traditional VNC authentication protocol, implements the VeNCrypt extension to provide secure TLS/SSL encrypted communications, optionally using x509 certificates to authenticate.
<<lessIt provides a core library written in C, using coroutines to allow it to be completely asynchronous while remaining single threaded. A wrapper library using PyGTK provides access to the widget functionality from Python. Two example programs illustrate use of the widget by re-implementing the traditional vncviewer in a few 10s of lines of code.
The client is fully IPv6 aware, and as well as the traditional VNC authentication protocol, implements the VeNCrypt extension to provide secure TLS/SSL encrypted communications, optionally using x509 certificates to authenticate.
Download (0.35MB)
Added: 2007-08-17 License: LGPL (GNU Lesser General Public License) Price:
802 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above gtk gimp search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed