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 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
|
{-# LANGUAGE CPP #-}
-- -*-haskell-*-
-- GIMP Toolkit (GTK) Widget ActionGroup
--
-- Author : Duncan Coutts
--
-- Created: 6 April 2005
--
-- Copyright (C) 2005 Duncan Coutts
--
-- 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 group of actions
--
-- * Module available since Gtk+ version 2.4
--
module Graphics.UI.Gtk.ActionMenuToolbar.ActionGroup (
-- * Detail
--
-- | Actions are organised into groups. An action group is essentially a map
-- from names to 'Action' objects.
--
-- All actions that would make sense to use in a particular context should
-- be in a single group. Multiple action groups may be used for a particular
-- user interface. In fact, it is expected that most nontrivial applications
-- will make use of multiple groups. For example, in an application that can
-- edit multiple documents, one group holding global actions (e.g. quit, about,
-- new), and one group per document holding actions that act on that document
-- (eg. save, cut\/copy\/paste, etc). Each window's menus would be constructed
-- from a combination of two action groups.
--
-- Accelerators are handled by the Gtk+ accelerator map. All actions are
-- assigned an accelerator path (which normally has the form
-- @\<Actions>\/group-name\/action-name@) and a shortcut is associated with
-- this accelerator path. All menuitems and toolitems take on this accelerator
-- path. The Gtk+ accelerator map code makes sure that the correct shortcut is
-- displayed next to the menu item.
-- * Class Hierarchy
-- |
-- @
-- | 'GObject'
-- | +----ActionGroup
-- @
#if GTK_CHECK_VERSION(2,4,0)
-- * Types
ActionGroup,
ActionGroupClass,
castToActionGroup, gTypeActionGroup,
toActionGroup,
ActionEntry(..),
ToggleActionEntry(..),
RadioActionEntry(..),
-- * Constructors
actionGroupNew,
-- * Methods
actionGroupGetName,
actionGroupGetSensitive,
actionGroupSetSensitive,
actionGroupGetVisible,
actionGroupSetVisible,
actionGroupGetAction,
actionGroupListActions,
actionGroupAddAction,
actionGroupAddActionWithAccel,
actionGroupRemoveAction,
actionGroupAddActions,
actionGroupAddToggleActions,
actionGroupAddRadioActions,
actionGroupSetTranslateFunc,
actionGroupSetTranslationDomain,
#if GTK_CHECK_VERSION(2,6,0)
actionGroupTranslateString,
#endif
-- * Attributes
actionGroupName,
actionGroupSensitive,
actionGroupVisible,
-- * Signals
-- onConnectProxy,
-- afterConnectProxy,
-- onDisconnectProxy,
-- afterDisconnectProxy,
-- onPreActivate,
-- afterPreActivate,
-- onPostActivate,
-- afterPostActivate,
#endif
) where
import Control.Monad (liftM, foldM, when)
import System.Glib.FFI
import System.Glib.UTFString
import System.Glib.GList
import System.Glib.Attributes
import System.Glib.Properties
import System.Glib.GObject (constructNewGObject,
makeNewGObject, destroyFunPtr)
{#import Graphics.UI.Gtk.Types#}
import System.Glib.Signals (on)
import Graphics.UI.Gtk.ActionMenuToolbar.Action
import Graphics.UI.Gtk.ActionMenuToolbar.ToggleAction
import Graphics.UI.Gtk.ActionMenuToolbar.RadioAction
{# context lib="gtk" prefix="gtk" #}
#if GTK_CHECK_VERSION(2,4,0)
--------------------
-- Constructors
-- | Creates a new 'ActionGroup' object. The name of the action group is used
-- when associating keybindings with the actions.
--
actionGroupNew ::
String -- ^ @name@ - the name of the action group.
-> IO ActionGroup
actionGroupNew name =
constructNewGObject mkActionGroup $
withUTFString name $ \namePtr ->
{# call gtk_action_group_new #}
namePtr
--------------------
-- Methods
-- | Gets the name of the action group.
--
actionGroupGetName :: ActionGroup
-> IO String -- ^ returns the name of the action group.
actionGroupGetName self =
{# call gtk_action_group_get_name #}
self
>>= peekUTFString
-- | Returns @True@ if the group is sensitive. The constituent actions can
-- only be logically sensitive (see 'actionIsSensitive') if they are sensitive
-- (see 'actionGetSensitive') and their group is sensitive.
--
actionGroupGetSensitive :: ActionGroup -> IO Bool
actionGroupGetSensitive self =
liftM toBool $
{# call gtk_action_group_get_sensitive #}
self
-- | Changes the sensitivity of @actionGroup@
--
actionGroupSetSensitive :: ActionGroup -> Bool -> IO ()
actionGroupSetSensitive self sensitive =
{# call gtk_action_group_set_sensitive #}
self
(fromBool sensitive)
-- | Returns @True@ if the group is visible. The constituent actions can only
-- be logically visible (see 'actionIsVisible') if they are visible (see
-- 'actionGetVisible') and their group is visible.
--
actionGroupGetVisible :: ActionGroup -> IO Bool
actionGroupGetVisible self =
liftM toBool $
{# call gtk_action_group_get_visible #}
self
-- | Changes the visible of @actionGroup@.
--
actionGroupSetVisible :: ActionGroup -> Bool -> IO ()
actionGroupSetVisible self visible =
{# call gtk_action_group_set_visible #}
self
(fromBool visible)
-- | Looks up an action in the action group by name.
--
actionGroupGetAction :: ActionGroup
-> String -- ^ @actionName@ - the name of the action
-> IO (Maybe Action) -- ^ returns the action, or @Nothing@ if no action by
-- that name exists
actionGroupGetAction self actionName =
maybeNull (makeNewGObject mkAction) $
withUTFString actionName $ \actionNamePtr ->
{# call gtk_action_group_get_action #}
self
actionNamePtr
-- | Lists the actions in the action group.
--
actionGroupListActions :: ActionGroup
-> IO [Action] -- ^ returns a list of the action objects in the action group
actionGroupListActions self =
{# call gtk_action_group_list_actions #}
self
>>= fromGList
>>= mapM (\elemPtr -> makeNewGObject mkAction (return elemPtr))
-- | Adds an action object to the action group. Note that this function does
-- not set up the accel path of the action, which can lead to problems if a
-- user tries to modify the accelerator of a menuitem associated with the
-- action. Therefore you must either set the accel path yourself with
-- 'actionSetAccelPath', or use @'actionGroupAddActionWithAccel' ... Nothing@.
--
actionGroupAddAction :: ActionClass action => ActionGroup -> action -> IO ()
actionGroupAddAction self action =
{# call gtk_action_group_add_action #}
self
(toAction action)
-- | Adds an action object to the action group and sets up the accelerator.
--
-- If @accelerator@ is @Nothing@, attempts to use the accelerator associated
-- with the stock id of the action.
--
-- Accel paths are set to @\<Actions>\/group-name\/action-name@.
--
actionGroupAddActionWithAccel :: ActionClass action => ActionGroup
-> action -- ^ @action@ - the action to add
-> Maybe String -- ^ @accelerator@ - the accelerator for the action, in the
-- format understood by 'acceleratorParse', or \"\" for no
-- accelerator, or @Nothing@ to use the stock accelerator
-> IO ()
actionGroupAddActionWithAccel self action accelerator =
maybeWith withUTFString accelerator $ \acceleratorPtr ->
{# call gtk_action_group_add_action_with_accel #}
self
(toAction action)
acceleratorPtr
-- | Removes an action object from the action group.
--
actionGroupRemoveAction :: ActionClass action => ActionGroup -> action -> IO ()
actionGroupRemoveAction self action =
{# call gtk_action_group_remove_action #}
self
(toAction action)
-- Note: for these next few funtions we cannot use the C version because the
-- callback doesn't allow for propper memory management. So like pygtk we
-- implement them natively since they are only convenience functions afterall.
-- | A description of an action.
data ActionEntry = ActionEntry {
actionEntryName :: String,
actionEntryLabel :: String,
actionEntryStockId :: Maybe String,
actionEntryAccelerator :: Maybe String,
actionEntryTooltip :: Maybe String,
actionEntryCallback :: IO ()
}
-- | This is a convenience function to create a number of actions and add them
-- to the action group.
--
-- The 'actionActivated' signals of the actions are connected to the callbacks
-- and their accel paths are set to @\<Actions>\/group-name\/action-name@.
--
actionGroupAddActions :: ActionGroup
-> [ActionEntry] -- ^ @entries@ - a list of action descriptions
-> IO ()
actionGroupAddActions self entries =
flip mapM_ entries $ \(ActionEntry name label stockId
accelerator tooltip callback) -> do
action <- actionNew name label tooltip stockId
action `on` actionActivated $ callback
actionGroupAddActionWithAccel self action accelerator
-- | A description of an action for an entry that can be toggled.
data ToggleActionEntry = ToggleActionEntry {
toggleActionName :: String,
toggleActionLabel :: String,
toggleActionStockId :: Maybe String,
toggleActionAccelerator :: Maybe String,
toggleActionTooltip :: Maybe String,
toggleActionCallback :: IO (),
toggleActionIsActive :: Bool
}
-- | This is a convenience function to create a number of toggle actions and
-- add them to the action group.
--
-- The 'actionActivated' signals of the actions are connected to the callbacks
-- and their accel paths are set to @\<Actions>\/group-name\/action-name@.
--
actionGroupAddToggleActions :: ActionGroup
-> [ToggleActionEntry] -- ^ @entries@ - a list of toggle action descriptions
-> IO ()
actionGroupAddToggleActions self entries =
flip mapM_ entries $ \(ToggleActionEntry name label stockId
accelerator tooltip callback isActive) -> do
action <- toggleActionNew name label tooltip stockId
toggleActionSetActive action isActive
action `on` actionActivated $ callback
actionGroupAddActionWithAccel self action accelerator
-- | A description of an action for an entry that provides a multiple choice.
data RadioActionEntry = RadioActionEntry {
radioActionName :: String,
radioActionLabel :: String,
radioActionStockId :: Maybe String,
radioActionAccelerator :: Maybe String,
radioActionTooltip :: Maybe String,
radioActionValue :: Int
}
-- | This is a convenience routine to create a group of radio actions and add
-- them to the action group.
--
-- The 'radioActionChanged' signal of the first radio action is connected to the
-- @onChange@ callback and the accel paths of the actions are set to
-- @\<Actions>\/group-name\/action-name@.
--
actionGroupAddRadioActions :: ActionGroup
-> [RadioActionEntry] -- ^ @entries@ - a list of radio action descriptions
-> Int -- ^ @value@ - the value of the action to activate
-- initially, or -1 if no action should be activated
-> (RadioAction -> IO ()) -- ^ @onChange@ - the callback for the changed signal
-> IO ()
actionGroupAddRadioActions self entries value onChange = do
group <- foldM
(\group (n, RadioActionEntry name label stockId
accelerator tooltip value) -> do
action <- radioActionNew name label tooltip stockId value
case group of
Nothing -> return ()
Just group -> radioActionSetGroup action group
when (n == value) (toggleActionSetActive action True)
actionGroupAddActionWithAccel self action accelerator
return (Just action))
Nothing (zip [0..] entries)
case group of
Nothing -> return ()
Just group -> do
group `on` radioActionChanged $ onChange
return ()
-- | Sets a function to be used for translating the @label@ and @tooltip@ of
-- 'ActionEntry's added by 'actionGroupAddActions'.
--
-- If you\'re using \'gettext\', it is enough to set the translation domain
-- with 'actionGroupSetTranslationDomain'.
--
actionGroupSetTranslateFunc :: ActionGroup
-> (String -> IO String) -- ^ @(\label -> ...)@ - a translation function
-> IO ()
actionGroupSetTranslateFunc self func = do
funcPtr <- mkTranslateFunc $ \strPtr _ -> do
str <- peekUTFString strPtr
translatedStr <- func str
newUTFString translatedStr
{# call gtk_action_group_set_translate_func #}
self
funcPtr
(castFunPtrToPtr funcPtr)
destroyFunPtr
{#pointer TranslateFunc#}
foreign import ccall "wrapper" mkTranslateFunc ::
(CString -> Ptr () -> IO CString) -> IO TranslateFunc
-- | Sets the translation domain and uses \'dgettext\' for translating the
-- @label@ and @tooltip@ of 'ActionEntry's added by 'actionGroupAddActions'.
--
-- If you\'re not using \'gettext\' for localization, see
-- 'actionGroupSetTranslateFunc'.
--
actionGroupSetTranslationDomain :: ActionGroup
-> String -- ^ @domain@ - the translation domain to use for \'dgettext\'
-- calls
-> IO ()
actionGroupSetTranslationDomain self domain =
withUTFString domain $ \domainPtr ->
{# call gtk_action_group_set_translation_domain #}
self
domainPtr
#if GTK_CHECK_VERSION(2,6,0)
-- | Translates a string.
--
-- * Available since Gtk+ version 2.6
--
actionGroupTranslateString :: ActionGroup
-> String -- ^ @string@ - a string
-> IO String -- ^ returns the translation of @string@
actionGroupTranslateString self string =
withUTFString string $ \stringPtr ->
{# call gtk_action_group_translate_string #}
self
stringPtr
>>= peekUTFString
#endif
--------------------
-- Attributes
-- | A name for the action group.
--
-- Default value: \"\"
--
actionGroupName :: Attr ActionGroup String
actionGroupName = newAttrFromStringProperty "name"
-- | Whether the action group is enabled.
--
-- Default value: @True@
--
actionGroupSensitive :: Attr ActionGroup Bool
actionGroupSensitive = newAttr
actionGroupGetSensitive
actionGroupSetSensitive
-- | Whether the action group is visible.
--
-- Default value: @True@
--
actionGroupVisible :: Attr ActionGroup Bool
actionGroupVisible = newAttr
actionGroupGetVisible
actionGroupSetVisible
--------------------
-- Signals
{-
-- | The connect_proxy signal is emitted after connecting a proxy to an action
-- in the group. Note that the proxy may have been connected to a different
-- action before.
--
-- This is intended for simple customizations for which a custom action
-- class would be too clumsy, e.g. showing tooltips for menuitems in the
-- statusbar.
--
onConnectProxy, afterConnectProxy :: ActionGroupClass self => self
-> ({-GtkAction-} -> {-GtkWidget-} -> IO ())
-> IO (ConnectId self)
onConnectProxy = connect_{-GtkAction-}_{-GtkWidget-}__NONE "connect_proxy" False
afterConnectProxy = connect_{-GtkAction-}_{-GtkWidget-}__NONE "connect_proxy" True
-- | The disconnect_proxy signal is emitted after disconnecting a proxy from
-- an action in the group.
--
onDisconnectProxy, afterDisconnectProxy :: ActionGroupClass self => self
-> ({-GtkAction-} -> {-GtkWidget-} -> IO ())
-> IO (ConnectId self)
onDisconnectProxy = connect_{-GtkAction-}_{-GtkWidget-}__NONE "disconnect_proxy" False
afterDisconnectProxy = connect_{-GtkAction-}_{-GtkWidget-}__NONE "disconnect_proxy" True
-- | The pre_activate signal is emitted just before the @action@ in the
-- @actionGroup@ is activated
--
-- This is intended for 'UIManager' to proxy the signal and provide global
-- notification just before any action is activated.
--
onPreActivate, afterPreActivate :: ActionGroupClass self => self
-> ({-GtkAction-} -> IO ())
-> IO (ConnectId self)
onPreActivate = connect_{-GtkAction-}__NONE "pre_activate" False
afterPreActivate = connect_{-GtkAction-}__NONE "pre_activate" True
-- | The post_activate signal is emitted just after the @action@ in the
-- @actionGroup@ is activated
--
-- This is intended for 'UIManager' to proxy the signal and provide global
-- notification just after any action is activated.
--
onPostActivate, afterPostActivate :: ActionGroupClass self => self
-> ({-GtkAction-} -> IO ())
-> IO (ConnectId self)
onPostActivate = connect_{-GtkAction-}__NONE "post_activate" False
afterPostActivate = connect_{-GtkAction-}__NONE "post_activate" True
-}
#endif
|