Sat, 07 Apr 2012 21:19:24 +0200
Added a tool to take screenshots (fullscreen or rectangular selection).
# -*- coding: utf-8 -*- # Copyright (c) 2004 - 2012 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implemting a dialog to show repository information. """ from PyQt4.QtGui import QDialog from .Ui_RepositoryInfoDialog import Ui_VcsRepositoryInfoDialog class VcsRepositoryInfoDialog(QDialog, Ui_VcsRepositoryInfoDialog): """ Class implemting a dialog to show repository information. """ def __init__(self, parent, info): super().__init__(parent) self.setupUi(self) self.infoBrowser.setHtml(info)