ocarina/src/extra/oGtk/tabs.py

21 lines
375 B
Python

#! /usr/bin/python
# To change this template, choose Tools | Templates
# and open the template in the editor.
__author__="bjschuma"
__date__ ="$Mar 21, 2010 12:47:11 PM$"
import gtk
import guibuilder
class Tabs(gtk.Notebook):
def __init__(self):
gtk.Notebook.__init__(self)
self.show()
def make_tabs(attrs=None):return Tabs()
guibuilder.parts["tabs"] = make_tabs