#!/usr/bin/env python # -*- coding: utf-8 -*- # Box1.py # Cristian García # Ignacio Rodríguez from gi.repository import Gtk from gi.repository import Gdk from Widgets import Marcadores class Box1(Gtk.Box): def __init__(self): super(Box1, self).__init__(orientation=Gtk.Orientation.VERTICAL) self.marcadores = Marcadores() self.pack_start(self.marcadores, True, True, 0) x = Gdk.Screen.width() / 3 self.set_size_request(x, -1) self.show_all()