From: Duncan C. <dun...@us...> - 2005-01-08 16:42:26
|
Update of /cvsroot/gtk2hs/gtk2hs/mogul/Graphics/UI/Gtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17520/mogul/Graphics/UI/Gtk Added Files: Mogul.hs Log Message: mogul package namespace conversion. --- NEW FILE: Mogul.hs --- {-# OPTIONS -cpp #-} -- -*-haskell-*- -- The Monad GUI Library (Mogul): The all importing main file. -- -- Author : Axel Simon -- -- Created: 3 June 2001 -- -- Version $Revision: 1.1 $ from $Date: 2005/01/08 16:42:15 $ -- -- Copyright (c) 2001 Axel Simon -- -- This file is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This file is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- | -- -- This module re-exports all unchanged Gtk and Mogul entities. -- #include <config.h> module Graphics.UI.Gtk.Mogul ( module Graphics.UI.Gtk.Mogul.NewWidget, module Graphics.UI.Gtk.Mogul.GetWidget, module Graphics.UI.Gtk.Mogul.MDialog, module Graphics.UI.Gtk.Mogul.TreeList, module Graphics.UI.Gtk ) where import Graphics.UI.Gtk.Mogul.NewWidget import Graphics.UI.Gtk.Mogul.GetWidget import Graphics.UI.Gtk.Mogul.MDialog --import Multiline import Graphics.UI.Gtk.Mogul.TreeList import Graphics.UI.Gtk hiding ( textBufferNew, -- textTagNew, -- textTagTableNew, labelNew, accelLabelNew, arrowNew, imageNewFromFile, alignmentNew, frameNew, buttonNew, buttonNewWithLabel, buttonNewWithMnemonic, buttonNewFromStock, toggleButtonNew, toggleButtonNewWithLabel, checkButtonNew, checkButtonNewWithLabel, checkButtonNewWithMnemonic, radioButtonNew, radioButtonNewWithLabel, radioButtonNewJoinGroup, radioButtonNewJoinGroupWithLabel, #ifndef DISABLE_DEPRECATED optionMenuNew, #endif menuItemNew, menuItemNewWithLabel, checkMenuItemNew, checkMenuItemNewWithLabel, radioMenuItemNew, radioMenuItemNewWithLabel, radioMenuItemNewJoinGroup, radioMenuItemNewJoinGroupWithLabel, tearoffMenuItemNew, windowNew, dialogNew, --colorSelectionDialogNew, --fileSelectionNew, --fontSelectionDialogNew, --plugNew, eventBoxNew, handleBoxNew, scrolledWindowNew, viewportNew, vBoxNew, --colorSelectionNew, --fontSelectionNew, hBoxNew, #ifndef DISABLE_DEPRECATED comboNew, #endif statusbarNew, hPanedNew, vPanedNew, layoutNew, menuNew, menuBarNew, notebookNew, --socketNew, tableNew, textViewNew, toolbarNew, -- the following functions and types are replaced in TreeList.hs treeViewNew, -- TreeModel treeModelGetValue, TreePath, treePathNew, treePathNewFromString, treePathToString, treePathNewFirst, treePathAppendIndex, treePathPrependIndex, treePathGetDepth, treePathGetIndices, treePathCopy, treePathCompare, treePathNext, treePathPrev, treePathUp, treePathDown, treeModelGetIter, treeModelGetPath, -- ListStore listStoreNew, listStoreSetValue, -- TreeStore treeStoreNew, treeStoreSetValue, -- TreeViewColumn treeViewColumnAddAttribute, CellRendererText, onEdited, afterEdited, CellRendererPixbuf, CellRendererToggle, -- TreeView treeViewGetPathAtPos, calendarNew, --drawingAreaNew, entryNew, spinButtonNew, spinButtonNewWithRange, hScaleNew, vScaleNew, hScrollbarNew, vScrollbarNew, hSeparatorNew, vSeparatorNew, progressBarNew, adjustmentNew, --iMContextNew, --iMMulticontextNew, --itemFactoryNew, tooltipsNew, treeStoreNew, listStoreNew, iconFactoryNew) |