-- GENERATED by C->Haskell Compiler, version 0.28.6 Switcheroo, 25 November 2017 (Haskell)
-- Edit the ORIGNAL .chs file instead!


{-# LINE 1 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}
{-# LANGUAGE CPP, ExistentialQuantification, TypeSynonymInstances, FlexibleInstances, MultiParamTypeClasses, FlexibleContexts, ScopedTypeVariables #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
module Graphics.UI.FLTK.LowLevel.Base.TableRow
    (
     tableRowNew,
     TableRowSelectFlag(..)
    , drawTableRowBase
    , handleTableRowBase
    , resizeTableRowBase
    , hideTableRowBase
    , showWidgetTableRowBase
    , clearTableRowBase
    , setRowsTableRowBase
    , setColsTableRowBase
     -- * Hierarchy
     --
     -- $hierarchy

     -- * Functions
     --
     -- $functions
    )
where
import qualified Foreign.C.Types as C2HSImp
import qualified Foreign.Ptr as C2HSImp





import C2HS hiding (cFromEnum, cFromBool, cToBool,cToEnum)

import Graphics.UI.FLTK.LowLevel.Fl_Types
import Graphics.UI.FLTK.LowLevel.Fl_Enumerations
import Graphics.UI.FLTK.LowLevel.Base.Widget
import Graphics.UI.FLTK.LowLevel.Base.Table
import Graphics.UI.FLTK.LowLevel.Utils
import Graphics.UI.FLTK.LowLevel.Hierarchy
import Graphics.UI.FLTK.LowLevel.Dispatch
import qualified Data.Text as T

data TableRowSelectFlag = TableRowSelect | TableRowDeselect | TableRowToggle

tableRowNew' :: (Int) -> (Int) -> (Int) -> (Int) -> (Ptr ()) -> IO ((Ptr ()))
tableRowNew' a1 a2 a3 a4 a5 =
  let {a1' = fromIntegral a1} in 
  let {a2' = fromIntegral a2} in 
  let {a3' = fromIntegral a3} in 
  let {a4' = fromIntegral a4} in 
  let {a5' = id a5} in 
  tableRowNew''_ a1' a2' a3' a4' a5' >>= \res ->
  let {res' = id res} in
  return (res')

{-# LINE 40 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

tableRowNewWithLabel' :: (Int) -> (Int) -> (Int) -> (Int) -> (CString) -> (Ptr ()) -> IO ((Ptr ()))
tableRowNewWithLabel' a1 a2 a3 a4 a5 a6 =
  let {a1' = fromIntegral a1} in 
  let {a2' = fromIntegral a2} in 
  let {a3' = fromIntegral a3} in 
  let {a4' = fromIntegral a4} in 
  (flip ($)) a5 $ \a5' -> 
  let {a6' = id a6} in 
  tableRowNewWithLabel''_ a1' a2' a3' a4' a5' a6' >>= \res ->
  let {res' = id res} in
  return (res')

{-# LINE 41 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

tableRowNew :: Rectangle -> Maybe T.Text -> Maybe (Ref TableRow -> IO ()) -> (Ref TableRow -> TableContext -> TableCoordinate -> Rectangle -> IO ()) -> CustomWidgetFuncs TableRow -> CustomTableFuncs TableRow -> IO (Ref TableRow)
tableRowNew rectangle label' draw' drawCell' customWidgetFuncs' customTableFuncs' =
    do
      let (x_pos, y_pos, width, height) = fromRectangle rectangle
      ptr <- tableCustomFunctionStruct draw' (Just drawCell') customWidgetFuncs' customTableFuncs'
      case label' of
        (Just l') -> copyTextToCString l' >>= \l'' -> tableRowNewWithLabel' x_pos y_pos width height l'' ptr >>= toRef
        Nothing -> do
          ref <- tableRowNew' x_pos y_pos width height ptr >>= toRef
          setFlag ref WidgetFlagCopiedLabel
          setFlag ref WidgetFlagCopiedTooltip
          return ref

tableRowDestroy' :: (Ptr ()) -> IO ((()))
tableRowDestroy' :: Ptr () -> IO ()
tableRowDestroy' a1 :: Ptr ()
a1 =
  let {a1' = id a1} in 
  Ptr () -> IO ()
tableRowDestroy''_ Ptr ()
a1' IO () -> (() -> IO ()) -> IO ()
forall (m :: * -> *) a b. Monad m => m a -> (a -> m b) -> m b
>>= \res :: ()
res ->
  let {res' :: ()
res' = () -> ()
forall a. a -> ()
supressWarningAboutRes ()
res} in
  () -> IO ()
forall (m :: * -> *) a. Monad m => a -> m a
return (()
res')

{-# LINE 55 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

instance (impl ~ (IO ())) => Op (Destroy ()) TableRowBase orig impl where
  runOp _ _ tableRow = withRef tableRow $ \tableRowPtr -> tableRowDestroy' tableRowPtr
rows' :: (Ptr ()) -> IO ((Int))
rows' a1 =
  let {a1' = id a1} in 
  rows''_ a1' >>= \res ->
  let {res' = fromIntegral res} in
  return (res')

{-# LINE 58 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

instance (impl ~ ( IO (Rows))) => Op (GetRows ()) TableRowBase orig impl where
  runOp _ _ tableRow = withRef tableRow $ \tableRowPtr -> rows' tableRowPtr >>= return . Rows
tableRowSetType' :: (Ptr ()) -> (TableRowSelectMode) -> IO ()
tableRowSetType' a1 a2 =
  let {a1' = id a1} in 
  let {a2' = cFromEnum a2} in 
  tableRowSetType''_ a1' a2' >>
  return ()

{-# LINE 61 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

instance (impl ~ (TableRowSelectMode -> IO ())) => Op (SetType ()) TableRowBase orig impl where
  runOp _ _ tableRow selectionMode = withRef tableRow $ \tableRowPtr' -> tableRowSetType' tableRowPtr' selectionMode
tableRowType :: (Ptr ()) -> IO ((TableRowSelectMode))
tableRowType a1 =
  let {a1' = id a1} in 
  tableRowType'_ a1' >>= \res ->
  let {res' = cToEnum res} in
  return (res')

{-# LINE 64 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

instance (impl ~ (IO TableRowSelectMode)) => Op (GetType_ ()) TableRowBase orig impl where
  runOp _ _ tableRow = withRef tableRow $ \tableRowPtr' -> tableRowType tableRowPtr'
rowSelected' :: (Ptr ()) -> (Int) -> IO ((CInt))
rowSelected' a1 a2 =
  let {a1' = id a1} in 
  let {a2' = fromIntegral a2} in 
  rowSelected''_ a1' a2' >>= \res ->
  let {res' = id res} in
  return (res')

{-# LINE 67 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

instance (impl ~ ( Row -> IO (Either OutOfRange Bool))) => Op (GetRowSelected ()) TableRowBase orig impl where
  runOp _ _ table (Row idx') = withRef table $ \tablePtr -> do
    ret' <- rowSelected' tablePtr idx'
    if ret' == -1 then (return $ Left OutOfRange) else (return $ Right $ cToBool ret')
selectAllRows' :: (Ptr ()) -> (Int) -> IO ()
selectAllRows' a1 a2 =
  let {a1' = id a1} in 
  let {a2' = fromIntegral a2} in 
  selectAllRows''_ a1' a2' >>
  return ()

{-# LINE 72 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

instance (impl ~ ( TableRowSelectFlag -> IO ())) => Op (SelectAllRows ()) TableRowBase orig impl where
  runOp _ _ table flag' = withRef table $
                          \tablePtr ->
                             case flag' of
                              TableRowSelect -> selectAllRows' tablePtr 1
                              TableRowDeselect -> selectAllRows' tablePtr 0
                              TableRowToggle -> selectAllRows' tablePtr 2

drawSuper' :: (Ptr ()) -> IO ((()))
drawSuper' :: Ptr () -> IO ()
drawSuper' a1 :: Ptr ()
a1 =
  let {a1' :: Ptr ()
a1' = Ptr () -> Ptr ()
forall a. a -> a
id Ptr ()
a1} in 
  Ptr () -> IO ()
drawSuper''_ Ptr ()
a1' IO () -> (() -> IO ()) -> IO ()
forall (m :: * -> *) a b. Monad m => m a -> (a -> m b) -> m b
>>= \res :: ()
res ->
  let {res' :: ()
res' = () -> ()
forall a. a -> ()
supressWarningAboutRes ()
res} in
  () -> IO ()
forall (m :: * -> *) a. Monad m => a -> m a
return (()
res')

{-# LINE 81 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

drawTableRowBase ::  Ref TableRowBase -> IO ()
drawTableRowBase table = withRef table $ \tablePtr -> drawSuper' tablePtr
handleSuper' :: (Ptr ()) -> (Int) -> IO ((Int))
handleSuper' a1 a2 =
  let {a1' = id a1} in 
  let {a2' = fromIntegral a2} in 
  handleSuper''_ a1' a2' >>= \res ->
  let {res' = fromIntegral res} in
  return (res')

{-# LINE 84 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

handleTableRowBase :: Ref TableRowBase -> Event ->  IO (Either UnknownEvent ())
handleTableRowBase table event = withRef table $ \tablePtr -> handleSuper' tablePtr (fromIntegral (fromEnum event)) >>= return . successOrUnknownEvent
resizeSuper' :: (Ptr ()) -> (Int) -> (Int) -> (Int) -> (Int) -> IO ((()))
resizeSuper' a1 a2 a3 a4 a5 =
  let {a1' = id a1} in 
  let {a2' = fromIntegral a2} in 
  let {a3' = fromIntegral a3} in 
  let {a4' = fromIntegral a4} in 
  let {a5' = fromIntegral a5} in 
  resizeSuper''_ a1' a2' a3' a4' a5' >>= \res ->
  let {res' = supressWarningAboutRes res} in
  return (res')

{-# LINE 87 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

resizeTableRowBase :: Ref TableRowBase -> Rectangle -> IO ()
resizeTableRowBase table rectangle =
    let (x_pos, y_pos, width, height) = fromRectangle rectangle
    in withRef table $ \tablePtr -> resizeSuper' tablePtr x_pos y_pos width height
hideSuper' :: (Ptr ()) -> IO ((()))
hideSuper' a1 =
  let {a1' = id a1} in 
  hideSuper''_ a1' >>= \res ->
  let {res' = supressWarningAboutRes res} in
  return (res')

{-# LINE 92 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

hideTableRowBase ::  Ref TableRowBase -> IO ()
hideTableRowBase table = withRef table $ \tablePtr -> hideSuper' tablePtr
showSuper' :: (Ptr ()) -> IO ((()))
showSuper' a1 =
  let {a1' = id a1} in 
  showSuper''_ a1' >>= \res ->
  let {res' = supressWarningAboutRes res} in
  return (res')

{-# LINE 95 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

showWidgetTableRowBase ::  Ref TableRowBase -> IO ()
showWidgetTableRowBase table = withRef table $ \tablePtr -> showSuper' tablePtr
clearSuper' :: (Ptr ()) -> IO ()
clearSuper' a1 =
  let {a1' = id a1} in 
  clearSuper''_ a1' >>
  return ()

{-# LINE 98 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

clearTableRowBase :: Ref Table -> IO ()
clearTableRowBase table = withRef table $ \tablePtr -> clearSuper' tablePtr
setRowsSuper' :: (Ptr ()) -> (Int) -> IO ()
setRowsSuper' a1 a2 =
  let {a1' = id a1} in 
  let {a2' = fromIntegral a2} in 
  setRowsSuper''_ a1' a2' >>
  return ()

{-# LINE 101 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

setRowsTableRowBase :: Ref Table -> Rows -> IO ()
setRowsTableRowBase table (Rows val) = withRef table $ \tablePtr -> setRowsSuper' tablePtr val
setColsSuper' :: (Ptr ()) -> (Int) -> IO ()
setColsSuper' a1 a2 =
  let {a1' = id a1} in 
  let {a2' = fromIntegral a2} in 
  setColsSuper''_ a1' a2' >>
  return ()

{-# LINE 104 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

setColsTableRowBase :: Ref Table -> Columns ->  IO ()
setColsTableRowBase table (Columns val) = withRef table $ \tablePtr -> setColsSuper' tablePtr val

setCols' :: (Ptr ()) -> (Int) -> IO ()
setCols' a1 a2 =
  let {a1' = id a1} in 
  let {a2' = fromIntegral a2} in 
  setCols''_ a1' a2' >>
  return ()

{-# LINE 108 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

instance (impl ~ (Columns ->  IO ())) => Op (SetCols ()) TableRowBase orig impl where
  runOp _ _ table (Columns val) = withRef table $ \tablePtr -> setCols' tablePtr val
setRows' :: (Ptr ()) -> (Int) -> IO ()
setRows' a1 a2 =
  let {a1' = id a1} in 
  let {a2' = fromIntegral a2} in 
  setRows''_ a1' a2' >>
  return ()

{-# LINE 111 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

instance (impl ~ (Rows ->  IO ())) => Op (SetRows ()) TableRowBase orig impl where
  runOp _ _ table (Rows val) = withRef table $ \tablePtr -> setRows' tablePtr val
draw'' :: (Ptr ()) -> IO ()
draw'' a1 =
  let {a1' = id a1} in 
  draw'''_ a1' >>
  return ()

{-# LINE 114 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

instance (impl ~ (  IO ())) => Op (Draw ()) TableRowBase orig impl where
  runOp _ _ tableRow = withRef tableRow $ \tableRowPtr -> draw'' tableRowPtr
hide' :: (Ptr ()) -> IO ()
hide' a1 =
  let {a1' = id a1} in 
  hide''_ a1' >>
  return ()

{-# LINE 117 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

instance (impl ~ (  IO ())) => Op (Hide ()) TableRowBase orig impl where
  runOp _ _ tableRow = withRef tableRow $ \tableRowPtr -> hide' tableRowPtr
show' :: (Ptr ()) -> IO ()
show' a1 =
  let {a1' = id a1} in 
  show''_ a1' >>
  return ()

{-# LINE 120 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

instance (impl ~ (  IO ())) => Op (ShowWidget ()) TableRowBase orig impl where
  runOp _ _ tableRow = withRef tableRow $ \tableRowPtr -> show' tableRowPtr
resize' :: (Ptr ()) -> (Int) -> (Int) -> (Int) -> (Int) -> IO ()
resize' a1 a2 a3 a4 a5 =
  let {a1' = id a1} in 
  let {a2' = fromIntegral a2} in 
  let {a3' = fromIntegral a3} in 
  let {a4' = fromIntegral a4} in 
  let {a5' = fromIntegral a5} in 
  resize''_ a1' a2' a3' a4' a5' >>
  return ()

{-# LINE 123 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

instance (impl ~ (Rectangle ->  IO ())) => Op (Resize ()) TableRowBase orig impl where
  runOp _ _ table rectangle = let (x_pos', y_pos', width', height') = fromRectangle rectangle in withRef table $ \tablePtr -> resize' tablePtr x_pos' y_pos' width' height'
clear' :: (Ptr ()) -> IO ()
clear' a1 =
  let {a1' = id a1} in 
  clear''_ a1' >>
  return ()

{-# LINE 126 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

instance (impl ~ ( IO ())) => Op (Clear ()) TableRowBase orig impl where
  runOp _ _ table = withRef table $ \tablePtr -> clear' tablePtr
handle' :: (Ptr ()) -> (Event) -> IO ((Int))
handle' a1 a2 =
  let {a1' = id a1} in 
  let {a2' = cFromEnum a2} in 
  handle''_ a1' a2' >>= \res ->
  let {res' = fromIntegral res} in
  return (res')

{-# LINE 129 "src/Graphics/UI/FLTK/LowLevel/Base/TableRow.chs" #-}

instance (impl ~ (Event ->  IO(Either UnknownEvent ()))) => Op (Handle ()) TableRowBase orig impl where
  runOp _ _ table event = withRef table $ \tablePtr -> handle' tablePtr event >>= return  . successOrUnknownEvent


-- $hierarchy
-- @
-- "Graphics.UI.FLTK.LowLevel.Base.Widget"
--  |
--  v
-- "Graphics.UI.FLTK.LowLevel.Base.Group"
--  |
--  v
-- "Graphics.UI.FLTK.LowLevel.Base.Table"
--  |
--  v
-- "Graphics.UI.FLTK.LowLevel.Base.TableRow"
-- @

-- $functions
-- @
-- clear :: 'Ref' 'TableRowBase' -> 'IO' ()
--
-- destroy :: 'Ref' 'TableRowBase' -> 'IO' ()
--
-- draw :: 'Ref' 'TableRowBase' -> 'IO' ()
--
-- getRowSelected :: 'Ref' 'TableRowBase' -> 'Row' -> 'IO' ('Either' 'OutOfRange' 'Bool')
--
-- getRows :: 'Ref' 'TableRowBase' -> 'IO' ('Rows')
--
-- getType_ :: 'Ref' 'TableRowBase' -> 'IO' 'TableRowSelectMode'
--
-- handle :: 'Ref' 'TableRowBase' -> 'Event' -> 'IO(Either' 'UnknownEvent' ())
--
-- hide :: 'Ref' 'TableRowBase' -> 'IO' ()
--
-- resize :: 'Ref' 'TableRowBase' -> 'Rectangle' -> 'IO' ()
--
-- selectAllRows :: 'Ref' 'TableRowBase' -> 'TableRowSelectFlag' -> 'IO' ()
--
-- setCols :: 'Ref' 'TableRowBase' -> 'Columns' -> 'IO' ()
--
-- setRows :: 'Ref' 'TableRowBase' -> 'Rows' -> 'IO' ()
--
-- setType :: 'Ref' 'TableRowBase' -> 'TableRowSelectMode' -> 'IO' ()
--
-- showWidget :: 'Ref' 'TableRowBase' -> 'IO' ()
-- @

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_OverriddenTable_Row_New"
  tableRowNew''_ :: (C2HSImp.CInt -> (C2HSImp.CInt -> (C2HSImp.CInt -> (C2HSImp.CInt -> ((C2HSImp.Ptr ()) -> (IO (C2HSImp.Ptr ())))))))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_OverriddenTable_Row_New_WithLabel"
  tableRowNewWithLabel''_ :: (C2HSImp.CInt -> (C2HSImp.CInt -> (C2HSImp.CInt -> (C2HSImp.CInt -> ((C2HSImp.Ptr C2HSImp.CChar) -> ((C2HSImp.Ptr ()) -> (IO (C2HSImp.Ptr ()))))))))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_Destroy"
  tableRowDestroy''_ :: ((C2HSImp.Ptr ()) -> (IO ()))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_rows"
  rows''_ :: ((C2HSImp.Ptr ()) -> (IO C2HSImp.CInt))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_set_type"
  tableRowSetType''_ :: ((C2HSImp.Ptr ()) -> (C2HSImp.CInt -> (IO ())))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_type"
  tableRowType'_ :: ((C2HSImp.Ptr ()) -> (IO C2HSImp.CInt))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_row_selected"
  rowSelected''_ :: ((C2HSImp.Ptr ()) -> (C2HSImp.CInt -> (IO C2HSImp.CInt)))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_select_all_rows_with_flag"
  selectAllRows''_ :: ((C2HSImp.Ptr ()) -> (C2HSImp.CInt -> (IO ())))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_draw_super"
  drawSuper''_ :: ((C2HSImp.Ptr ()) -> (IO ()))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_handle_super"
  handleSuper''_ :: ((C2HSImp.Ptr ()) -> (C2HSImp.CInt -> (IO C2HSImp.CInt)))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_resize_super"
  resizeSuper''_ :: ((C2HSImp.Ptr ()) -> (C2HSImp.CInt -> (C2HSImp.CInt -> (C2HSImp.CInt -> (C2HSImp.CInt -> (IO ()))))))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_hide_super"
  hideSuper''_ :: ((C2HSImp.Ptr ()) -> (IO ()))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_show_super"
  showSuper''_ :: ((C2HSImp.Ptr ()) -> (IO ()))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_clear_super"
  clearSuper''_ :: ((C2HSImp.Ptr ()) -> (IO ()))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_set_rows_super"
  setRowsSuper''_ :: ((C2HSImp.Ptr ()) -> (C2HSImp.CInt -> (IO ())))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_set_cols_super"
  setColsSuper''_ :: ((C2HSImp.Ptr ()) -> (C2HSImp.CInt -> (IO ())))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_set_cols"
  setCols''_ :: ((C2HSImp.Ptr ()) -> (C2HSImp.CInt -> (IO ())))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_set_rows"
  setRows''_ :: ((C2HSImp.Ptr ()) -> (C2HSImp.CInt -> (IO ())))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_draw"
  draw'''_ :: ((C2HSImp.Ptr ()) -> (IO ()))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_hide"
  hide''_ :: ((C2HSImp.Ptr ()) -> (IO ()))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_show"
  show''_ :: ((C2HSImp.Ptr ()) -> (IO ()))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_resize"
  resize''_ :: ((C2HSImp.Ptr ()) -> (C2HSImp.CInt -> (C2HSImp.CInt -> (C2HSImp.CInt -> (C2HSImp.CInt -> (IO ()))))))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_clear"
  clear''_ :: ((C2HSImp.Ptr ()) -> (IO ()))

foreign import ccall safe "Graphics/UI/FLTK/LowLevel/Base/TableRow.chs.h Fl_Table_Row_handle"
  handle''_ :: ((C2HSImp.Ptr ()) -> (C2HSImp.CInt -> (IO C2HSImp.CInt)))