schrodinger.ui.widget package¶
Schrodinger-specific Tk widgets, including PMW widgets.
This is actually a package that acts like a module.
The usage of these widgets is (nearly) identical to the use of standard TK widgets. For example, to create a simple Label widget, do:
import schrodnger.ui.widget as stk
mylabel = stk.Label(parent, text="TEXT")
mylabel.pack(side=stk.LEFT)
Copyright Schrodinger, LLC. All rights reserved.