File: layout.rst

package info (click to toggle)
sqlkit 0.9.5-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 8,184 kB
  • sloc: python: 17,477; sql: 166; makefile: 95; xml: 23; sh: 11
file content (506 lines) | stat: -rw-r--r-- 14,958 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
.. _layout:

=====================================
A GUI description language - purpose
=====================================
 
.. sidebar:: Note

   this page needs to be reviewed. While it should be mostly correct
   when ported to rest format has not been reviewed.
   
   A complete tour of what can be done is available in the demo


The class Layout is a class that understands a GUI description
language to create GUI on the fly, with minimal effort by the programmers,
that doesn't need to know a lot of Gtk details.

You cannot do *any* possible thing you would do with gtk, but methods are
provided to refine the layout and it isn't difficult to add GtkObjects or
features.

The purpose is to easy things with simple setup, not to cover any possible
graphical layout. The main purpose is to be used in designing layout of
record editor (:ref:`sqlkit`) for db, but it can be used with any other
program as well.

Layout is not an interactive tool: it uses gtk.Builder xml to create the GUI, ie:
it produces xml for gtk.Builder.

.. note:: gtk.Builder

   up to 0.9.2 sqlkit used glade. This dependancy has been dropped in favor
   of gtk.Builder that is directly available in standard GTK installation.

Care must be used to create names for the elements that are unique in
the single layout, so as to be able to reach any single object, not only to
refine configuration but also to interact with the GtkObj in the
program. This reflects in the fact that the name is unique.

A normal GUI is plenty of labels and tooltip. 
At the moment of this writing no localization is provided but gettext
support is in program. 

============================
Description of the language
============================

a starting example::
    
    layout = """ 
       el=first_name  el=last_name
       el=address     -
    """
    

A layout is a sequence of tokens and display modifiers.

:token:
  describes a GtkObject (Button, Entry...), may also be a compound. An
  example: el=first_name. They will normally start with a description key,
  followed by a '=' and then followed by a string possibly separated by a
  '/' and.or a::
  
     key=string/variable:wid1.wid2
  
  or in regexp notation and more precise::
  
    (key=)string(.[0-9a-z])?(/variable)((:width.)(width)([-<>]))?
     key   txt    id          var        width1   width2  align
  
  
  no element is needed apart the 'string', the key defaults to 'el' (Entry +
  Label), the variable defaults to the string, wid1 and wid2 (described
  below) use GtkWidget defaults. 
  
  The string part may end with .[a-z0-9] just to be able to refer in a
  unique way to single elements that are apparently equal (see :ref:`names`)

  an indication of the desidered alignment may be given using one of ('-',
  '<', '>'). this take effect oly if the element is position in a
  gtk.Alignment (eg. 'ae' element ie: entry with width). in that case:

    :>: right alignment   (xalign = 1)
    :<: left alignment    (xalign = 0)
    :-: xscale of the alignment is set to 1 i.e. the child of the
        alignment (the entry in the example will grow when more space
	is given to the widget)
	
.. sidebar:: Automatisms with sqlkit

   Note that when used from within sqlkit layout definition any text
   field is rendered with entry within an alignment (``ae`` element) and an
   alignment of '-' is added to any text field longer than 20 chars.

    
:spare token:
  A token may further be:
 
    :@:
      it is equivalent to a newline (in fact I figure it like spinning ;-)
    :-:
      forces the previous element to span one more column to the left
    :^:
      forces the element above it to span one more row down
    :%.*: the element is a label for a notebook (see 'notebook' method)

    
:display modifiers:
  A modifier is an element that modifies the way elements are arranged,
  mainly it modifies the packing info or the container, but can also modify
  the display eg: label and entry on the same line or one above the other.
  A modifier is:
    
    :{}:
      a pair of curly braces
    
    :[XTHVbNPSvhpOBmMFA](.id):
    
       (possibly) followed (w/out spaces) by some opts as in 
       {V r=man/sex r=woman}, this will create a nester layout with 2
       radiobutton packed into a GtkVBox. For an explanation of the (.id)
       part see below (container naming)
       
    
       Possible opts are XTHVbNPSvhpOBmMFA:
    
         :T: gtkTable
         :H: gtkHBox
         :V: gtkVBox
         :N: gtkNotebook
         :F: gtkFrame	
         :M: gtkMenubar
         :t: gtkToolBar
         :h: gtkHPaned
         :v: gtkVPaned
         :S: gtkScrolledWindow
         :B: gtkMenuBar
         :M: gtkMenu
         :m: gtkMenuItem
         :O: gtkToolbar
         :W: Window
         :E: EventBox
         :X: Expander
         :p: ViewPort
         :A: Alignment
          
    

  Elements will be packed in a table widget unless changed by a option
  when instantiating the class as in::

     lay = Layout(lay, opts="V=")

  Other values for opts are ``[>=-|]`` - to be confirmed
     :=:
       implies that label and entry will be displayed one over the other (this
       is the default)
     :-:
       implies that label and entry will be displayed on the same line.
     :\|: 
       will draw a line around the widgets, using a frame. That means a GtkFrame
       and a GtkAlignment are silently created. You can set
       properties of the silently created expander using key F.id
     :>: 
       will encapsulate the result into an Expander that allows to
       collapse all its content via a click on a little arrow. You can set
       properties of the silently created expander using key X.id. A double
       '>>' results in an expanded expander. The id is used as label for the
       expander. so that '>>.clients', will be expanded in an oped expander
       with a label "clients"
  

       
a longer example
----------------

::

   el=first_name                  el=last_name
   el=address                     -
   {V r=man/sex      r=woman/sex}  b=register







Comment
--------

A '#' sign starts a comment. Anything till the end of the line will be
discarded, as usual...



el element
-----------

the most used element will probably turn out to be a Label + Entry widget
that can be constructed as in el=first name. It will really be understood
as::

    { l=first_name el=first_name }

or::

  { l=first_name 
    el=first_name }

According to the opt modifier = or - 




list of elements
================

A partial list of elements:

    :l: Label,
    :L: EventLabel, a label in a GtkEventBox
    :e: Entry,
    :E: Event,
    :b: Button,
    :r: RadioButton,
    :c: CheckButton,
    :TV: TreeView,
    :TX: TextView,
    :TVS: ScrolledTreeView,
    :TXS: ScrolledTextView,
    :cal: Calendar,
    :sb: Statusbar,
    :le: ComboLE,

    more symbols are in the source...



custom  widgets
---------------

Occasionally you will find yourself in nee for a custom identifier. You can
create one and register it. Have a look at the code in layoutgenerator
module.


Calling Layout
==============

::

    def __init__(self, lay, level=0, parent_container="W", opts="T",
                 elements={}, container_id='',title="Window",dbg=0):

:lay:
  the string describing the desired layout
:level: 
  nested level (used only by layout itself)
:parent_container:
  a flag among the container flags that says which is the container: determines
  the packing info for the result. Default is W (Window) as a toplevel
  window. In this case info for a toplevel window is built.
:opts:
  This string has the same meaning of the modifier string of a container that
  can be put directly after the '{' char.

  Mainly this is a way to force the use of a container for the outer call of
  layout. Default is to put all widgets in a GtkTable but any container can be
  chosen from the container flags.
  
  A special component of 'opts', is 's' that asks to add a StatusBar. The
  method 'sb' is provided to talk with that Statusbar whose key name is sb=StBar.
  
:addto:
  follows the name of a container that will receive the resulting
  layout. Must be a container that accept 'add' method.







methods
--------


NOTE: some methods can only be called after 'show' has being called. These
methods use gtk directly, not glade.


   :xml(file=None): 
             will produce the xml needed for glade, may be write to file

   :show(action=function_name): will directly call glade to display the
             GUI, returns a dict of Gtk objects whose keys are the element
             *keys*. After this method there is no point in changing
             elements[] properties. The action can be gtk.main.
	     
   :elements: a dict of all lwidgets. The keys are the element
     definitions. Any element can be configure up to the moment show is called.

   :conf(el,property): 
     will set a property for an element of the layout  equivalent to::

           elements['el_key'].properties['name'] = value

   :sig(list): 
     will set handlers for the signal for each widget. The list
     is a list of tuples of 3 elements:
     
        * el_key 
	* handler 
	* signal. If the last is missing, clicked is used

   :tip (el, text): 
         a tooltip for the element 'el'. It tip is called before 
         'show', it will end up in xml+glade, otherwise it will call 
	 gtkTooltip directly

   :sb(text): 
        will push text on the StatusBar

   :menu('el_key', (entry-name, handler, signal=activated), 'i'), (), ():
        Will add MenuItems (Stock ImageMenuItems if 4^ element is 'i')

   :notebook('el_key', ['label 1', 'label2',...],position):
        Adds the label to tabs and allow to set the position (top,left,
        right, bottom) for a GtkNotebook. There is another way to obtain
        this effect. You can add %label as first entry in the block that
        will be enclosed in the notebook. See below: notebook

   :frame('el_key', 'label'):
        Adds a label to a frame, and writes it w/ bold face

   :prop(el_key,property_name, value):
        Sets a property  for element el_key

   :pack(el_key,property_name, value):
        Sets a pack property for element el_key

.. _names:

element names
=============

For each element of the layout we need to build a key for xml, so that we
know how to refer to the gtk object in the program. Layout will build the
name starting from what was written in the element description, if that
results in being already used it builds a unique name adding a number, but that 
may result in difficulty to interact with it from inside the program.

If that's an issue try being clear when creating the layout. Use ids, the
string separated by a '.' that you can add to element names and to container
flags:

  :container:
    ::

      {H.Z   {B.id0

  :element names:
    ::

       e=name.id1/string


stock names
--------------

if the name of an element starts with 'gtk-', use-stock = True is set for
that element.

Notebook
--------


A notebook need some labels to identify the tabs. These are other child of
the GtkNotebook container interspersed with the content of the
container. You can set them with the notebook method, or you can use a
symbol in the describing string using % trailer:: 

  
  {N.0  { %first_tab_RIGHT
        TXS=one }
      { %second_tab
        TXS=due
      }
  }


will be equivalent to::

   l.notepad('N.0', ['first tab','second tab'], 'right')

Please, note that you can enforce a position with a trailing _(LEFT|TOP|...)
to the first label. Note also that any underscore will be substituted w/ a
space.  



Automatic name mechanism
----------------------------


A normal element definition is of the form::

    key=string/variable:width.height


  * the :width.width part is discarded
  * the rest is used as key, *but*
  * if no 'key=' part was explicitly used as in 'first_name' two will be
    created: e=string, l=string



container naming
------------------

Containers need a name too. You are supposed to know which one is used: it
will be GtkTable unless you asked for a different one. You need it in case
you want to modify its properties.

Their name will be the container flag [THVbNPSvhpOBmMFA] possibly followed
by a dot . and an identifier. The identifier will be a progressive counter,
starting from 0 but may be imposed appending .id to the flags of the
container, as in::

  {V.my_id first_name last_name }



Functions
=========

``map_layouts(filename=None, buf=None)``

This functions fills in a dictionary widgets.info whose structure is:

  name : (label, tip)

when a widget is created w/ name 'name' the label will be set to 'label' and
a tooltip will be set to 'tip'. This can help a lot in many situations. Db
field name will be mapped to user friendly labels, translation will be as
easy as pointing to a different file. 

The function can point to a filename or can read a string. You can write
directly the info dictionary if you prefer...



Layout class implementation
===========================


Each layout live in a container (may be a toplevel Window) and creates a
container to house its children. This can cause a little bit of
confusion so I call parent_container the container in which a widget live and
container the Gtk container (Table, HBox, VBox...) where I house layout children.

You can think at your layout as divided in blocks, each one named 'cell' in
the code. A cell is or the definition of a gtkObj or a nested layout.
You can see this list for debugging purposes with method _dbg_parse_layout.

You can think at these cells as displayed in a grid, each one defined by a
row and a column. The constructor of Layout uses a dict named 'cells' with
indices (row,col) to store the name of the corresponding LWidget or
LContainer.

When the object is instantiated, Layout

  1. creates a container (LContainer object)
  2. splits the layout description into tokens that are or 
     -a element descriptions 
     - nested layouts (starts w/ '{')
     ...

For each token that describes a single element, creates the corresponding
lwidget object, for each nested layout creates another instance of Layout.

LWidgets and LContainer
-------------------------

the difference between an LWidget and an LContainer is that an LContainer has
children and must pack info for all the children when producing xml (apart
from producing the xml for itself)

Window creation
----------------


Each call to Layout must create a container to house all its children, but
the first (or outer) one needs normally to create also the TopLevel Window,
that to us is nothing than another LContainer whose (only) child is just
another container (the outer one for Layout).


Producing xml
-------------

Layout produces xml just asking to the toplevel (an LContainer object) to
produce xml.  LContainer xml, produces xml for itself and for its children,
if some of them is a container the process iterates.