1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
|
{-# LANGUAGE CPP #-}
-- -*-haskell-*-
-- GIMP Toolkit (GTK) Widget ProgressBar
--
-- Author : Axel Simon
--
-- Created: 23 May 2001
--
-- Copyright (C) 1999-2005 Axel Simon
--
-- 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)
--
-- A widget which indicates progress visually
--
module Graphics.UI.Gtk.Display.ProgressBar (
-- * Detail
--
-- | The 'ProgressBar' is typically used to display the progress of a long
-- running operation. It provides a visual clue that processing is underway.
-- The 'ProgressBar' can be used in two different modes: percentage mode and
-- activity mode.
--
-- When an application can determine how much work needs to take place (e.g.
-- read a fixed number of bytes from a file) and can monitor its progress, it
-- can use the 'ProgressBar' in percentage mode and the user sees a growing bar
-- indicating the percentage of the work that has been completed. In this mode,
-- the application is required to call 'progressBarSetFraction' periodically to
-- update the progress bar.
--
-- When an application has no accurate way of knowing the amount of work to
-- do, it can use the 'ProgressBar' in activity mode, which shows activity by a
-- block moving back and forth within the progress area. In this mode, the
-- application is required to call 'progressBarPulse' perodically to update the
-- progress bar.
--
-- There is quite a bit of flexibility provided to control the appearance of
-- the 'ProgressBar'. Functions are provided to control the orientation of the
-- bar, optional text can be displayed along with the bar, and the step size
-- used in activity mode can be set.
-- * Class Hierarchy
-- |
-- @
-- | 'GObject'
-- | +----'Object'
-- | +----'Widget'
-- | +----ProgressBar
-- @
-- * Types
ProgressBar,
ProgressBarClass,
castToProgressBar, gTypeProgressBar,
toProgressBar,
-- * Constructors
progressBarNew,
-- * Methods
progressBarPulse,
progressBarSetText,
progressBarSetFraction,
progressBarSetPulseStep,
progressBarGetFraction,
progressBarGetPulseStep,
progressBarGetText,
ProgressBarOrientation(..),
progressBarSetOrientation,
progressBarGetOrientation,
#if GTK_CHECK_VERSION(2,6,0)
progressBarSetEllipsize,
progressBarGetEllipsize,
#endif
-- * Attributes
progressBarOrientation,
progressBarDiscreteBlocks,
progressBarFraction,
progressBarPulseStep,
progressBarText,
#if GTK_CHECK_VERSION(2,6,0)
progressBarEllipsize,
#endif
) where
import Control.Monad (liftM)
import System.Glib.FFI
import System.Glib.UTFString
import System.Glib.Attributes
import System.Glib.Properties
import Graphics.UI.Gtk.Abstract.Object (makeNewObject)
{#import Graphics.UI.Gtk.Types#}
import Graphics.UI.Gtk.General.Enums (ProgressBarOrientation(..))
#if GTK_CHECK_VERSION(2,6,0)
import Graphics.Rendering.Pango.Enums (EllipsizeMode(..))
#endif
{# context lib="gtk" prefix="gtk" #}
--------------------
-- Constructors
-- | Creates a new 'ProgressBar'.
--
progressBarNew :: IO ProgressBar
progressBarNew =
makeNewObject mkProgressBar $
liftM (castPtr :: Ptr Widget -> Ptr ProgressBar) $
{# call unsafe progress_bar_new #}
--------------------
-- Methods
-- | Indicates that some progress is made, but you don't know how much. Causes
-- the progress bar to enter \"activity mode\", where a block bounces back and
-- forth. Each call to 'progressBarPulse' causes the block to move by a little
-- bit (the amount of movement per pulse is determined by
-- 'progressBarSetPulseStep').
--
progressBarPulse :: ProgressBarClass self => self -> IO ()
progressBarPulse self =
{# call unsafe progress_bar_pulse #}
(toProgressBar self)
-- | Causes the given @text@ to appear superimposed on the progress bar.
--
progressBarSetText :: ProgressBarClass self => self -> String -> IO ()
progressBarSetText self text =
withUTFString text $ \textPtr ->
{# call unsafe progress_bar_set_text #}
(toProgressBar self)
textPtr
-- | Causes the progress bar to \"fill in\" the given fraction of the bar. The
-- fraction should be between 0.0 and 1.0, inclusive.
--
progressBarSetFraction :: ProgressBarClass self => self
-> Double -- ^ @fraction@ - fraction of the task that's been completed
-> IO ()
progressBarSetFraction self fraction =
{# call unsafe progress_bar_set_fraction #}
(toProgressBar self)
(realToFrac fraction)
-- | Sets the fraction of total progress bar length to move the bouncing block
-- for each call to 'progressBarPulse'.
--
progressBarSetPulseStep :: ProgressBarClass self => self
-> Double -- ^ @fraction@ - fraction between 0.0 and 1.0
-> IO ()
progressBarSetPulseStep self fraction =
{# call unsafe progress_bar_set_pulse_step #}
(toProgressBar self)
(realToFrac fraction)
-- | Returns the current fraction of the task that's been completed.
--
progressBarGetFraction :: ProgressBarClass self => self
-> IO Double -- ^ returns a fraction from 0.0 to 1.0
progressBarGetFraction self =
liftM realToFrac $
{# call unsafe progress_bar_get_fraction #}
(toProgressBar self)
-- | Retrieves the pulse step set with 'progressBarSetPulseStep'
--
progressBarGetPulseStep :: ProgressBarClass self => self
-> IO Double -- ^ returns a fraction from 0.0 to 1.0
progressBarGetPulseStep self =
liftM realToFrac $
{# call unsafe progress_bar_get_pulse_step #}
(toProgressBar self)
-- | Retrieves the text displayed superimposed on the progress bar, if any,
-- otherwise @Nothing@.
--
progressBarGetText :: ProgressBarClass self => self
-> IO (Maybe String) -- ^ returns text, or @Nothing@
progressBarGetText self =
{# call unsafe progress_bar_get_text #}
(toProgressBar self)
>>= maybePeek peekUTFString
-- | Causes the progress bar to switch to a different orientation
-- (left-to-right, right-to-left, top-to-bottom, or bottom-to-top).
--
progressBarSetOrientation :: ProgressBarClass self => self -> ProgressBarOrientation -> IO ()
progressBarSetOrientation self orientation =
{# call progress_bar_set_orientation #}
(toProgressBar self)
((fromIntegral . fromEnum) orientation)
-- | Retrieves the current progress bar orientation.
--
progressBarGetOrientation :: ProgressBarClass self => self -> IO ProgressBarOrientation
progressBarGetOrientation self =
liftM (toEnum . fromIntegral) $
{# call unsafe progress_bar_get_orientation #}
(toProgressBar self)
#if GTK_CHECK_VERSION(2,6,0)
-- | Sets the mode used to ellipsize (add an ellipsis: \"...\") the text if
-- there is not enough space to render the entire string.
--
-- * Available since Gtk+ version 2.6
--
progressBarSetEllipsize :: ProgressBarClass self => self -> EllipsizeMode -> IO ()
progressBarSetEllipsize self mode =
{# call gtk_progress_bar_set_ellipsize #}
(toProgressBar self)
((fromIntegral . fromEnum) mode)
-- | Returns the ellipsizing position of the progressbar. See
-- 'progressBarSetEllipsize'.
--
-- * Available since Gtk+ version 2.6
--
progressBarGetEllipsize :: ProgressBarClass self => self -> IO EllipsizeMode
progressBarGetEllipsize self =
liftM (toEnum . fromIntegral) $
{# call gtk_progress_bar_get_ellipsize #}
(toProgressBar self)
#endif
--------------------
-- Attributes
-- | Orientation and growth direction of the progress bar.
--
-- Default value: 'ProgressLeftToRight'
--
progressBarOrientation :: ProgressBarClass self => Attr self ProgressBarOrientation
progressBarOrientation = newAttr
progressBarGetOrientation
progressBarSetOrientation
-- | The number of discrete blocks in a progress bar (when shown in the
-- discrete style).
--
-- Allowed values: >= 2
--
-- Default value: 10
--
progressBarDiscreteBlocks :: ProgressBarClass self => Attr self Int
progressBarDiscreteBlocks = newAttrFromUIntProperty "discrete-blocks"
-- | The fraction of total work that has been completed.
--
-- Allowed values: [0,1]
--
-- Default value: 0
--
progressBarFraction :: ProgressBarClass self => Attr self Double
progressBarFraction = newAttr
progressBarGetFraction
progressBarSetFraction
-- | The fraction of total progress to move the bouncing block when pulsed.
--
-- Allowed values: [0,1]
--
-- Default value: 0.1
--
progressBarPulseStep :: ProgressBarClass self => Attr self Double
progressBarPulseStep = newAttr
progressBarGetPulseStep
progressBarSetPulseStep
-- | Text to be displayed in the progress bar.
--
-- Default value: \"%P %%\"
--
progressBarText :: ProgressBarClass self => ReadWriteAttr self (Maybe String) String
progressBarText = newAttr
progressBarGetText
progressBarSetText
#if GTK_CHECK_VERSION(2,6,0)
-- | The preferred place to ellipsize the string, if the progressbar does not
-- have enough room to display the entire string, specified as a
-- 'EllipsizeMode'.
--
-- Note that setting this property to a value other than 'EllipsizeNone' has
-- the side-effect that the progressbar requests only enough space to display
-- the ellipsis \"...\". Another means to set a progressbar's width is
-- 'Graphics.UI.Gtk.Abstract.Widget.widgetSetSizeRequest'.
--
-- Default value: 'EllipsizeNone'
--
progressBarEllipsize :: ProgressBarClass self => Attr self EllipsizeMode
progressBarEllipsize = newAttr
progressBarGetEllipsize
progressBarSetEllipsize
#endif
|