-- This file is part of Qtah. -- -- Copyright 2015-2016 Bryan Gardiner -- -- 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 . module Graphics.UI.Qtah.Generator.Interface.Widgets.QAbstractSlider ( aModule, c_QAbstractSlider, e_SliderAction, ) where import Foreign.Hoppy.Generator.Spec ( Export (ExportClass, ExportEnum), addReqIncludes, classSetEntityPrefix, enumSetValuePrefix, ident, ident1, includeStd, makeClass, makeEnum, mkBoolIsProp, mkBoolHasProp, mkCtor, mkMethod, mkProp, toExtName, ) import Foreign.Hoppy.Generator.Types (boolT, enumT, intT, objT, ptrT, voidT) import Graphics.UI.Qtah.Generator.Interface.Core.Types (e_Orientation) import Graphics.UI.Qtah.Generator.Interface.Internal.Listener ( c_Listener, c_ListenerInt, c_ListenerIntInt, c_ListenerQAbstractSliderAction, ) 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 = AQtModule $ makeQtModule ["Widgets", "QAbstractSlider"] $ QtExport (ExportClass c_QAbstractSlider) : map QtExportSignal signals ++ [ QtExport $ ExportEnum e_SliderAction ] c_QAbstractSlider = addReqIncludes [includeStd "QAbstractSlider"] $ classSetEntityPrefix "" $ makeClass (ident "QAbstractSlider") Nothing [c_QWidget] [ mkCtor "new" [] , mkCtor "newWithParent" [ptrT $ objT c_QWidget] , mkProp "invertedAppearance" boolT , mkProp "invertedControls" boolT , mkProp "maximum" intT , mkProp "minimum" intT , mkProp "orientation" $ enumT e_Orientation , mkProp "pageStep" intT , mkProp "singleStep" intT , mkBoolIsProp "sliderDown" , mkProp "sliderPosition" intT , mkBoolHasProp "tracking" , mkMethod "triggerAction" [enumT e_SliderAction] voidT , mkProp "value" intT ] signals = [ makeSignal c_QAbstractSlider "actionTriggered" c_ListenerQAbstractSliderAction , makeSignal c_QAbstractSlider "rangeChanged" c_ListenerIntInt , makeSignal c_QAbstractSlider "sliderMoved" c_ListenerInt , makeSignal c_QAbstractSlider "sliderPressed" c_Listener , makeSignal c_QAbstractSlider "sliderReleased" c_Listener , makeSignal c_QAbstractSlider "valueChanged" c_ListenerInt ] -- This uses 'makeEnum' rather than 'makeQtEnum' in order to use the external -- name of "QAbstractSliderAction" instead of "QAbstractSliderSliderAction". e_SliderAction = addReqIncludes [includeStd "QAbstractSlider"] $ enumSetValuePrefix "" $ makeEnum (ident1 "QAbstractSlider" "SliderAction") (Just $ toExtName "QAbstractSliderAction") [ (0, ["slider", "no", "action"]) , (1, ["slider", "single", "step", "add"]) , (2, ["slider", "single", "step", "sub"]) , (3, ["slider", "page", "step", "add"]) , (4, ["slider", "page", "step", "sub"]) , (5, ["slider", "to", "minimum"]) , (6, ["slider", "to", "maximum"]) , (7, ["slider", "move"]) ]