-- This file is part of Qtah. -- -- Copyright 2015-2020 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.Widgets.QInputDialog ( aModule, c_QInputDialog, ) where import Foreign.Hoppy.Generator.Spec ( addReqIncludes, classSetEntityPrefix, ident, ident1, includeStd, makeClass, mkBoolIsProp, mkConstMethod, mkCtor, mkMethod, mkProp, mkStaticMethod', np, ) import Foreign.Hoppy.Generator.Types (boolT, doubleT, enumT, intT, objT, ptrT, voidT) import Foreign.Hoppy.Generator.Version (collect, just, test) import Graphics.UI.Qtah.Generator.Config (qtVersion) import Graphics.UI.Qtah.Generator.Flags (flagsT) import Graphics.UI.Qtah.Generator.Interface.Core.QString (c_QString) import Graphics.UI.Qtah.Generator.Interface.Core.QStringList (c_QStringList) import Graphics.UI.Qtah.Generator.Interface.Core.Types (fl_InputMethodHints, fl_WindowFlags) import Graphics.UI.Qtah.Generator.Interface.Internal.Listener ( listenerDouble, listenerInt, listenerQString, ) import Graphics.UI.Qtah.Generator.Interface.Widgets.QDialog (c_QDialog) import Graphics.UI.Qtah.Generator.Interface.Widgets.QLineEdit (e_EchoMode) import Graphics.UI.Qtah.Generator.Interface.Widgets.QWidget (c_QWidget) import Graphics.UI.Qtah.Generator.Module (AModule (AQtModule), makeQtModuleWithMinVersion) import Graphics.UI.Qtah.Generator.Types {-# ANN module "HLint: ignore Use camelCase" #-} minVersion = [4, 5] aModule = AQtModule $ makeQtModuleWithMinVersion ["Widgets", "QInputDialog"] minVersion [ QtExportClassAndSignals c_QInputDialog signals , qtExport e_InputDialogOption , qtExport fl_InputDialogOptions , qtExport e_InputMode ] (c_QInputDialog, signals) = makeQtClassAndSignals signalGens $ addReqIncludes [includeStd "QInputDialog"] $ classSetEntityPrefix "" $ makeClass (ident "QInputDialog") Nothing [c_QDialog] $ collect [ just $ mkCtor "new" np , just $ mkCtor "newWithParent" [ptrT $ objT c_QWidget] , just $ mkCtor "newWithParentAndFlags" [ptrT $ objT c_QWidget, flagsT fl_WindowFlags] , just $ mkProp "cancelButtonText" $ objT c_QString , just $ mkBoolIsProp "comboBoxEditable" , just $ mkProp "comboBoxItems" $ objT c_QStringList , just $ mkProp "doubleDecimals" intT , just $ mkProp "doubleMaximum" doubleT , just $ mkProp "doubleMinimum" doubleT , just $ mkProp "doubleValue" doubleT , just $ mkStaticMethod' "getDouble" "getDouble" [ptrT $ objT c_QWidget, objT c_QString, objT c_QString] doubleT , just $ mkStaticMethod' "getDouble" "getDoubleWithOptions" [ptrT $ objT c_QWidget, objT c_QString, objT c_QString, doubleT, doubleT, doubleT, intT, ptrT boolT, flagsT fl_WindowFlags] doubleT , just $ mkStaticMethod' "getInt" "getInt" [ptrT $ objT c_QWidget, objT c_QString, objT c_QString] intT , just $ mkStaticMethod' "getInt" "getIntWithOptions" [ptrT $ objT c_QWidget, objT c_QString, objT c_QString, intT, intT, intT, intT, ptrT boolT, flagsT fl_WindowFlags] intT , just $ mkStaticMethod' "getItem" "getItem" [ptrT $ objT c_QWidget, objT c_QString, objT c_QString, objT c_QStringList] $ objT c_QString , just $ mkStaticMethod' "getItem" "getItemWithOptions" [ptrT $ objT c_QWidget, objT c_QString, objT c_QString, objT c_QStringList, intT, boolT, ptrT boolT, flagsT fl_WindowFlags, flagsT fl_InputMethodHints] $ objT c_QString , test (qtVersion >= [5, 2]) $ mkStaticMethod' "getMultiLineText" "getMultiLineText" [ptrT $ objT c_QWidget, objT c_QString, objT c_QString] $ objT c_QString , test (qtVersion >= [5, 2]) $ mkStaticMethod' "getMultiLineText" "getMultiLineTextWithOptions" [ptrT $ objT c_QWidget, objT c_QString, objT c_QString, objT c_QString, ptrT boolT, flagsT fl_WindowFlags, flagsT fl_InputMethodHints] $ objT c_QString , just $ mkStaticMethod' "getText" "getText" [ptrT $ objT c_QWidget, objT c_QString, objT c_QString] $ objT c_QString , just $ mkStaticMethod' "getText" "getTextWithOptions" [ptrT $ objT c_QWidget, objT c_QString, objT c_QString, enumT e_EchoMode, objT c_QString, ptrT boolT, flagsT fl_WindowFlags, flagsT fl_InputMethodHints] $ objT c_QString , just $ mkProp "inputMode" $ enumT e_InputMode , just $ mkProp "intMaximum" intT , just $ mkProp "intMinimum" intT , just $ mkProp "intStep" intT , just $ mkProp "intValue" intT , just $ mkProp "labelText" $ objT c_QString , just $ mkProp "okButtonText" $ objT c_QString -- TODO open (if it can fit into the type system nicely) , just $ mkProp "options" $ flagsT fl_InputDialogOptions , just $ mkMethod "setDoubleRange" [doubleT, doubleT] voidT , just $ mkMethod "setIntRange" [intT, intT] voidT , just $ mkMethod "setOption" [enumT e_InputDialogOption, boolT] voidT , just $ mkConstMethod "testOption" [enumT e_InputDialogOption] boolT , just $ mkProp "textEchoMode" $ enumT e_EchoMode , just $ mkProp "textValue" $ objT c_QString ] signalGens :: [SignalGen] signalGens = [ makeSignal "doubleValueChanged" listenerDouble , makeSignal "doubleValueSelected" listenerDouble , makeSignal "intValueChanged" listenerInt , makeSignal "intValueSelected" listenerInt , makeSignal "textValueChanged" listenerQString , makeSignal "textValueSelected" listenerQString ] (e_InputDialogOption, fl_InputDialogOptions) = makeQtEnumAndFlags (ident1 "QInputDialog" "InputDialogOption") "InputDialogOptions" [includeStd "QInputDialog"] [ "NoButtons" , "UseListViewForComboBoxItems" , "UsePlainTextEditForTextInput" ] e_InputMode = makeQtEnum (ident1 "QInputDialog" "InputMode") [includeStd "QInputDialog"] [ "TextInput" , "IntInput" , "DoubleInput" ]