Update of /cvsroot/gtk2hs/gtk2hs/gtk/general
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13720/gtk/general
Modified Files:
Gtk.hs
Log Message:
add new widgets & demo contributed by Matthew Walton
also add Bin abstract class (just for completeness - it's pretty pointless)
Index: Gtk.hs
===================================================================
RCS file: /cvsroot/gtk2hs/gtk2hs/gtk/general/Gtk.hs,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- Gtk.hs 27 Apr 2004 18:51:16 -0000 1.20
+++ Gtk.hs 30 Apr 2004 13:45:33 -0000 1.21
@@ -35,8 +35,6 @@
-- Item : The only child of this abstract class is MenuItem. The
-- three signals Item defines are therefore bound in
-- MenuItem.
--- Bin : This abstract widget is of no use to the user. We should
--- not need the Bin and BinClass entities either.
-- Editable : This should be the base class of Entry, but it is not.
-- I moved everything into Entry.
--
@@ -130,6 +128,7 @@
module Alignment,
module AspectFrame,
module HBox,
+ module HButtonBox,
-- module Fixed,
module HPaned,
module Layout,
@@ -139,6 +138,7 @@
#endif
module Table,
module VBox,
+ module VButtonBox,
module VPaned,
-- ornaments
module Frame,
@@ -162,6 +162,7 @@
-- abstract base classes
module Box,
module Container,
+ module Bin,
module Misc,
module Object,
module Paned,
@@ -278,8 +279,8 @@
import AspectFrame
import HBox
import VBox
---import HButtonBox
---import VButtonBox
+import HButtonBox
+import VButtonBox
--import Fixed
import HPaned
import VPaned
@@ -313,8 +314,9 @@
--import Accessible
-- abstract base classes
import Box
---import ButtonBox
+import ButtonBox
import Container
+import Bin
import Misc
import Object
import Paned
|