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
|
# !/usr/bin/python
# -*- coding: utf-8 -*-
# Glitter Toolkit
__authors__ = ["Jan Jokela <janjokela@gmail.com>"]
__licenses__ = ["LICENSE.LGPL"]
__description__ = "Variable space widget"
import gobject
from container import Container
class VariableSpace(Container):
"""
Variable space is a layout container that represents free space in the user
interface.
"""
def __init__(self):
""" Initialize variable space widget """
super(VariableSpace, self).__init__()
|