mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
17 lines
377 B
Python
Executable File
17 lines
377 B
Python
Executable File
# $Id$
|
|
#
|
|
# Copyright (C) 2002-2006 Greg Landrum and Rational Discovery LLC
|
|
# All Rights Reserved
|
|
#
|
|
from qt import *
|
|
import time
|
|
from forms.textview import TextView as _Form
|
|
|
|
class TextView(_Form):
|
|
def __init__(self,src,
|
|
parent=None,fl=0):
|
|
_Form.__init__(self,parent=parent,fl=fl)
|
|
self.textBrowser.setText(src)
|
|
self.textBrowser.setReadOnly(1)
|
|
|