Package schrodinger :: Package ui :: Package widget :: Module pmwwidget
[hide private]
[frames] | no frames]

Module pmwwidget

This module contains all Schrodinger-specific PMW widgets.

To use widgets from this module, do the following:

   import schrodinger.ui.widget as stk
   myfield = stk.EntryField(<args>)

Copyright Schrodinger, LLC. All rights reserved.

Classes [hide private]
  schroPmwWrapper
Parent class for all Schrodinger Pmw widgets.
  ButtonBox
Class that mimics the Pmw.ButtonBox class.
  ComboBox
Class that mimics the Pmw.ComboBox class.
  EntryField
Class that mimics the Pmw.EntryField class.
  ScrolledFrame
Class that mimics the Pmw.ScrolledFrame class.
  ScrolledListBox
Class that mimics the Pmw.ScrolledListBox class.
  RadioSelect
Class that mimics the Pmw.RadioSelect class.
  OptionMenu
Class that mimics the Pmw.OptionMenu class.
  Group
Class that mimics the Pmw.Group class.
  NoteBook
Class that mimics the Pmw.NoteBook class.
  Counter
Class that mimics the Pmw.Counter class.
  Dialog
Class that mimics the Pmw.Dialog class.
  PromptDialog
Class that mimics the Pmw.Dialog class.
  MessageDialog
Class that mimics the Pmw.Dialog class.
  showinfo
Class designed to mimic the tkMessageBox.showinfo class with the caveat that a parent argument must be specified.
  showwarning
Class designed to mimic the tkMessageBox.showwarning class with the caveat that a parent argument must be specified.
  MainMenuBar
Class that mimics the Pmw.MainMenuBar class.
  PanedWidget
Class that mimics the Pmw.PanedWidget class.
  Balloon
Class that mimics the Pmw.Balloon class.
  ScrolledCanvas
Class that mimics the Pmw.ScrolledCanvas class.
  ScrolledText
Class that mimics the Pmw.ScrolledText class.
Variables [hide private]
  __doc__ = ...
  DEFAULT = ['default']
  __package__ = 'schrodinger.ui.widget'
Variables Details [hide private]

__doc__

Value:
"""
This module contains all Schrodinger-specific PMW widgets.

To use widgets from this module, do the following::

    import schrodinger.ui.widget as stk
    myfield = stk.EntryField(<args>)

...