-- This file is part of Qtah. -- -- Copyright 2015-2021 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 . module Graphics.UI.Qtah.Generator.Interface.Core.QMargins ( aModule, c_QMargins, ) where import Foreign.Hoppy.Generator.Language.Haskell ( addImports, sayLn, saysLn, ) import Foreign.Hoppy.Generator.Spec ( ClassHaskellConversion ( ClassHaskellConversion, classHaskellConversionFromCppFn, classHaskellConversionToCppFn, classHaskellConversionType ), Operator (OpAddAssign, OpDivideAssign, OpMultiplyAssign, OpSubtractAssign), addReqIncludes, classSetEntityPrefix, classSetHaskellConversion, hsImports, hsQualifiedImport, ident, includeStd, makeClass, mkConstMethod, mkCtor, mkMethod', mkProp, np, operatorPreferredExtName', ) import Foreign.Hoppy.Generator.Spec.ClassFeature ( ClassFeature (Assignable, Copyable, Equatable), classAddFeatures, ) import Foreign.Hoppy.Generator.Types (boolT, intT, objT, refT) import Foreign.Hoppy.Generator.Version (collect, just, test) import Graphics.UI.Qtah.Generator.Config (qtVersion) import Graphics.UI.Qtah.Generator.Interface.Core.Types (qreal) import Graphics.UI.Qtah.Generator.Module (AModule (AQtModule), makeQtModule) import Graphics.UI.Qtah.Generator.Types import Language.Haskell.Syntax ( HsName (HsIdent), HsQName (UnQual), HsType (HsTyCon), ) {-# ANN module "HLint: ignore Use camelCase" #-} aModule = AQtModule $ makeQtModule ["Core", "QMargins"] [ qtExport c_QMargins ] c_QMargins = addReqIncludes [includeStd "QMargins"] $ classSetHaskellConversion ClassHaskellConversion { classHaskellConversionType = Just $ do addImports $ hsQualifiedImport "Graphics.UI.Qtah.Core.HMargins" "HMargins" return $ HsTyCon $ UnQual $ HsIdent "HMargins.HMargins" , classHaskellConversionToCppFn = Just $ do addImports $ mconcat [hsImports "Control.Applicative" ["(<$>)", "(<*>)"], hsQualifiedImport "Graphics.UI.Qtah.Core.HMargins" "HMargins"] saysLn ["new <$> HMargins.left <*> HMargins.top <*> HMargins.right <*> ", "HMargins.bottom"] , classHaskellConversionFromCppFn = Just $ do addImports $ mconcat [hsImports "Control.Applicative" ["(<$>)", "(<*>)"], hsQualifiedImport "Graphics.UI.Qtah.Core.HMargins" "HMargins"] sayLn "\\q -> HMargins.HMargins <$> left q <*> top q <*> right q <*> bottom q" } $ classAddFeatures [Assignable, Copyable, Equatable] $ classSetEntityPrefix "" $ makeClass (ident "QMargins") Nothing [] $ collect [ just $ mkCtor "newNull" np , just $ mkCtor "new" [intT, intT, intT, intT] , just $ mkProp "bottom" intT , just $ mkConstMethod "isNull" np boolT , just $ mkProp "left" intT , just $ mkProp "right" intT , just $ mkProp "top" intT , test (qtVersion >= [5, 1]) $ mkMethod' OpAddAssign (operatorPreferredExtName' OpAddAssign) [objT c_QMargins] $ refT $ objT c_QMargins , test (qtVersion >= [5, 1]) $ mkMethod' OpAddAssign (operatorPreferredExtName' OpAddAssign ++ "Int") [intT] $ refT $ objT c_QMargins , test (qtVersion >= [5, 1]) $ mkMethod' OpSubtractAssign (operatorPreferredExtName' OpSubtractAssign) [objT c_QMargins] $ refT $ objT c_QMargins , test (qtVersion >= [5, 1]) $ mkMethod' OpSubtractAssign (operatorPreferredExtName' OpSubtractAssign ++ "Int") [intT] $ refT $ objT c_QMargins , test (qtVersion >= [5, 1]) $ mkMethod' OpMultiplyAssign (operatorPreferredExtName' OpMultiplyAssign) [intT] $ refT $ objT c_QMargins , test (qtVersion >= [5, 1]) $ mkMethod' OpMultiplyAssign (operatorPreferredExtName' OpMultiplyAssign ++ "Real") [qreal] $ refT $ objT c_QMargins , test (qtVersion >= [5, 1]) $ mkMethod' OpDivideAssign (operatorPreferredExtName' OpDivideAssign) [intT] $ refT $ objT c_QMargins , test (qtVersion >= [5, 1]) $ mkMethod' OpDivideAssign (operatorPreferredExtName' OpDivideAssign ++ "Real") [qreal] $ refT $ objT c_QMargins ]