From: Duncan C. <dun...@us...> - 2004-07-30 16:32:10
|
Update of /cvsroot/gtk2hs/gtk2hs/gtk/general In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9661/gtk/general Modified Files: Gtk.hs Log Message: Split Editable interface out of Entry.chs and into a new module. Also added some missing functions to Entry.chs & Editable.chs. Added interface to hierarchy.list. Make SpinButton implement this interface. Export new module from gtk/Gtk.hs. Index: Gtk.hs =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/gtk/general/Gtk.hs,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- Gtk.hs 23 May 2004 15:58:48 -0000 1.25 +++ Gtk.hs 30 Jul 2004 16:32:01 -0000 1.26 @@ -34,8 +34,6 @@ -- Item : The only child of this abstract class is MenuItem. The -- three signals Item defines are therefore bound in -- MenuItem. --- Editable : This should be the base class of Entry, but it is not. --- I moved everything into Entry. -- -- TODO -- @@ -78,6 +76,7 @@ module RadioButton, module ToggleButton, -- * Numeric\/text data entry + module Editable, module Entry, #if GTK_CHECK_VERSION(2,4,0) module EntryCompletion, @@ -225,6 +224,7 @@ import RadioButton import ToggleButton -- numeric\/text data entry +import Editable import Entry #if GTK_CHECK_VERSION(2,4,0) import EntryCompletion |