1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
# (C) Copyright 2005-2023 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
""" IPython widget example. """
from pyface.api import ApplicationWindow, GUI
from traits.api import Enum, HasTraits, Instance, Int, Str
from traitsui.api import View, Item, UI
class Person(HasTraits):
""" Model class representing a person """
#: the name of the person
name = Str()
#: the age of the person
age = Int(18)
#: the gender of the person
gender = Enum("female", "male")
# a default traits view
view = View(
Item("name", resizable=True),
Item("age", resizable=True),
Item("gender", resizable=True),
resizable=True,
)
class MainWindow(ApplicationWindow):
""" The main application window. """
# 'IWindow' interface --------------------------------------------------
#: The size of the window.
size = (320, 240)
#: The window title.
title = "TraitsUI Person"
#: The traits object to display
person = Instance(Person, ())
#: The TraitsUI UI instance
_ui = Instance(UI)
# ------------------------------------------------------------------------
# Protected 'IApplication' interface.
# ------------------------------------------------------------------------
def _create_contents(self, parent):
""" Create the editor. """
self._ui = self.person.edit_traits(kind="subpanel", parent=parent)
return self._ui.control
def destroy(self):
if self._ui is not None:
self._ui.dispose()
self._ui = None
super().destroy()
# Application entry point.
if __name__ == "__main__":
# Create the GUI.
gui = GUI()
# Create and open the main window.
window = MainWindow()
window.open()
# Start the GUI event loop!
gui.start_event_loop()
|