# TextBox widgets
# Copyright (C) 1996 Red Hat, Inc
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

from Tkinter import *
from rhtkinter import RHFrame

# add more types of text boxes and convenience functions as necessary

class VScrolledTextBox(Text):
    def __init__(self, Master = None, cnf={}, **kw):
	self.FM = RHFrame(Master)
	Text.__init__(self, self.FM, cnf)
	vscroll = Scrollbar(self.FM, {'command':self.yview})
	self['yscrollcommand'] = vscroll.set
	vscroll.pack({'side':'right', 'expand':'1', 'fill':'y'})
	Text.pack(self, {'side':'left', 'expand':'1', 'fill':'both'})
    def pack(self, cnf={}):
	self.FM.pack(cnf)


