00001 // @(#)root/gui:$Id: TGTextBuffer.cxx 23115 2008-04-10 13:35:37Z rdm $ 00002 // Author: Fons Rademakers 05/05/98 00003 00004 /************************************************************************* 00005 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * 00006 * All rights reserved. * 00007 * * 00008 * For the licensing terms see $ROOTSYS/LICENSE. * 00009 * For the list of contributors see $ROOTSYS/README/CREDITS. * 00010 *************************************************************************/ 00011 /************************************************************************** 00012 00013 This source is based on Xclass95, a Win95-looking GUI toolkit. 00014 Copyright (C) 1996, 1997 David Barth, Ricky Ralston, Hector Peraza. 00015 00016 Xclass95 is free software; you can redistribute it and/or 00017 modify it under the terms of the GNU Library General Public 00018 License as published by the Free Software Foundation; either 00019 version 2 of the License, or (at your option) any later version. 00020 00021 **************************************************************************/ 00022 00023 ////////////////////////////////////////////////////////////////////////// 00024 // // 00025 // TGTextBuffer // 00026 // // 00027 // A text buffer is used in several widgets, like TGTextEntry, // 00028 // TGFileDialog, etc. It is a little wrapper around the powerful // 00029 // TString class and used for single line texts. For multi line texts // 00030 // use TGText. // 00031 // // 00032 ////////////////////////////////////////////////////////////////////////// 00033 00034 #include "TGTextBuffer.h" 00035 00036 00037 ClassImp(TGTextBuffer)