Update of /cvsroot/gtk2hs/gtk2hs/gtk/Graphics/UI
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22213/gtk/Graphics/UI
Modified Files:
Gtk.hs
Log Message:
Add several new modules. This adds ~2.6 Kloc.
gtk/Graphics/UI/Gtk.hs: export the new modules.
Makefile.am: add the new modules to libHSgtk_a_SOURCES.
Index: Gtk.hs
===================================================================
RCS file: /cvsroot/gtk2hs/gtk2hs/gtk/Graphics/UI/Gtk.hs,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- Gtk.hs 26 Feb 2005 02:54:35 -0000 1.5
+++ Gtk.hs 5 Apr 2005 18:29:53 -0000 1.6
@@ -55,6 +55,8 @@
-- * Windows
module Graphics.UI.Gtk.Windows.Window,
module Graphics.UI.Gtk.Windows.Dialog,
+ module Graphics.UI.Gtk.Windows.AboutDialog,
+ module Graphics.UI.Gtk.Windows.WindowGroup,
-- * Display widgets,
module Graphics.UI.Gtk.Display.AccelLabel,
module Graphics.UI.Gtk.Display.Image,
@@ -85,6 +87,8 @@
module Graphics.UI.Gtk.TreeList.TreeSelection,
module Graphics.UI.Gtk.TreeList.TreeViewColumn,
module Graphics.UI.Gtk.TreeList.TreeView,
+ module Graphics.UI.Gtk.TreeList.IconView,
+ module Graphics.UI.Gtk.TreeList.CellView,
-- module TreeSortable,
module Graphics.UI.Gtk.TreeList.TreeModelSort,
module Graphics.UI.Gtk.TreeList.CellRenderer,
@@ -112,14 +116,18 @@
-- * Selectors (file\/font\/color)
module Graphics.UI.Gtk.Selectors.ColorSelection,
module Graphics.UI.Gtk.Selectors.ColorSelectionDialog,
+ module Graphics.UI.Gtk.Selectors.ColorButton,
module Graphics.UI.Gtk.Selectors.FileSelection,
module Graphics.UI.Gtk.Selectors.FontSelection,
module Graphics.UI.Gtk.Selectors.FontSelectionDialog,
+ module Graphics.UI.Gtk.Selectors.FontButton,
-- module InputDialog,
-- ** File chooser
module Graphics.UI.Gtk.Selectors.FileChooser,
module Graphics.UI.Gtk.Selectors.FileChooserDialog,
module Graphics.UI.Gtk.Selectors.FileChooserWidget,
+ module Graphics.UI.Gtk.Selectors.FileChooserButton,
+ module Graphics.UI.Gtk.Selectors.FileFilter,
-- * Layout containers
module Graphics.UI.Gtk.Layout.Alignment,
module Graphics.UI.Gtk.Layout.AspectFrame,
@@ -196,7 +204,8 @@
-- windows
import Graphics.UI.Gtk.Windows.Dialog
import Graphics.UI.Gtk.Windows.Window
---import WindowGroup
+import Graphics.UI.Gtk.Windows.AboutDialog
+import Graphics.UI.Gtk.Windows.WindowGroup
-- display widgets
import Graphics.UI.Gtk.Display.AccelLabel
import Graphics.UI.Gtk.Display.Image
@@ -235,6 +244,8 @@
import Graphics.UI.Gtk.TreeList.TreeSelection
import Graphics.UI.Gtk.TreeList.TreeViewColumn
import Graphics.UI.Gtk.TreeList.TreeView
+import Graphics.UI.Gtk.TreeList.IconView
+import Graphics.UI.Gtk.TreeList.CellView
--import TreeSortable
import Graphics.UI.Gtk.TreeList.TreeModelSort
import Graphics.UI.Gtk.TreeList.CellRenderer
@@ -263,12 +274,16 @@
-- selectors (file\/font\/color\/input device)
import Graphics.UI.Gtk.Selectors.ColorSelection
import Graphics.UI.Gtk.Selectors.ColorSelectionDialog
+import Graphics.UI.Gtk.Selectors.ColorButton
import Graphics.UI.Gtk.Selectors.FileSelection
import Graphics.UI.Gtk.Selectors.FileChooser
import Graphics.UI.Gtk.Selectors.FileChooserDialog
import Graphics.UI.Gtk.Selectors.FileChooserWidget
+import Graphics.UI.Gtk.Selectors.FileChooserButton
+import Graphics.UI.Gtk.Selectors.FileFilter
import Graphics.UI.Gtk.Selectors.FontSelection
import Graphics.UI.Gtk.Selectors.FontSelectionDialog
+import Graphics.UI.Gtk.Selectors.FontButton
--import InputDialog
-- layout containers
import Graphics.UI.Gtk.Layout.Alignment
|