# HG changeset patch # User Thinker K.F. Li # Date 1302973706 -28800 # Node ID 31189b5d832a727cb35fc64311e0c143d48149c5 # Parent 75ca2a66c08daa8ff26c4a86ad080a41b74248fc Add document diff -r 75ca2a66c08d -r 31189b5d832a pyink/comp_dock.py --- a/pyink/comp_dock.py Sun Apr 17 01:03:07 2011 +0800 +++ b/pyink/comp_dock.py Sun Apr 17 01:08:26 2011 +0800 @@ -235,6 +235,10 @@ self._domview_ui.rm_component(comp_name) pass + ## \brief Hint user that given component is selected. + # + # Show an icon before the component name. + # def _sel_component(self, comp_name): all_comp_names = self._domview_ui.all_comp_names() sel_idx = all_comp_names.index(comp_name) @@ -299,6 +303,10 @@ self._domview_ui.rm_timeline(tl_name) pass + ## \brief Hint user that given timeline is selected. + # + # Show an icon before the timeline name. + # def _sel_timeline(self, tl_name): all_tl_names = self._domview_ui.all_timeline_names() sel_idx = all_tl_names.index(tl_name)