Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/GUI_Components/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'GUI_Components/__init__.py')
-rw-r--r--GUI_Components/__init__.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/GUI_Components/__init__.py b/GUI_Components/__init__.py
new file mode 100644
index 0000000..d9b54cd
--- /dev/null
+++ b/GUI_Components/__init__.py
@@ -0,0 +1,21 @@
+# Copyright (C) IBM Corporation 2008
+"""
+Every class of type *_Pane has the following.
+Thank python for not having interfaces.
+
+pane.panel
+pane.toolbar
+
+These correspond to the main view and toolbar associated with this pane.
+
+set_source_article
+get_source_article
+set_working_article
+get_working_article
+
+The GUI passes the currently selected source and working articles between panes
+when panes are switched. The pane will always be given an article using
+set_source_article before the get_source_article method is called. Thus it is
+feasible to just save the article argument and return it in the get method.
+
+""" \ No newline at end of file