Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/MainPaned.py
blob: 5cddc0ae6337084c0aacb9ba15f4dc7b1df4b796 (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, toolbar):
        super(MainPaned, self).__init__()
        
        self.pack1(Box1())
        self.pack2(Box2(toolbar))
        self.show_all()