{-# LINE 2 "./Graphics/UI/Gtk/ModelView/CellRendererSpinner.chs" #-}
-- -*-haskell-*-
-- GIMP Toolkit (GTK) Widget CellRendererSpinner
--
-- Author : Andy Stewart
--
-- Created: 25 Mar 2010
--
-- Copyright (C) 2010 Andy Stewart
--
-- This library is free software; you can redistribute it and/or
-- modify it under the terms of the GNU Lesser General Public
-- License as published by the Free Software Foundation; either
-- version 2.1 of the License, or (at your option) any later version.
--
-- This library 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
-- Lesser General Public License for more details.
--
-- |
-- Maintainer : gtk2hs-users@lists.sourceforge.net
-- Stability : provisional
-- Portability : portable (depends on GHC)
--
-- Renders a spinning animation in a cell
--
-- * Module available since Gtk+ version 2.20
--
module Graphics.UI.Gtk.ModelView.CellRendererSpinner (
-- * Detail
-- | 'CellRendererSpinner' renders a spinning animation in a cell, very similar to 'Spinner'. It can
-- often be used as an alternative to a 'CellRendererProgress' for displaying indefinite activity,
-- instead of actual progress.
--
-- To start the animation in a cell, set the "active" property to 'True' and increment the "pulse"
-- property at regular intervals. The usual way to set the cell renderer properties for each cell is
-- to bind them to columns in your tree model using e.g. 'treeViewColumnAddAttribute'.

-- * Class Hierarchy
--
-- |
-- @
-- | 'GObject'
-- | +----'Object'
-- | +----'CellRenderer'
-- | +----'CellRendererSpinner'
-- @
{-# LINE 65 "./Graphics/UI/Gtk/ModelView/CellRendererSpinner.chs" #-}
) where

import Control.Monad (liftM)

import System.Glib.FFI
import System.Glib.Attributes
import System.Glib.Properties
import Graphics.UI.Gtk.Abstract.Object (makeNewObject)
import Graphics.UI.Gtk.General.Structs (IconSize(..))
import Graphics.UI.Gtk.Types
{-# LINE 75 "./Graphics/UI/Gtk/ModelView/CellRendererSpinner.chs" #-}


{-# LINE 77 "./Graphics/UI/Gtk/ModelView/CellRendererSpinner.chs" #-}