Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/MainPaned.py
blob: e73ff3285ea2abd621bdb369bef2541c7834b3bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# MainPaned.py
# Cristian García <cristian99garcia@gmail.com>
# Ignacio Rodríguez <nachoel01@gmail.com>

from gi.repository import Gtk
from Box1 import Box1
from Box2 import Box2

class MainPaned(Gtk.HPaned):
    def __init__(self):
        super(MainPaned, self).__init__()
        
        self.pack1(Box1())
        self.pack2(Box2())
        self.show_all()