packages feed

qtah-generator-0.4.0: src/Graphics/UI/Qtah/Generator/Interface/Widgets/QToolBar.hs

-- This file is part of Qtah.
--
-- Copyright 2015-2018 The Qtah Authors.
--
-- This program 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 3 of the License, or
-- (at your option) any later version.
--
-- This program 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.
--
-- You should have received a copy of the GNU Lesser General Public License
-- along with this program.  If not, see <http://www.gnu.org/licenses/>.

module Graphics.UI.Qtah.Generator.Interface.Widgets.QToolBar (
  aModule,
  c_QToolBar,
  ) where

import Foreign.Hoppy.Generator.Spec (
  Class,
  Export (ExportClass),
  addReqIncludes,
  classSetEntityPrefix,
  ident,
  includeStd,
  makeClass,
  mkBoolIsProp,
  mkConstMethod,
  mkCtor,
  mkMethod,
  mkMethod',
  mkProp,
  )
import Foreign.Hoppy.Generator.Types (bitspaceT, boolT, enumT, objT, ptrT, voidT)
import Graphics.UI.Qtah.Generator.Interface.Core.QSize (c_QSize)
import Graphics.UI.Qtah.Generator.Interface.Core.QString (c_QString)
import Graphics.UI.Qtah.Generator.Interface.Core.Types (
  bs_ToolBarAreas,
  e_Orientation,
  e_ToolBarArea,
  e_ToolButtonStyle,
  )
import Graphics.UI.Qtah.Generator.Interface.Gui.QIcon (c_QIcon)
import Graphics.UI.Qtah.Generator.Interface.Internal.Listener (
  c_ListenerBool,
  c_ListenerOrientation,
  c_ListenerPtrQAction,
  c_ListenerQSize,
  c_ListenerToolBarAreas,
  c_ListenerToolButtonStyle,
  )
import Graphics.UI.Qtah.Generator.Interface.Widgets.QAction (c_QAction)
import Graphics.UI.Qtah.Generator.Interface.Widgets.QWidget (c_QWidget)
import Graphics.UI.Qtah.Generator.Module (AModule (AQtModule), makeQtModule)
import Graphics.UI.Qtah.Generator.Types

{-# ANN module "HLint: ignore Use camelCase" #-}

aModule :: AModule
aModule =
  AQtModule $
  makeQtModule ["Widgets", "QToolBar"] $
  QtExport (ExportClass c_QToolBar) :
  map QtExportSignal signals

c_QToolBar :: Class
c_QToolBar =
  addReqIncludes [includeStd "QToolBar"] $
  classSetEntityPrefix "" $
  makeClass (ident "QToolBar") Nothing [c_QWidget]
  [ mkCtor "new" []
  , mkCtor "newWithParent" [ptrT $ objT c_QWidget]
  , mkCtor "newWithTitle" [objT c_QString]
  , mkCtor "newWithTitleAndParent" [objT c_QString, ptrT $ objT c_QWidget]
  , mkMethod' "addAction" "addAction" [objT c_QString] $ ptrT $ objT c_QAction
  , mkMethod' "addAction" "addActionWithIcon" [objT c_QIcon, objT c_QString] $ ptrT $ objT c_QAction
  , mkMethod "addSeparator" [] $ ptrT $ objT c_QAction
  , mkMethod "addWidget" [ptrT $ objT c_QWidget] $ ptrT $ objT c_QAction
  , mkProp "allowedAreas" $ bitspaceT bs_ToolBarAreas
  , mkMethod "clear" [] voidT
  , mkBoolIsProp "floatable"
  , mkProp "iconSize" $ objT c_QSize
  , mkMethod "insertSeparator" [ptrT $ objT c_QAction] $ ptrT $ objT c_QAction
  , mkMethod "insertWidget" [ptrT $ objT c_QAction, ptrT $ objT c_QWidget] $ ptrT $ objT c_QAction
  , mkConstMethod "isAreaAllowed" [enumT e_ToolBarArea] boolT
  , mkConstMethod "isFloating" [] boolT
  , mkBoolIsProp "movable"
  , mkProp "orientation" $ enumT e_Orientation
  , mkMethod "toggleViewAction" [] $ ptrT $ objT c_QAction
  , mkProp "toolButtonStyle" $ enumT e_ToolButtonStyle
  , mkConstMethod "widgetForAction" [ptrT $ objT c_QAction] $ ptrT $ objT c_QWidget
  ]

signals :: [Signal]
signals =
  [ makeSignal c_QToolBar "actionTriggered" c_ListenerPtrQAction
  , makeSignal c_QToolBar "allowedAreasChanged" c_ListenerToolBarAreas
  , makeSignal c_QToolBar "iconSizeChanged" c_ListenerQSize
  , makeSignal c_QToolBar "movableChanged" c_ListenerBool
  , makeSignal c_QToolBar "orientationChanged" c_ListenerOrientation
  , makeSignal c_QToolBar "toolButtonStyleChanged" c_ListenerToolButtonStyle
  , makeSignal c_QToolBar "topLevelChanged" c_ListenerBool
  , makeSignal c_QToolBar "visibilityChanged" c_ListenerBool
  ]