It should be so simple, but I have not been able to figure out how to do a simple OK/cancel confirmation dialog in enaml. Could someone please enlighten me? I am using an ETS toolkit of Qt4 with pyside api, python 2.7, and enaml 0.6.8.
My application consists of a MainWindow and is launched like the following:
from enaml.stdlib.sessions import simple_session
from enaml.qt.qt_application import QtApplication
...
session = simple_session('myApp',...)
app = QtApplication([session])
app.start_session('myApp')
app.start()
Thanks in advance