{-# LINE 2 "./Graphics/UI/Gtk/Buttons/ToggleButton.chs" #-}
-- -*-haskell-*-
-- GIMP Toolkit (GTK) Widget ToggleButton
--
-- Author : Axel Simon
--
-- Created: 15 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)
--
-- Create buttons which retain their state
--
module Graphics.UI.Gtk.Buttons.ToggleButton (
-- * Detail
--
-- | A 'ToggleButton' is a 'Button' which will remain \'pressed-in\' when
-- clicked. Clicking again will cause the toggle button to return to its normal
-- state.
--
-- A toggle button is created by calling either 'toggleButtonNew' or
-- 'toggleButtonNewWithLabel'. If using the former, it is advisable to pack a
-- widget, (such as a 'Label' and\/or a 'Pixmap'), into the toggle button's
-- container. (See 'Button' for more information).
--
-- The state of a 'ToggleButton' can be set specifically using
-- 'toggleButtonSetActive', and retrieved using 'toggleButtonGetActive'.
--
-- To simply switch the state of a toggle button, use 'toggleButtonToggled'.

-- * Class Hierarchy
-- |
-- @
-- | 'GObject'
-- | +----'Object'
-- | +----'Widget'
-- | +----'Container'
-- | +----'Bin'
-- | +----'Button'
-- | +----ToggleButton
-- | +----'CheckButton'
-- @

-- * Types
  ToggleButton,
  ToggleButtonClass,
  castToToggleButton, gTypeToggleButton,
  toToggleButton,

-- * Constructors
  toggleButtonNew,
  toggleButtonNewWithLabel,
  toggleButtonNewWithMnemonic,

-- * Methods
  toggleButtonSetMode,
  toggleButtonGetMode,
  toggleButtonToggled,
  toggleButtonGetActive,
  toggleButtonSetActive,
  toggleButtonGetInconsistent,
  toggleButtonSetInconsistent,

-- * Attributes
  toggleButtonActive,
  toggleButtonInconsistent,
  toggleButtonDrawIndicator,
  toggleButtonMode,

-- * Signals
  toggled,

-- * Deprecated

-- * Signals
  onToggled,
  afterToggled,

  ) 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
{-# LINE 103 "./Graphics/UI/Gtk/Buttons/ToggleButton.chs" #-}
import Graphics.UI.Gtk.Signals
{-# LINE 104 "./Graphics/UI/Gtk/Buttons/ToggleButton.chs" #-}


{-# LINE 106 "./Graphics/UI/Gtk/Buttons/ToggleButton.chs" #-}

--------------------
-- Constructors

-- | Creates a new toggle button. A widget should be packed into the button,
-- as in 'Graphics.UI.Gtk.Buttons.Button.buttonNew'.
--
toggleButtonNew :: IO ToggleButton
toggleButtonNew :: IO ToggleButton
toggleButtonNew =
  (ForeignPtr ToggleButton -> ToggleButton,
 FinalizerPtr ToggleButton)
-> IO (Ptr ToggleButton) -> IO ToggleButton
forall obj.
ObjectClass obj =>
(ForeignPtr obj -> obj, FinalizerPtr obj) -> IO (Ptr obj) -> IO obj
makeNewObject (ForeignPtr ToggleButton -> ToggleButton,
 FinalizerPtr ToggleButton)
forall {a}.
(ForeignPtr ToggleButton -> ToggleButton, FinalizerPtr a)
mkToggleButton (IO (Ptr ToggleButton) -> IO ToggleButton)
-> IO (Ptr ToggleButton) -> IO ToggleButton
forall a b. (a -> b) -> a -> b
$
  (Ptr Widget -> Ptr ToggleButton)
-> IO (Ptr Widget) -> IO (Ptr ToggleButton)
forall (m :: * -> *) a1 r. Monad m => (a1 -> r) -> m a1 -> m r
liftM (Ptr Widget -> Ptr ToggleButton
forall a b. Ptr a -> Ptr b
castPtr :: Ptr Widget -> Ptr ToggleButton) (IO (Ptr Widget) -> IO (Ptr ToggleButton))
-> IO (Ptr Widget) -> IO (Ptr ToggleButton)
forall a b. (a -> b) -> a -> b
$
  IO (Ptr Widget)
gtk_toggle_button_new
{-# LINE 118 "./Graphics/UI/Gtk/Buttons/ToggleButton.chs" #-}

-- | Creates a new toggle button with a text label.
--
toggleButtonNewWithLabel :: GlibString string
 => string -- ^ @label@ - a string containing the message to be
                    -- placed in the toggle button.
 -> IO ToggleButton
toggleButtonNewWithLabel :: forall string. GlibString string => string -> IO ToggleButton
toggleButtonNewWithLabel string
label =
  (ForeignPtr ToggleButton -> ToggleButton,
 FinalizerPtr ToggleButton)
-> IO (Ptr ToggleButton) -> IO ToggleButton
forall obj.
ObjectClass obj =>
(ForeignPtr obj -> obj, FinalizerPtr obj) -> IO (Ptr obj) -> IO obj
makeNewObject (ForeignPtr ToggleButton -> ToggleButton,
 FinalizerPtr ToggleButton)
forall {a}.
(ForeignPtr ToggleButton -> ToggleButton, FinalizerPtr a)
mkToggleButton (IO (Ptr ToggleButton) -> IO ToggleButton)
-> IO (Ptr ToggleButton) -> IO ToggleButton
forall a b. (a -> b) -> a -> b
$
  (Ptr Widget -> Ptr ToggleButton)
-> IO (Ptr Widget) -> IO (Ptr ToggleButton)
forall (m :: * -> *) a1 r. Monad m => (a1 -> r) -> m a1 -> m r
liftM (Ptr Widget -> Ptr ToggleButton
forall a b. Ptr a -> Ptr b
castPtr :: Ptr Widget -> Ptr ToggleButton) (IO (Ptr Widget) -> IO (Ptr ToggleButton))
-> IO (Ptr Widget) -> IO (Ptr ToggleButton)
forall a b. (a -> b) -> a -> b
$
  string -> (CString -> IO (Ptr Widget)) -> IO (Ptr Widget)
forall a. string -> (CString -> IO a) -> IO a
forall s a. GlibString s => s -> (CString -> IO a) -> IO a
withUTFString string
label ((CString -> IO (Ptr Widget)) -> IO (Ptr Widget))
-> (CString -> IO (Ptr Widget)) -> IO (Ptr Widget)
forall a b. (a -> b) -> a -> b
$ \CString
labelPtr ->
  CString -> IO (Ptr Widget)
gtk_toggle_button_new_with_label
{-# LINE 130 "./Graphics/UI/Gtk/Buttons/ToggleButton.chs" #-}
    labelPtr

-- | Creates a new 'ToggleButton' containing a label. The label will be
-- created using 'Graphics.UI.Gtk.Display.Label.labelNewWithMnemonic',
-- so underscores in @label@ indicate the
-- mnemonic for the button.
--
toggleButtonNewWithMnemonic :: GlibString string
 => string -- ^ @label@ - the text of the button, with an underscore
                    -- in front of the mnemonic character
 -> IO ToggleButton
toggleButtonNewWithMnemonic :: forall string. GlibString string => string -> IO ToggleButton
toggleButtonNewWithMnemonic string
label =
  (ForeignPtr ToggleButton -> ToggleButton,
 FinalizerPtr ToggleButton)
-> IO (Ptr ToggleButton) -> IO ToggleButton
forall obj.
ObjectClass obj =>
(ForeignPtr obj -> obj, FinalizerPtr obj) -> IO (Ptr obj) -> IO obj
makeNewObject (ForeignPtr ToggleButton -> ToggleButton,
 FinalizerPtr ToggleButton)
forall {a}.
(ForeignPtr ToggleButton -> ToggleButton, FinalizerPtr a)
mkToggleButton (IO (Ptr ToggleButton) -> IO ToggleButton)
-> IO (Ptr ToggleButton) -> IO ToggleButton
forall a b. (a -> b) -> a -> b
$
  (Ptr Widget -> Ptr ToggleButton)
-> IO (Ptr Widget) -> IO (Ptr ToggleButton)
forall (m :: * -> *) a1 r. Monad m => (a1 -> r) -> m a1 -> m r
liftM (Ptr Widget -> Ptr ToggleButton
forall a b. Ptr a -> Ptr b
castPtr :: Ptr Widget -> Ptr ToggleButton) (IO (Ptr Widget) -> IO (Ptr ToggleButton))
-> IO (Ptr Widget) -> IO (Ptr ToggleButton)
forall a b. (a -> b) -> a -> b
$
  string -> (CString -> IO (Ptr Widget)) -> IO (Ptr Widget)
forall a. string -> (CString -> IO a) -> IO a
forall s a. GlibString s => s -> (CString -> IO a) -> IO a
withUTFString string
label ((CString -> IO (Ptr Widget)) -> IO (Ptr Widget))
-> (CString -> IO (Ptr Widget)) -> IO (Ptr Widget)
forall a b. (a -> b) -> a -> b
$ \CString
labelPtr ->
  CString -> IO (Ptr Widget)
gtk_toggle_button_new_with_mnemonic
{-# LINE 146 "./Graphics/UI/Gtk/Buttons/ToggleButton.chs" #-}
    labelPtr

--------------------
-- Methods

-- | Sets whether the button is displayed as a separate indicator and label.
-- You can call this function on a 'CheckButton' or a 'RadioButton' with @False@
-- to make the button look like a normal button.
--
-- This function only affects instances of classes like 'CheckButton' and
-- 'RadioButton' that derive from 'ToggleButton', not instances of
-- 'ToggleButton' itself.
--
toggleButtonSetMode :: ToggleButtonClass self => self
 -> Bool -- ^ @drawIndicator@ - if @True@, draw the button as a separate
          -- indicator and label; if @False@, draw the button like a normal
          -- button
 -> IO ()
toggleButtonSetMode :: forall self. ToggleButtonClass self => self -> Bool -> IO ()
toggleButtonSetMode self
self Bool
drawIndicator =
  (\(ToggleButton ForeignPtr ToggleButton
arg1) CInt
arg2 -> ForeignPtr ToggleButton -> (Ptr ToggleButton -> IO ()) -> IO ()
forall a b. ForeignPtr a -> (Ptr a -> IO b) -> IO b
withForeignPtr ForeignPtr ToggleButton
arg1 ((Ptr ToggleButton -> IO ()) -> IO ())
-> (Ptr ToggleButton -> IO ()) -> IO ()
forall a b. (a -> b) -> a -> b
$ \Ptr ToggleButton
argPtr1 ->Ptr ToggleButton -> CInt -> IO ()
gtk_toggle_button_set_mode Ptr ToggleButton
argPtr1 CInt
arg2)
{-# LINE 166 "./Graphics/UI/Gtk/Buttons/ToggleButton.chs" #-}
    (toToggleButton self)
    (Bool -> CInt
forall a. Num a => Bool -> a
fromBool Bool
drawIndicator)

-- | Retrieves whether the button is displayed as a separate indicator and
-- label. See 'toggleButtonSetMode'.
--
toggleButtonGetMode :: ToggleButtonClass self => self
 -> IO Bool -- ^ returns @True@ if the togglebutton is drawn as a separate
            -- indicator and label.
toggleButtonGetMode :: forall self. ToggleButtonClass self => self -> IO Bool
toggleButtonGetMode self
self =
  (CInt -> Bool) -> IO CInt -> IO Bool
forall (m :: * -> *) a1 r. Monad m => (a1 -> r) -> m a1 -> m r
liftM CInt -> Bool
forall a. (Eq a, Num a) => a -> Bool
toBool (IO CInt -> IO Bool) -> IO CInt -> IO Bool
forall a b. (a -> b) -> a -> b
$
  (\(ToggleButton ForeignPtr ToggleButton
arg1) -> ForeignPtr ToggleButton -> (Ptr ToggleButton -> IO CInt) -> IO CInt
forall a b. ForeignPtr a -> (Ptr a -> IO b) -> IO b
withForeignPtr ForeignPtr ToggleButton
arg1 ((Ptr ToggleButton -> IO CInt) -> IO CInt)
-> (Ptr ToggleButton -> IO CInt) -> IO CInt
forall a b. (a -> b) -> a -> b
$ \Ptr ToggleButton
argPtr1 ->Ptr ToggleButton -> IO CInt
gtk_toggle_button_get_mode Ptr ToggleButton
argPtr1)
{-# LINE 178 "./Graphics/UI/Gtk/Buttons/ToggleButton.chs" #-}
    (toToggleButton self)

-- | Emits the toggled signal on the 'ToggleButton'. There is no good reason
-- for an application ever to call this function.
--
toggleButtonToggled :: ToggleButtonClass self => self -> IO ()
toggleButtonToggled :: forall self. ToggleButtonClass self => self -> IO ()
toggleButtonToggled self
self =
  (\(ToggleButton ForeignPtr ToggleButton
arg1) -> ForeignPtr ToggleButton -> (Ptr ToggleButton -> IO ()) -> IO ()
forall a b. ForeignPtr a -> (Ptr a -> IO b) -> IO b
withForeignPtr ForeignPtr ToggleButton
arg1 ((Ptr ToggleButton -> IO ()) -> IO ())
-> (Ptr ToggleButton -> IO ()) -> IO ()
forall a b. (a -> b) -> a -> b
$ \Ptr ToggleButton
argPtr1 ->Ptr ToggleButton -> IO ()
gtk_toggle_button_toggled Ptr ToggleButton
argPtr1)
{-# LINE 186 "./Graphics/UI/Gtk/Buttons/ToggleButton.chs" #-}
    (toToggleButton self)

-- | Queries a 'ToggleButton' and returns its current state. Returns @True@ if
-- the toggle button is pressed in and @False@ if it is raised.
--
toggleButtonGetActive :: ToggleButtonClass self => self -> IO Bool
toggleButtonGetActive :: forall self. ToggleButtonClass self => self -> IO Bool
toggleButtonGetActive self
self =
  (CInt -> Bool) -> IO CInt -> IO Bool
forall (m :: * -> *) a1 r. Monad m => (a1 -> r) -> m a1 -> m r
liftM CInt -> Bool
forall a. (Eq a, Num a) => a -> Bool
toBool (IO CInt -> IO Bool) -> IO CInt -> IO Bool
forall a b. (a -> b) -> a -> b
$
  (\(ToggleButton ForeignPtr ToggleButton
arg1) -> ForeignPtr ToggleButton -> (Ptr ToggleButton -> IO CInt) -> IO CInt
forall a b. ForeignPtr a -> (Ptr a -> IO b) -> IO b
withForeignPtr ForeignPtr ToggleButton
arg1 ((Ptr ToggleButton -> IO CInt) -> IO CInt)
-> (Ptr ToggleButton -> IO CInt) -> IO CInt
forall a b. (a -> b) -> a -> b
$ \Ptr ToggleButton
argPtr1 ->Ptr ToggleButton -> IO CInt
gtk_toggle_button_get_active Ptr ToggleButton
argPtr1)
{-# LINE 195 "./Graphics/UI/Gtk/Buttons/ToggleButton.chs" #-}
    (toToggleButton self)

-- | Sets the status of the toggle button. Set to @True@ if you want the
-- 'ToggleButton' to be \'pressed in\', and @False@ to raise it. This action
-- causes the toggled signal to be emitted.
--
toggleButtonSetActive :: ToggleButtonClass self => self
 -> Bool -- ^ @isActive@ - @True@ or @False@.
 -> IO ()
toggleButtonSetActive :: forall self. ToggleButtonClass self => self -> Bool -> IO ()
toggleButtonSetActive self
self Bool
isActive =
  (\(ToggleButton ForeignPtr ToggleButton
arg1) CInt
arg2 -> ForeignPtr ToggleButton -> (Ptr ToggleButton -> IO ()) -> IO ()
forall a b. ForeignPtr a -> (Ptr a -> IO b) -> IO b
withForeignPtr ForeignPtr ToggleButton
arg1 ((Ptr ToggleButton -> IO ()) -> IO ())
-> (Ptr ToggleButton -> IO ()) -> IO ()
forall a b. (a -> b) -> a -> b
$ \Ptr ToggleButton
argPtr1 ->Ptr ToggleButton -> CInt -> IO ()
gtk_toggle_button_set_active Ptr ToggleButton
argPtr1 CInt
arg2)
{-# LINE 206 "./Graphics/UI/Gtk/Buttons/ToggleButton.chs" #-}
    (toToggleButton self)
    (Bool -> CInt
forall a. Num a => Bool -> a
fromBool Bool
isActive)

-- | Gets the value set by 'toggleButtonSetInconsistent'.
--
toggleButtonGetInconsistent :: ToggleButtonClass self => self
 -> IO Bool -- ^ returns @True@ if the button is displayed as inconsistent,
            -- @False@ otherwise
toggleButtonGetInconsistent :: forall self. ToggleButtonClass self => self -> IO Bool
toggleButtonGetInconsistent self
self =
  (CInt -> Bool) -> IO CInt -> IO Bool
forall (m :: * -> *) a1 r. Monad m => (a1 -> r) -> m a1 -> m r
liftM CInt -> Bool
forall a. (Eq a, Num a) => a -> Bool
toBool (IO CInt -> IO Bool) -> IO CInt -> IO Bool
forall a b. (a -> b) -> a -> b
$
  (\(ToggleButton ForeignPtr ToggleButton
arg1) -> ForeignPtr ToggleButton -> (Ptr ToggleButton -> IO CInt) -> IO CInt
forall a b. ForeignPtr a -> (Ptr a -> IO b) -> IO b
withForeignPtr ForeignPtr ToggleButton
arg1 ((Ptr ToggleButton -> IO CInt) -> IO CInt)
-> (Ptr ToggleButton -> IO CInt) -> IO CInt
forall a b. (a -> b) -> a -> b
$ \Ptr ToggleButton
argPtr1 ->Ptr ToggleButton -> IO CInt
gtk_toggle_button_get_inconsistent Ptr ToggleButton
argPtr1)
{-# LINE 217 "./Graphics/UI/Gtk/Buttons/ToggleButton.chs" #-}
    (toToggleButton self)

-- | If the user has selected a range of elements (such as some text or
-- spreadsheet cells) that are affected by a toggle button, and the current
-- values in that range are inconsistent, you may want to display the toggle in
-- an \"in between\" state. This function turns on \"in between\" display.
-- Normally you would turn off the inconsistent state again if the user toggles
-- the toggle button. This has to be done manually,
-- 'toggleButtonSetInconsistent' only affects visual appearance, it doesn't
-- affect the semantics of the button.
--
toggleButtonSetInconsistent :: ToggleButtonClass self => self
 -> Bool -- ^ @setting@ - @True@ if state is inconsistent
 -> IO ()
toggleButtonSetInconsistent :: forall self. ToggleButtonClass self => self -> Bool -> IO ()
toggleButtonSetInconsistent self
self Bool
setting =
  (\(ToggleButton ForeignPtr ToggleButton
arg1) CInt
arg2 -> ForeignPtr ToggleButton -> (Ptr ToggleButton -> IO ()) -> IO ()
forall a b. ForeignPtr a -> (Ptr a -> IO b) -> IO b
withForeignPtr ForeignPtr ToggleButton
arg1 ((Ptr ToggleButton -> IO ()) -> IO ())
-> (Ptr ToggleButton -> IO ()) -> IO ()
forall a b. (a -> b) -> a -> b
$ \Ptr ToggleButton
argPtr1 ->Ptr ToggleButton -> CInt -> IO ()
gtk_toggle_button_set_inconsistent Ptr ToggleButton
argPtr1 CInt
arg2)
{-# LINE 233 "./Graphics/UI/Gtk/Buttons/ToggleButton.chs" #-}
    (toToggleButton self)
    (Bool -> CInt
forall a. Num a => Bool -> a
fromBool Bool
setting)

--------------------
-- Attributes

-- | If the toggle button should be pressed in or not.
--
-- Default value: @False@
--
toggleButtonActive :: ToggleButtonClass self => Attr self Bool
toggleButtonActive :: forall self. ToggleButtonClass self => Attr self Bool
toggleButtonActive = (self -> IO Bool)
-> (self -> Bool -> IO ()) -> ReadWriteAttr self Bool Bool
forall o a b.
(o -> IO a) -> (o -> b -> IO ()) -> ReadWriteAttr o a b
newAttr
  self -> IO Bool
forall self. ToggleButtonClass self => self -> IO Bool
toggleButtonGetActive
  self -> Bool -> IO ()
forall self. ToggleButtonClass self => self -> Bool -> IO ()
toggleButtonSetActive

-- | If the toggle button is in an \"in between\" state.
--
-- Default value: @False@
--
toggleButtonInconsistent :: ToggleButtonClass self => Attr self Bool
toggleButtonInconsistent :: forall self. ToggleButtonClass self => Attr self Bool
toggleButtonInconsistent = (self -> IO Bool)
-> (self -> Bool -> IO ()) -> ReadWriteAttr self Bool Bool
forall o a b.
(o -> IO a) -> (o -> b -> IO ()) -> ReadWriteAttr o a b
newAttr
  self -> IO Bool
forall self. ToggleButtonClass self => self -> IO Bool
toggleButtonGetInconsistent
  self -> Bool -> IO ()
forall self. ToggleButtonClass self => self -> Bool -> IO ()
toggleButtonSetInconsistent

-- | If the toggle part of the button is displayed.
--
-- Default value: @False@
--
toggleButtonDrawIndicator :: ToggleButtonClass self => Attr self Bool
toggleButtonDrawIndicator :: forall self. ToggleButtonClass self => Attr self Bool
toggleButtonDrawIndicator = String -> Attr self Bool
forall gobj. GObjectClass gobj => String -> Attr gobj Bool
newAttrFromBoolProperty String
"draw-indicator"

-- | \'mode\' property. See 'toggleButtonGetMode' and 'toggleButtonSetMode'
--
toggleButtonMode :: ToggleButtonClass self => Attr self Bool
toggleButtonMode :: forall self. ToggleButtonClass self => Attr self Bool
toggleButtonMode = (self -> IO Bool)
-> (self -> Bool -> IO ()) -> ReadWriteAttr self Bool Bool
forall o a b.
(o -> IO a) -> (o -> b -> IO ()) -> ReadWriteAttr o a b
newAttr
  self -> IO Bool
forall self. ToggleButtonClass self => self -> IO Bool
toggleButtonGetMode
  self -> Bool -> IO ()
forall self. ToggleButtonClass self => self -> Bool -> IO ()
toggleButtonSetMode

--------------------
-- Signals

-- %hash c:467 d:227e
-- | Should be connected if you wish to perform an action whenever the
-- 'ToggleButton''s state is changed.
--
toggled :: ToggleButtonClass self => Signal self (IO ())
toggled :: forall self. ToggleButtonClass self => Signal self (IO ())
toggled = (Bool -> self -> IO () -> IO (ConnectId self))
-> Signal self (IO ())
forall object handler.
(Bool -> object -> handler -> IO (ConnectId object))
-> Signal object handler
Signal (String -> Bool -> self -> IO () -> IO (ConnectId self)
forall obj.
GObjectClass obj =>
String -> Bool -> obj -> IO () -> IO (ConnectId obj)
connect_NONE__NONE String
"toggled")

--------------------
-- Deprecated Signals


-- | Whenever the state of the button is changed, the toggled signal is
-- emitted.
--
onToggled, afterToggled :: ToggleButtonClass self => self
 -> IO ()
 -> IO (ConnectId self)
onToggled :: forall self.
ToggleButtonClass self =>
self -> IO () -> IO (ConnectId self)
onToggled = String -> Bool -> self -> IO () -> IO (ConnectId self)
forall obj.
GObjectClass obj =>
String -> Bool -> obj -> IO () -> IO (ConnectId obj)
connect_NONE__NONE String
"toggled" Bool
False
afterToggled :: forall self.
ToggleButtonClass self =>
self -> IO () -> IO (ConnectId self)
afterToggled = String -> Bool -> self -> IO () -> IO (ConnectId self)
forall obj.
GObjectClass obj =>
String -> Bool -> obj -> IO () -> IO (ConnectId obj)
connect_NONE__NONE String
"toggled" Bool
True

foreign import ccall unsafe "gtk_toggle_button_new"
  gtk_toggle_button_new :: (IO (Ptr Widget))

foreign import ccall unsafe "gtk_toggle_button_new_with_label"
  gtk_toggle_button_new_with_label :: ((Ptr CChar) -> (IO (Ptr Widget)))

foreign import ccall unsafe "gtk_toggle_button_new_with_mnemonic"
  gtk_toggle_button_new_with_mnemonic :: ((Ptr CChar) -> (IO (Ptr Widget)))

foreign import ccall safe "gtk_toggle_button_set_mode"
  gtk_toggle_button_set_mode :: ((Ptr ToggleButton) -> (CInt -> (IO ())))

foreign import ccall unsafe "gtk_toggle_button_get_mode"
  gtk_toggle_button_get_mode :: ((Ptr ToggleButton) -> (IO CInt))

foreign import ccall safe "gtk_toggle_button_toggled"
  gtk_toggle_button_toggled :: ((Ptr ToggleButton) -> (IO ()))

foreign import ccall unsafe "gtk_toggle_button_get_active"
  gtk_toggle_button_get_active :: ((Ptr ToggleButton) -> (IO CInt))

foreign import ccall safe "gtk_toggle_button_set_active"
  gtk_toggle_button_set_active :: ((Ptr ToggleButton) -> (CInt -> (IO ())))

foreign import ccall unsafe "gtk_toggle_button_get_inconsistent"
  gtk_toggle_button_get_inconsistent :: ((Ptr ToggleButton) -> (IO CInt))

foreign import ccall safe "gtk_toggle_button_set_inconsistent"
  gtk_toggle_button_set_inconsistent :: ((Ptr ToggleButton) -> (CInt -> (IO ())))