tests/make_select.py
author Radek Brich <radek.brich@devl.cz>
Sun, 27 Jan 2013 23:51:59 +0100
changeset 70 db2eab0beb45
parent 63 2a0e04091898
permissions -rwxr-xr-x
Update drivers: Rename setcolor to defcolor, add real setcolor which ignores color stack. Application: Add overridable startup() method. Fix Widget draw clipping.

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import sys
sys.path.append('..')

from tuikit.common import *

XSel = make_select('left', 'right', 'bottom', 'top')
print(XSel)

sel = XSel()
print('XSel().selected:', sel.selected)

try:
    sel.update('center')
except ValueError as e:
    print('Error:', e)

try:
    pure_sel = Select()
except TypeError as e:
    print('Error:', e)