DOC
author Radek Brich <radek.brich@devl.cz>
Wed, 03 Sep 2014 21:56:20 +0200
changeset 113 6796adfdc7eb
parent 101 079ced01f875
permissions -rw-r--r--
Merge. Due to my schizophrenia, I've accidentally forked my own code. The other set of changes were found in another computer.

LayoutManager
  VerticalLayout
  HorizontalLayout
  TileLayout


events:

  draw()
    - caller
  on_draw()
    - core handler, for overloading
  connect('draw', my_draw)
    - additional handler


Focus
-----

 * only one node in hierarchy can have focus
 * all parent containers have focus, so they can relay events to child
 * top container has always focus

 * grab_focus() on any node will clean old focus and set focus to this child
 * global shortcuts can be handled in keypress handler of top widget