root/branch/PreferencesWindow/higwidgets/__init__.py @ 3197

Revision 3197, 1.6 kB (checked in by luis, 5 years ago)
  • Merge 3055:HEAD higwidgets, umitCore, umitGUI, share - Solve conflits - Added core structures (Some code commited in r3196)
RevLine 
[1104]1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
[433]3
[1104]4# Copyright (C) 2005 Insecure.Com LLC.
5#
6# Author: Adriano Monteiro Marques <py.adriano@gmail.com>
7#         Cleber Rodrigues <cleber.gnu@gmail.com>
8#
[3197]9# This library is free software; you can redistribute it and/or modify
10# it under the terms of the GNU Lesser General Public License as published
11# by the Free Software Foundation; either version 2.1 of the License, or
[1104]12# (at your option) any later version.
13#
[3197]14# This library is distributed in the hope that it will be useful, but
15# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
17# License for more details.
[1104]18#
[3197]19# You should have received a copy of the GNU Lesser General Public License
20# along with this library; if not, write to the Free Software Foundation,
21# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22
[433]23"""
24higwidgets/__init__.py
25
26This module implements GTK Widgets that try their best to adhere to the
27GNOME Human Interface Guidelines (aka HIG).
28
29This is mostly implemented by subclassing from the GTK classes, and
30providing defaults that better match the HIG specifications/recomendations.
31"""
32
33from gtkutils import *
34from higboxes import *
35from higbuttons import *
36from higdialogs import *
37from higentries import *
38from higexpanders import *
39from higlabels import *
40from higlogindialogs import *
41from higprogressbars import *
42from higscrollers import *
43from higspinner import *
44from higtables import *
45from higtextviewers import *
46from higwindows import *
Note: See TracBrowser for help on using the browser.