
Adds three classes to fields.py based on original ALBOW fields, but designed handle multiline and wrapped text.
1 line
1003 B
Python
1 line
1003 B
Python
"""ALBOW - A Little Bit of Widgetry for PyGame
|
|
by Gregory Ewing
|
|
greg.ewing@canterbury.ac.nz
|
|
"""
|
|
|
|
from version import version
|
|
|
|
|
|
from albow.controls import Label, Button, Image, AttrRef, ItemRef, \
|
|
RadioButton, ValueDisplay, SmallLabel, SmallValueDisplay, CheckBox, ValueButton, ButtonBase
|
|
from albow.layout import Row, Column, Grid
|
|
from albow.fields import TextField, FloatField, IntField, TimeField, TextFieldWrapped
|
|
from albow.shell import Shell
|
|
from albow.screen import Screen
|
|
from albow.text_screen import TextScreen
|
|
from albow.resource import get_font, get_image
|
|
from albow.grid_view import GridView
|
|
from albow.palette_view import PaletteView
|
|
from albow.image_array import get_image_array
|
|
from albow.dialogs import alert, ask, input_text
|
|
from albow.file_dialogs import \
|
|
request_old_filename, request_new_filename, look_for_file_or_directory
|
|
from albow.tab_panel import TabPanel
|
|
from albow.table_view import TableView, TableColumn
|
|
from albow.widget import Widget
|
|
from albow.menu import Menu
|