-
In some applications it is important to intercept a window before it is closed. (Canonical example: put up a message box saying "You have unsaved data. Are you sure you want to quit?", if the answer i…
-
A vanilla Python shell session:
``` python
Chris-Colberts-MacBook-Pro:enaml chris$ python
Enthought Python Distribution -- www.enthought.com
Version: 7.1-2 (32-bit)
Python 2.7.2 |EPD 7.1-2 (32-bit)|…
-
Because Validator has been changed, there also needs to be a change in https://github.com/nucleic/enaml/blob/master/examples/tutorial/employee/phone_validator.py . The function:
```
def validate(self…
-
In the documentation for http://nucleic.github.io/enaml/docs/api_ref/widgets/constraints_widget.html it says that the default for `limit_height` is `strong`, when in fact it is `ignore`.
-
http://nucleic.github.io/enaml/docs/examples/ex_popup_view.html
I just tried it -- really slick-looking UI, but it crashes if I click on the main window when any of the popups are open.
Here's the t…
-
The major delay for me is testing, I've had my PoC code reasonably "done" and tested in its component parts for a couple of days now. However I've been struggling to get btsync and syncnet talking. Is…
-
I am in the process of adding native support for editing enaml files in the Spyder IDE. It is working great so far, I have syntax highlighting and support for introspection. Jedi is used to pick up …
-
The examples/widgets/FileDialog.enaml file fails because of incompatibility between PySide and PyQt:
```
File "/Users/cwebster/src/enaml/enaml/qt/qt_file_dialog.py", line 30, in exec_dialog
path,…
-
The documentation at http://nucleic.github.io/enaml/docs/index.html starts out extremely well in the "Getting Started" section, but then suddenly stops. For example, the following sections are missing…
-
In my code, I had to add a test to check if self._window is not None for the component changed method.
```
@observe('component')
def component_changed(self, new):
self._window.component =…