[Python-checkins] CVS: python/dist/src/Doc/lib tkinter.tex,1.7,1.8

Fred L. Drake fdrake@users.sourceforge.net
Sun, 02 Dec 2001 22:12:25 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv9334/lib

Modified Files:
	tkinter.tex 
Log Message:
Clean up some material that is not part of the standard documentation.
This closes SF bug #487308.


Index: tkinter.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/tkinter.tex,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** tkinter.tex	2001/11/30 19:24:49	1.7
--- tkinter.tex	2001/12/03 06:12:23	1.8
***************
*** 247,259 ****
  \end{verbatim}
  
- \ifhtml
- \subsection{An Overview of The Tkinter Classes} % TkClassHier.html
  
! %begin{latexonly}
! %\begin{figure}[hbtp]
! %\centerline{\epsfig{file=TkClassHier.gif,width=.9\textwidth}}
! %\caption{Class Hierarchy Image}
! %\end{figure}
! %end{latexonly}
  
  The class hierarchy looks complicated, but in actual practice,
--- 247,252 ----
  \end{verbatim}
  
  
! \subsection{A (Very) Quick Look at Tcl/Tk} % BriefTclTk.html
  
  The class hierarchy looks complicated, but in actual practice,
***************
*** 261,291 ****
  bottom of the hierarchy. 
  
- Here are links to the interfaces for each of the concrete widgets:
- 
- \begin{itemize}
- \item   \citetitle[classes/ClassButton.html]{Button}  
- \item   \citetitle[classes/ClassCanvas.html]{Canvas} 
- \item   \citetitle[classes/ClassCheckbutton.html]{Checkbutton} 
- \item   \citetitle[classes/ClassEntry.html]{Entry} 
- \item   \citetitle[classes/ClassFrame.html]{Frame} 
- \item   \citetitle[classes/ClassLabel.html]{Label} 
- \item   \citetitle[classes/ClassListbox.html]{Listbox} 
- \item   \citetitle[classes/ClassMenu.html]{Menu} 
- \item   \citetitle[classes/ClassMenubutton.html]{Menubutton}  
- \item   \citetitle[classes/ClassMessage.html]{Message}  
- \item   \citetitle[classes/ClassMisc.html]{*Misc} 
- \item   \citetitle[classes/ClassPacker.html]{*Pack} 
- \item   \citetitle[classes/ClassPlacer.html]{*Place}  
- \item   \citetitle[classes/ClassRadiobutton.html]{Radiobutton}  
- \item   \citetitle[classes/ClassScale.html]{Scale}  
- \item   \citetitle[classes/ClassScrollbar.html]{Scrollbar} 
- \item   \citetitle[classes/ClassText.html]{Text} 
- \item   \citetitle[classes/ClassTk.html]{**Tk} 
- \item   \citetitle[classes/ClassToplevel.html]{Toplevel}  
- \item   \citetitle[classes/ClassWidget.html]{***Widget}  
- \item   \citetitle[classes/ClassWm.html]{*Wm} 
- \end{itemize}
- 
- 
  Notes:
  \begin{itemize}
--- 254,257 ----
***************
*** 293,308 ****
  organizing certain functions under one namespace. They aren't meant to
  be instantiated independently.
! \item    The Tk class is meant to be instantiated only once in
  an application. Application programmers need not instantiate one
  explicitly, the system creates one whenever any of the other classes
  are instantiated.
- \item    The Widget class is not meant to be instantiated, it
- is meant only for subclassing to make ``real'' widgets. (in \Cpp, this
- is called an `abstract class')
- \end{itemize}
- \fi
  
! 
! \subsection{A (Very) Quick Look at Tcl/Tk} % BriefTclTk.html
  
  To make use of this reference material, there will be times when you
--- 259,272 ----
  organizing certain functions under one namespace. They aren't meant to
  be instantiated independently.
! 
! \item    The \class{Tk} class is meant to be instantiated only once in
  an application. Application programmers need not instantiate one
  explicitly, the system creates one whenever any of the other classes
  are instantiated.
  
! \item    The \class{Widget} class is not meant to be instantiated, it
! is meant only for subclassing to make ``real'' widgets (in \Cpp, this
! is called an `abstract class').
! \end{itemize}
  
  To make use of this reference material, there will be times when you