-- 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.Gui.QClipboard ( aModule, c_QClipboard, e_Mode, ) where import Foreign.Hoppy.Generator.Spec ( Export (ExportEnum, ExportClass), addReqIncludes, classSetDtorPrivate, classSetEntityPrefix, ident, ident1, includeStd, makeClass, mkConstMethod, mkConstMethod', mkMethod', ) import Foreign.Hoppy.Generator.Types (boolT, enumT, objT, refT, voidT) import Foreign.Hoppy.Generator.Version (collect, just, test) import Graphics.UI.Qtah.Generator.Flags (qtVersion) import Graphics.UI.Qtah.Generator.Interface.Core.QObject (c_QObject) import Graphics.UI.Qtah.Generator.Interface.Core.QString (c_QString) import Graphics.UI.Qtah.Generator.Interface.Internal.Listener ( c_Listener, c_ListenerQClipboardMode, ) import Graphics.UI.Qtah.Generator.Module (AModule (AQtModule), makeQtModule) import Graphics.UI.Qtah.Generator.Types {-# ANN module "HLint: ignore Use camelCase" #-} aModule = AQtModule $ makeQtModule ["Gui", "QClipboard"] $ (QtExport $ ExportClass c_QClipboard) : map QtExportSignal signals ++ [ QtExport $ ExportEnum e_Mode ] c_QClipboard = addReqIncludes [includeStd "QClipboard"] $ classSetDtorPrivate $ classSetEntityPrefix "" $ makeClass (ident "QClipboard") Nothing [c_QObject] $ collect [ just $ mkMethod' "clear" "clear" [] voidT , just $ mkMethod' "clear" "clearWithMode" [enumT e_Mode] voidT -- TODO image -- TODO mimeData , just $ mkConstMethod "ownsClipboard" [] boolT , test (qtVersion >= [4, 2]) $ mkConstMethod "ownsFindBuffer" [] boolT , just $ mkConstMethod "ownsSelection" [] boolT -- TODO pixmap -- TODO setImage -- TODO setMimeData -- TODO setPixmap , just $ mkMethod' "setText" "setText" [objT c_QString] voidT , just $ mkMethod' "setText" "setTextWithMode" [objT c_QString, enumT e_Mode] voidT , just $ mkConstMethod "supportsFindBuffer" [] boolT , just $ mkConstMethod "supportsSelection" [] boolT , just $ mkConstMethod' "text" "text" [] $ objT c_QString , just $ mkConstMethod' "text" "textWithMode" [enumT e_Mode] $ objT c_QString , just $ mkConstMethod' "text" "textSubtype" [refT $ objT c_QString] $ objT c_QString , just $ mkConstMethod' "text" "textSubtypeWithMode" [refT $ objT c_QString, enumT e_Mode] $ objT c_QString ] signals = collect [ test (qtVersion >= [4, 2]) $ makeSignal c_QClipboard "changed" c_ListenerQClipboardMode , just $ makeSignal c_QClipboard "dataChanged" c_Listener , test (qtVersion >= [4, 2]) $ makeSignal c_QClipboard "findBufferChanged" c_Listener , just $ makeSignal c_QClipboard "selectionChanged" c_Listener ] e_Mode = makeQtEnum (ident1 "QClipboard" "Mode") [includeStd "QClipboard"] [ (0, ["clipboard"]) , (1, ["selection"]) , (2, ["find", "buffer"]) ]