This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from PyQt4 import QtGui, QtCore | |
from FingerTabs import FingerTabWidget, FingerTabBarWidget | |
import sys | |
app = QtGui.QApplication(sys.argv) | |
tabs = QtGui.QTabWidget() | |
tabBar = FingerTabBarWidget(width=100,height=25) | |
tabs.setTabBar(tabBar) | |
digits = ['Thumb','Pointer','Rude','Ring','Pinky'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
"""Convert a master latex file, | |
into a single document by including | |
automatically all the LaTeX documents | |
which are arguments of | |
\include or \input | |
ignoring any \includeonly | |
""" | |
import sys | |
if len(sys.argv)==3: |