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
|
{-# OPTIONS_HADDOCK hide #-}
-- -*-haskell-*-
-- -------------------- automatically generated file - do not edit ------------
-- Callback installers for the GIMP Toolkit (GTK) Binding for Haskell
--
-- Author : Axel Simon
--
-- Created: 1 July 2000
--
-- Copyright (C) 2000-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.
--
-- #hide
-- These functions are used to connect signals to widgets. They are auto-
-- matically created through HookGenerator.hs which takes a list of possible
-- function signatures that are included in the GTK sources (gtkmarshal.list).
--
-- The object system in the second version of GTK is based on GObject from
-- GLIB. This base class is rather primitive in that it only implements
-- ref and unref methods (and others that are not interesting to us). If
-- the marshall list mentions OBJECT it refers to an instance of this
-- GObject which is automatically wrapped with a ref and unref call.
-- Structures which are not derived from GObject have to be passed as
-- BOXED which gives the signal connect function a possibility to do the
-- conversion into a proper ForeignPtr type. In special cases the signal
-- connect function use a PTR type which will then be mangled in the
-- user function directly. The latter is needed if a signal delivers a
-- pointer to a string and its length in a separate integer.
--
module Graphics.UI.Gtk.WebKit.Signals (
module System.Glib.Signals,
connect_PTR_PTR__NONE,
connect_OBJECT__BOOL,
connect_OBJECT_STRING_BOXED__BOOL,
connect_OBJECT__PTR,
connect_INT_INT_STRING__BOOL,
connect_STRING_STRING_INT_STRING__BOOL,
connect_OBJECT_STRING__BOOL,
connect_OBJECT_STRING_STRING__BOOL,
connect_OBJECT_OBJECT_OBJECT_OBJECT__BOOL,
connect_OBJECT_OBJECT_STRING_OBJECT__BOOL,
connect_OBJECT_OBJECT_OBJECT_OBJECT__NONE,
connect_ENUM_INT__BOOL,
connect_NONE__BOOL,
connect_NONE__NONE,
connect_OBJECT_STRING__NONE,
connect_OBJECT_OBJECT__NONE,
connect_STRING_STRING__NONE,
connect_OBJECT__NONE,
connect_INT__NONE,
connect_STRING__NONE,
) where
import Control.Monad (liftM)
import System.Glib.FFI
import System.Glib.UTFString (peekUTFString)
import System.Glib.GError (failOnGError)
{#import System.Glib.Signals#}
{#import System.Glib.GObject#}
import Graphics.UI.GtkInternals
{#context lib="gtk" prefix="gtk" #}
-- Here are the generators that turn a Haskell function into
-- a C function pointer. The fist Argument is always the widget,
-- the last one is the user g_pointer. Both are ignored.
connect_PTR_PTR__NONE ::
GObjectClass obj => SignalName ->
ConnectAfter -> obj ->
(Ptr a -> Ptr b -> IO ()) ->
IO (ConnectId obj)
connect_PTR_PTR__NONE signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> Ptr () -> Ptr () -> IO ()
action _ ptr1 ptr2 =
failOnGError $
user (castPtr ptr1) (castPtr ptr2)
connect_OBJECT__BOOL ::
(GObjectClass a', GObjectClass obj) => SignalName ->
ConnectAfter -> obj ->
(a' -> IO Bool) ->
IO (ConnectId obj)
connect_OBJECT__BOOL signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> Ptr GObject -> IO Bool
action _ obj1 =
failOnGError $
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj1) >>= \obj1' ->
user (unsafeCastGObject obj1')
connect_OBJECT_STRING_BOXED__BOOL ::
(GObjectClass a', GObjectClass obj) => SignalName ->
(Ptr c' -> IO c) ->
ConnectAfter -> obj ->
(a' -> String -> c -> IO Bool) ->
IO (ConnectId obj)
connect_OBJECT_STRING_BOXED__BOOL signal boxedPre3 after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> Ptr GObject -> CString -> Ptr () -> IO Bool
action _ obj1 str2 box3 =
failOnGError $
boxedPre3 (castPtr box3) >>= \box3' ->
peekUTFString str2 >>= \str2' ->
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj1) >>= \obj1' ->
user (unsafeCastGObject obj1') str2' box3'
connect_OBJECT__PTR ::
(GObjectClass a', GObjectClass obj) => SignalName ->
ConnectAfter -> obj ->
(a' -> IO (Ptr b)) ->
IO (ConnectId obj)
connect_OBJECT__PTR signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> Ptr GObject -> IO (Ptr ())
action _ obj1 =
failOnGError $
liftM castPtr $
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj1) >>= \obj1' ->
user (unsafeCastGObject obj1')
connect_INT_INT_STRING__BOOL ::
GObjectClass obj => SignalName ->
ConnectAfter -> obj ->
(Int -> Int -> String -> IO Bool) ->
IO (ConnectId obj)
connect_INT_INT_STRING__BOOL signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> Int -> Int -> CString -> IO Bool
action _ int1 int2 str3 =
failOnGError $
peekUTFString str3 >>= \str3' ->
user int1 int2 str3'
connect_STRING_STRING_INT_STRING__BOOL ::
GObjectClass obj => SignalName ->
ConnectAfter -> obj ->
(String -> String -> Int -> String -> IO Bool) ->
IO (ConnectId obj)
connect_STRING_STRING_INT_STRING__BOOL signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> CString -> CString -> Int -> CString -> IO Bool
action _ str1 str2 int3 str4 =
failOnGError $
peekUTFString str4 >>= \str4' ->
peekUTFString str2 >>= \str2' ->
peekUTFString str1 >>= \str1' ->
user str1' str2' int3 str4'
connect_OBJECT_STRING__BOOL ::
(GObjectClass a', GObjectClass obj) => SignalName ->
ConnectAfter -> obj ->
(a' -> String -> IO Bool) ->
IO (ConnectId obj)
connect_OBJECT_STRING__BOOL signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> Ptr GObject -> CString -> IO Bool
action _ obj1 str2 =
failOnGError $
peekUTFString str2 >>= \str2' ->
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj1) >>= \obj1' ->
user (unsafeCastGObject obj1') str2'
connect_OBJECT_STRING_STRING__BOOL ::
(GObjectClass a', GObjectClass obj) => SignalName ->
ConnectAfter -> obj ->
(a' -> String -> String -> IO Bool) ->
IO (ConnectId obj)
connect_OBJECT_STRING_STRING__BOOL signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> Ptr GObject -> CString -> CString -> IO Bool
action _ obj1 str2 str3 =
failOnGError $
peekUTFString str3 >>= \str3' ->
peekUTFString str2 >>= \str2' ->
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj1) >>= \obj1' ->
user (unsafeCastGObject obj1') str2' str3'
connect_OBJECT_OBJECT_OBJECT_OBJECT__BOOL ::
(GObjectClass a', GObjectClass b', GObjectClass c', GObjectClass d', GObjectClass obj) => SignalName ->
ConnectAfter -> obj ->
(a' -> b' -> c' -> d' -> IO Bool) ->
IO (ConnectId obj)
connect_OBJECT_OBJECT_OBJECT_OBJECT__BOOL signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> Ptr GObject -> Ptr GObject -> Ptr GObject -> Ptr GObject -> IO Bool
action _ obj1 obj2 obj3 obj4 =
failOnGError $
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj4) >>= \obj4' ->
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj3) >>= \obj3' ->
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj2) >>= \obj2' ->
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj1) >>= \obj1' ->
user (unsafeCastGObject obj1') (unsafeCastGObject obj2') (unsafeCastGObject obj3') (unsafeCastGObject obj4')
connect_OBJECT_OBJECT_STRING_OBJECT__BOOL ::
(GObjectClass a', GObjectClass b', GObjectClass d', GObjectClass obj) => SignalName ->
ConnectAfter -> obj ->
(a' -> b' -> String -> d' -> IO Bool) ->
IO (ConnectId obj)
connect_OBJECT_OBJECT_STRING_OBJECT__BOOL signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> Ptr GObject -> Ptr GObject -> CString -> Ptr GObject -> IO Bool
action _ obj1 obj2 str3 obj4 =
failOnGError $
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj4) >>= \obj4' ->
peekUTFString str3 >>= \str3' ->
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj2) >>= \obj2' ->
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj1) >>= \obj1' ->
user (unsafeCastGObject obj1') (unsafeCastGObject obj2') str3' (unsafeCastGObject obj4')
connect_OBJECT_OBJECT_OBJECT_OBJECT__NONE ::
(GObjectClass a', GObjectClass b', GObjectClass c', GObjectClass d', GObjectClass obj) => SignalName ->
ConnectAfter -> obj ->
(a' -> b' -> c' -> d' -> IO ()) ->
IO (ConnectId obj)
connect_OBJECT_OBJECT_OBJECT_OBJECT__NONE signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> Ptr GObject -> Ptr GObject -> Ptr GObject -> Ptr GObject -> IO ()
action _ obj1 obj2 obj3 obj4 =
failOnGError $
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj4) >>= \obj4' ->
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj3) >>= \obj3' ->
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj2) >>= \obj2' ->
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj1) >>= \obj1' ->
user (unsafeCastGObject obj1') (unsafeCastGObject obj2') (unsafeCastGObject obj3') (unsafeCastGObject obj4')
connect_ENUM_INT__BOOL ::
(Enum a, GObjectClass obj) => SignalName ->
ConnectAfter -> obj ->
(a -> Int -> IO Bool) ->
IO (ConnectId obj)
connect_ENUM_INT__BOOL signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> Int -> Int -> IO Bool
action _ enum1 int2 =
failOnGError $
user (toEnum enum1) int2
connect_NONE__BOOL ::
GObjectClass obj => SignalName ->
ConnectAfter -> obj ->
(IO Bool) ->
IO (ConnectId obj)
connect_NONE__BOOL signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> IO Bool
action _ =
failOnGError $
user
connect_NONE__NONE ::
GObjectClass obj => SignalName ->
ConnectAfter -> obj ->
(IO ()) ->
IO (ConnectId obj)
connect_NONE__NONE signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> IO ()
action _ =
failOnGError $
user
connect_OBJECT_STRING__NONE ::
(GObjectClass a', GObjectClass obj) => SignalName ->
ConnectAfter -> obj ->
(a' -> String -> IO ()) ->
IO (ConnectId obj)
connect_OBJECT_STRING__NONE signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> Ptr GObject -> CString -> IO ()
action _ obj1 str2 =
failOnGError $
peekUTFString str2 >>= \str2' ->
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj1) >>= \obj1' ->
user (unsafeCastGObject obj1') str2'
connect_OBJECT_OBJECT__NONE ::
(GObjectClass a', GObjectClass b', GObjectClass obj) => SignalName ->
ConnectAfter -> obj ->
(a' -> b' -> IO ()) ->
IO (ConnectId obj)
connect_OBJECT_OBJECT__NONE signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> Ptr GObject -> Ptr GObject -> IO ()
action _ obj1 obj2 =
failOnGError $
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj2) >>= \obj2' ->
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj1) >>= \obj1' ->
user (unsafeCastGObject obj1') (unsafeCastGObject obj2')
connect_STRING_STRING__NONE ::
GObjectClass obj => SignalName ->
ConnectAfter -> obj ->
(String -> String -> IO ()) ->
IO (ConnectId obj)
connect_STRING_STRING__NONE signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> CString -> CString -> IO ()
action _ str1 str2 =
failOnGError $
peekUTFString str2 >>= \str2' ->
peekUTFString str1 >>= \str1' ->
user str1' str2'
connect_OBJECT__NONE ::
(GObjectClass a', GObjectClass obj) => SignalName ->
ConnectAfter -> obj ->
(a' -> IO ()) ->
IO (ConnectId obj)
connect_OBJECT__NONE signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> Ptr GObject -> IO ()
action _ obj1 =
failOnGError $
makeNewGObject (GObject, objectUnrefFromMainloop) (return obj1) >>= \obj1' ->
user (unsafeCastGObject obj1')
connect_INT__NONE ::
GObjectClass obj => SignalName ->
ConnectAfter -> obj ->
(Int -> IO ()) ->
IO (ConnectId obj)
connect_INT__NONE signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> Int -> IO ()
action _ int1 =
failOnGError $
user int1
connect_STRING__NONE ::
GObjectClass obj => SignalName ->
ConnectAfter -> obj ->
(String -> IO ()) ->
IO (ConnectId obj)
connect_STRING__NONE signal after obj user =
connectGeneric signal after obj action
where action :: Ptr GObject -> CString -> IO ()
action _ str1 =
failOnGError $
peekUTFString str1 >>= \str1' ->
user str1'
|