Ignore:
Timestamp:
07/22/12 17:28:25 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

Added the module comments for the GUI

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/gui/common.py

    r277 r300  
    1 # Common things for the GUI
    21
    32import mlx.const as _const
     
    54
    65import os
     6
     7#-----------------------------------------------------------------------------
     8
     9## @package mlx.gui.common
     10#
     11# Common definitions and utilities for the GUI
     12#
     13# The main purpose of this module is to provide common definitions for things
     14# that are named differently in Gtk+ 2 and 3. This way the other parts of the
     15# GUI have to check the version in use very rarely. The variable \ref pygobject
     16# tells which version is being used. If it is \c True, Gtk+ 3 is used via the
     17# PyGObject interface. Otherwise Gtk+ 2 is used, which is the default on
     18# Windows or when the \c FORCE_PYGTK environment variable is set.
     19#
     20# Besides this there some common utility classes and functions.
     21
     22#-----------------------------------------------------------------------------
    723
    824appIndicator = False
Note: See TracChangeset for help on using the changeset viewer.