Skip to content

Commit e037bea

Browse files
Merge branch 'master' into feature/add_step_5.1
2 parents 473dafd + b54b182 commit e037bea

File tree

18 files changed

+19
-267
lines changed

18 files changed

+19
-267
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
11
# Hello world in ETS pyface!
2+
This folder contains a "hello world" application using ETS' pyface package. To
3+
execute it,
4+
- an application object defines a custom application next to a `main.py` script
5+
which executes it.
6+
- The content of the application is a single Task which contains a single
7+
TraitsUI-based pane displaying a model's string content.
8+
9+
Optional: If you want to get ahead, continue on and add a dock pane (still
10+
traitsUI based) which displays "hello world" as a left side panel.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
11
# First real version of the pycasa ETS pyface application!
2+
Building on the hello world application, this stage creates a real application
3+
that allows to navigate the local drive, and open an image file in the central
4+
pane. The following steps are taken here:
5+
- create a realistic task with a split editor area pane for the central pane
6+
and a file browser dock pane that exposes the home folder using the custom
7+
version of TraitsUI's `FileEditor`.
8+
- Adds a ImageFile model, view and an editor so that an image can be open in
9+
the central pane.
10+
- Add a listener on the file browser double-click event to trigger opening the
11+
image file.

stage4_first_application/README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

stage4_first_application/pycasa/__init__.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

stage4_first_application/pycasa/app/__init__.py

Whitespace-only changes.

stage4_first_application/pycasa/app/app.py

Lines changed: 0 additions & 28 deletions
This file was deleted.

stage4_first_application/pycasa/app/main.py

Lines changed: 0 additions & 11 deletions
This file was deleted.

stage4_first_application/pycasa/model/__init__.py

Whitespace-only changes.

stage4_first_application/pycasa/model/file_browser.py

Lines changed: 0 additions & 9 deletions
This file was deleted.

stage4_first_application/pycasa/model/image_file.py

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)