From: Duncan C. <dun...@us...> - 2005-02-25 22:53:53
|
Update of /cvsroot/gtk2hs/gtk2hs/gtk/Graphics/UI/Gtk/Multiline In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11239/gtk/Graphics/UI/Gtk/Multiline Modified Files: TextView.chs TextBuffer.chs TextTag.chs.pp Log Message: various small changes: Trivial white space changes to better match the generated code. Minor documentation changes. Other trivial changes to better match the generated code. TreeModelSort.chs.pp: since GtkTreeModelSort implementes the GtkTreeModel interface, make TreeModelSort an instance of TreeModelClass. ImageMenuItem.chs: relicense to LGPL with permission of Jonas Svensson. Index: TextView.chs =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/gtk/Graphics/UI/Gtk/Multiline/TextView.chs,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- TextView.chs 25 Feb 2005 01:11:36 -0000 1.3 +++ TextView.chs 25 Feb 2005 22:53:42 -0000 1.4 @@ -152,7 +152,8 @@ onSetScrollAdjustments, afterSetScrollAdjustments, onToggleOverwrite, - afterToggleOverwrite) where + afterToggleOverwrite + ) where import Monad (liftM) Index: TextTag.chs.pp =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/gtk/Graphics/UI/Gtk/Multiline/TextTag.chs.pp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- TextTag.chs.pp 25 Feb 2005 01:11:36 -0000 1.3 +++ TextTag.chs.pp 25 Feb 2005 22:53:42 -0000 1.4 @@ -19,16 +19,16 @@ -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- Lesser General Public License for more details. -- +-- TODO +-- +-- accessor functions for TextAttributes +-- -- | -- Maintainer : gtk...@li... -- Stability : provisional -- Portability : portable (depends on GHC) -- --- A tag that can be applied to text in a "TextBuffer". --- --- TODO --- --- * accessor functions for TextAttributes +-- A tag that can be applied to text in a 'TextBuffer'. -- module Graphics.UI.Gtk.Multiline.TextTag ( -- * Description Index: TextBuffer.chs =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/gtk/Graphics/UI/Gtk/Multiline/TextBuffer.chs,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- TextBuffer.chs 25 Feb 2005 01:11:36 -0000 1.3 +++ TextBuffer.chs 25 Feb 2005 22:53:42 -0000 1.4 @@ -42,31 +42,35 @@ -- gtk_text_buffer_add_selection_clipboard -- gtk_text_buffer_remove_selection_clipboard -- --- | --- Maintainer : gtk...@li... --- Stability : provisional --- Portability : portable (depends on GHC) --- --- This storage object holds text to be displayed by one or more --- 'TextView' widgets. --- --- * See \"Text Widget Overview\" in the Gtk+ docs. +-- NOTES -- --- * The following convenience functions are omitted: +-- The following convenience functions are omitted: -- gtk_text_buffer_insert_with_tags -- gtk_text_buffer_insert_with_tags_by_name -- gtk_text_buffer_create_tag -- gtk_text_buffer_get_bounds -- gtk_text_buffer_get_selection_bounds -- --- * The following functions do not make sense due to Haskell's wide character +-- The following functions do not make sense due to Haskell's wide character -- representation of Unicode: -- gtk_text_buffer_get_iter_at_line_index -- --- * The function gtk_text_buffer_get_selection_bounds is only used to test +-- The function gtk_text_buffer_get_selection_bounds is only used to test -- if there is a selection (see 'textBufferHasSelection'). -- +-- | +-- Maintainer : gtk...@li... +-- Stability : provisional +-- Portability : portable (depends on GHC) +-- +-- Stores attributed text for display in a 'TextView' +-- module Graphics.UI.Gtk.Multiline.TextBuffer ( +-- * Description +-- +-- | You may wish to begin by reading the text widget conceptual overview +-- which gives an overview of all the objects and data types related to the +-- text widget and how they work together. -- * Class Hierarchy -- | |