~glitter-team/glitter/trunk

« back to all changes in this revision

Viewing changes to glitter/variable_space.py

(Merge) From layout engine improvements: New variable space widget, video widget bug fix, improved tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# !/usr/bin/python
 
2
# -*- coding: utf-8 -*-
 
3
 
 
4
# Glitter Toolkit
 
5
 
 
6
__authors__ = ["Jan Jokela <janjokela@gmail.com>"]
 
7
__licenses__ = ["LICENSE.LGPL"]
 
8
__description__ = "Variable space widget"
 
9
 
 
10
import gobject
 
11
 
 
12
from container import Container
 
13
 
 
14
class VariableSpace(Container):
 
15
    """ 
 
16
    Variable space is a layout container that represents free space in the user
 
17
    interface.
 
18
    
 
19
    """
 
20
        
 
21
    def __init__(self):
 
22
        """ Initialize variable space widget """
 
23
        
 
24
        super(VariableSpace, self).__init__()
 
25
        
 
26
        
 
27
        
 
28
        
 
29