qtah-generator-0.6.0: src/Graphics/UI/Qtah/Generator/Interface/Widgets/QToolBar.hs
-- This file is part of Qtah.
--
-- Copyright 2015-2019 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,
addReqIncludes,
classSetEntityPrefix,
ident,
includeStd,
makeClass,
mkBoolIsProp,
mkConstMethod,
mkCtor,
mkMethod,
mkMethod',
mkProp,
np,
)
import Foreign.Hoppy.Generator.Types (boolT, enumT, objT, ptrT, voidT)
import Graphics.UI.Qtah.Generator.Flags (flagsT)
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 (
e_Orientation,
e_ToolBarArea,
fl_ToolBarAreas,
e_ToolButtonStyle,
)
import Graphics.UI.Qtah.Generator.Interface.Gui.QIcon (c_QIcon)
import Graphics.UI.Qtah.Generator.Interface.Internal.Listener (
listenerBool,
listenerOrientation,
listenerPtrQAction,
listenerQSize,
listenerToolBarAreas,
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 c_QToolBar :
map QtExportSignal signals
c_QToolBar :: Class
c_QToolBar =
addReqIncludes [includeStd "QToolBar"] $
classSetEntityPrefix "" $
makeClass (ident "QToolBar") Nothing [c_QWidget]
[ mkCtor "new" np
, 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" np $ ptrT $ objT c_QAction
, mkMethod "addWidget" [ptrT $ objT c_QWidget] $ ptrT $ objT c_QAction
, mkProp "allowedAreas" $ flagsT fl_ToolBarAreas
, mkMethod "clear" np 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" np boolT
, mkBoolIsProp "movable"
, mkProp "orientation" $ enumT e_Orientation
, mkMethod "toggleViewAction" np $ 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" listenerPtrQAction
, makeSignal c_QToolBar "allowedAreasChanged" listenerToolBarAreas
, makeSignal c_QToolBar "iconSizeChanged" listenerQSize
, makeSignal c_QToolBar "movableChanged" listenerBool
, makeSignal c_QToolBar "orientationChanged" listenerOrientation
, makeSignal c_QToolBar "toolButtonStyleChanged" listenerToolButtonStyle
, makeSignal c_QToolBar "topLevelChanged" listenerBool
, makeSignal c_QToolBar "visibilityChanged" listenerBool
]