To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

From Wikipedia, the free encyclopedia

Original author(s)James Henstridge[1]
Developer(s)PyGTK Core development team[2]
Stable release
2.24.0[3] / 1 April 2011; 12 years ago (2011-04-01)
Repository
Written inPython, C
Operating systemCross-platform
PlatformCross-platform
TypeWidget toolkit
LicenseLGPL
Websitepygtk.org

PyGTK is a set of Python wrappers for the GTK graphical user interface library. PyGTK is free software and licensed under the LGPL. It is analogous to PyQt/PySide and wxPython, the Python wrappers for Qt and wxWidgets, respectively. Its original author is GNOME developer James Henstridge. There are six people in the core development team, with various other people who have submitted patches and bug reports. PyGTK has been selected as the environment of choice for applications running on One Laptop Per Child systems.

PyGTK will be phased out with the transition to GTK version 3 and be replaced with PyGObject,[4][5] which uses GObject Introspection to generate bindings for Python and other languages on the fly. This is expected to eliminate the delay between GTK updates and corresponding language binding updates, as well as reduce maintenance burden on the developers.[6]

YouTube Encyclopedic

  • 1/5
    Views:
    150 314
    63 789
    1 531
    11 793
    400 900
  • Python GUI Development with GTK+ 3 - Tutorial 1 - Simple Window
  • Getting started with Quickly and PyGTK
  • PyGtk Tutorial - Buttons
  • GTK4 Is Here: Why You Should Even Care
  • Python Top 5 GUI Frameworks

Transcription

Syntax

The Python code below will produce a 200x200 pixel window with the words "Hello World" inside.

import gtk

def create_window():
    window = gtk.Window()
    window.set_default_size(200, 200)
    window.connect("destroy", gtk.main_quit)

    label = gtk.Label("Hello World")
    window.add(label)

    label.show()
    window.show()

create_window()
gtk.main()

Notable applications that have used PyGTK

PyGTK has been used in a number of notable applications, some examples:

PyGObject

PyGObject provides a wrapper for use in Python programs when accessing GObject libraries. GObject is an object system used by GTK, GLib, GIO, GStreamer and other libraries.

Like the GObject library itself, PyGObject is licensed under the GNU LGPL, so it is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single-purpose scripts to large full-featured applications.

PyGObject can dynamically access any GObject libraries that use GObject Introspection. It replaces the need for separate modules such as PyGTK, GIO and python-gnome to build a full GNOME 3.0 application. Once new functionality is added to GObject library it is instantly available as a Python API without the need for intermediate Python glue.

Notable applications that use PyGObject

PyGObject has replaced PyGTK, but it has taken a considerable amount of time for many programs to be ported. Most of the software listed here has an older version which used PyGTK.

See also

  • PyQt (Python wrapper for the Qt toolkit)
  • PySide (Alternative Python wrapper for the Qt toolkit)
  • wxPython (Python wrapper for the wx widgets collection)

References

  1. ^ "Software I have written > PyGTK - Python bindings for GTK". James Henstridge's Homepage.
  2. ^ "The people behind PyGTK".
  3. ^ "PyGTK download page".
  4. ^ "PyGObject". wiki.gnome.org.
  5. ^ "Black Duck Open Hub: PyGObject".
  6. ^ "GObject Introspection". Archived from the original on 2012-07-11.

External links

This page was last edited on 17 February 2024, at 09:33
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.