| [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 | """ |
|---|
| 24 | higwidgets/__init__.py |
|---|
| 25 | |
|---|
| 26 | This module implements GTK Widgets that try their best to adhere to the |
|---|
| 27 | GNOME Human Interface Guidelines (aka HIG). |
|---|
| 28 | |
|---|
| 29 | This is mostly implemented by subclassing from the GTK classes, and |
|---|
| 30 | providing defaults that better match the HIG specifications/recomendations. |
|---|
| 31 | """ |
|---|
| 32 | |
|---|
| 33 | from gtkutils import * |
|---|
| 34 | from higboxes import * |
|---|
| 35 | from higbuttons import * |
|---|
| 36 | from higdialogs import * |
|---|
| 37 | from higentries import * |
|---|
| 38 | from higexpanders import * |
|---|
| 39 | from higlabels import * |
|---|
| 40 | from higlogindialogs import * |
|---|
| 41 | from higprogressbars import * |
|---|
| 42 | from higscrollers import * |
|---|
| 43 | from higspinner import * |
|---|
| 44 | from higtables import * |
|---|
| 45 | from higtextviewers import * |
|---|
| 46 | from higwindows import * |
|---|