Ajout du mode débutant.
[minwii.git] / src / pgu / gui / __init__.py
1 import pygame
2 from pygame.locals import *
3
4 from theme import Theme
5 from style import Style
6 from widget import Widget
7 from surface import subsurface, ProxySurface
8 from const import *
9
10 from container import Container
11 from app import App, Desktop
12 from table import Table
13 from document import Document
14 #html
15 from area import SlideBox, ScrollArea, List
16
17 from form import Form
18 from group import Group
19
20 from basic import Spacer, Color, Label, Image, parse_color
21 from button import Icon, Button, Switch, Checkbox, Radio, Tool, Link
22 from input import Input, Password
23 from keysym import Keysym
24 from slider import VSlider, HSlider, VScrollBar, HScrollBar
25 from select import Select
26 from misc import ProgressBar
27
28 from menus import Menus
29 from dialog import Dialog, FileDialog
30 from textarea import TextArea
31
32 from deprecated import Toolbox, action_open, action_setvalue, action_quit, action_exec