{- | Copyright : Will Thompson, Iñaki García Etxebarria and Jonas Platte License : LGPL-2.1 Maintainer : Iñaki García Etxebarria (inaki@blueleaf.cc) GtkLockButton is a widget that can be used in control panels or preference dialogs to allow users to obtain and revoke authorizations needed to operate the controls. The required authorization is represented by a 'GI.Gio.Objects.Permission.Permission' object. Concrete implementations of 'GI.Gio.Objects.Permission.Permission' may use PolicyKit or some other authorization framework. To obtain a PolicyKit-based 'GI.Gio.Objects.Permission.Permission', use @/polkit_permission_new()/@. If the user is not currently allowed to perform the action, but can obtain the permission, the widget looks like this: <> and the user can click the button to request the permission. Depending on the platform, this may pop up an authentication dialog or ask the user to authenticate in some other way. Once the user has obtained the permission, the widget changes to this: <> and the permission can be dropped again by clicking the button. If the user is not able to obtain the permission at all, the widget looks like this: <> If the user has the permission and cannot drop it, the button is hidden. The text (and tooltips) that are shown in the various cases can be adjusted with the 'GI.Gtk.Objects.LockButton.LockButton':@/text-lock/@, 'GI.Gtk.Objects.LockButton.LockButton':@/text-unlock/@, 'GI.Gtk.Objects.LockButton.LockButton':@/tooltip-lock/@, 'GI.Gtk.Objects.LockButton.LockButton':@/tooltip-unlock/@ and 'GI.Gtk.Objects.LockButton.LockButton':@/tooltip-not-authorized/@ properties. -} #define ENABLE_OVERLOADING (MIN_VERSION_haskell_gi_overloading(1,0,0) \ && !defined(__HADDOCK_VERSION__)) module GI.Gtk.Objects.LockButton ( -- * Exported types LockButton(..) , IsLockButton , toLockButton , noLockButton , -- * Methods -- ** getPermission #method:getPermission# #if ENABLE_OVERLOADING LockButtonGetPermissionMethodInfo , #endif lockButtonGetPermission , -- ** new #method:new# lockButtonNew , -- ** setPermission #method:setPermission# #if ENABLE_OVERLOADING LockButtonSetPermissionMethodInfo , #endif lockButtonSetPermission , -- * Properties -- ** permission #attr:permission# {- | /No description available in the introspection data./ -} #if ENABLE_OVERLOADING LockButtonPermissionPropertyInfo , #endif clearLockButtonPermission , constructLockButtonPermission , getLockButtonPermission , #if ENABLE_OVERLOADING lockButtonPermission , #endif setLockButtonPermission , -- ** textLock #attr:textLock# {- | /No description available in the introspection data./ -} #if ENABLE_OVERLOADING LockButtonTextLockPropertyInfo , #endif clearLockButtonTextLock , constructLockButtonTextLock , getLockButtonTextLock , #if ENABLE_OVERLOADING lockButtonTextLock , #endif setLockButtonTextLock , -- ** textUnlock #attr:textUnlock# {- | /No description available in the introspection data./ -} #if ENABLE_OVERLOADING LockButtonTextUnlockPropertyInfo , #endif clearLockButtonTextUnlock , constructLockButtonTextUnlock , getLockButtonTextUnlock , #if ENABLE_OVERLOADING lockButtonTextUnlock , #endif setLockButtonTextUnlock , -- ** tooltipLock #attr:tooltipLock# {- | /No description available in the introspection data./ -} #if ENABLE_OVERLOADING LockButtonTooltipLockPropertyInfo , #endif clearLockButtonTooltipLock , constructLockButtonTooltipLock , getLockButtonTooltipLock , #if ENABLE_OVERLOADING lockButtonTooltipLock , #endif setLockButtonTooltipLock , -- ** tooltipNotAuthorized #attr:tooltipNotAuthorized# {- | /No description available in the introspection data./ -} #if ENABLE_OVERLOADING LockButtonTooltipNotAuthorizedPropertyInfo, #endif clearLockButtonTooltipNotAuthorized , constructLockButtonTooltipNotAuthorized , getLockButtonTooltipNotAuthorized , #if ENABLE_OVERLOADING lockButtonTooltipNotAuthorized , #endif setLockButtonTooltipNotAuthorized , -- ** tooltipUnlock #attr:tooltipUnlock# {- | /No description available in the introspection data./ -} #if ENABLE_OVERLOADING LockButtonTooltipUnlockPropertyInfo , #endif clearLockButtonTooltipUnlock , constructLockButtonTooltipUnlock , getLockButtonTooltipUnlock , #if ENABLE_OVERLOADING lockButtonTooltipUnlock , #endif setLockButtonTooltipUnlock , ) where import Data.GI.Base.ShortPrelude import qualified Data.GI.Base.ShortPrelude as SP import qualified Data.GI.Base.Overloading as O import qualified Prelude as P import qualified Data.GI.Base.Attributes as GI.Attributes import qualified Data.GI.Base.ManagedPtr as B.ManagedPtr import qualified Data.GI.Base.GClosure as B.GClosure import qualified Data.GI.Base.GError as B.GError import qualified Data.GI.Base.GVariant as B.GVariant import qualified Data.GI.Base.GValue as B.GValue import qualified Data.GI.Base.GParamSpec as B.GParamSpec import qualified Data.GI.Base.CallStack as B.CallStack import qualified Data.GI.Base.Properties as B.Properties import qualified Data.Text as T import qualified Data.ByteString.Char8 as B import qualified Data.Map as Map import qualified Foreign.Ptr as FP import qualified GHC.OverloadedLabels as OL import qualified GI.Atk.Interfaces.ImplementorIface as Atk.ImplementorIface import qualified GI.GObject.Objects.Object as GObject.Object import qualified GI.Gio.Objects.Permission as Gio.Permission import {-# SOURCE #-} qualified GI.Gtk.Interfaces.Actionable as Gtk.Actionable import {-# SOURCE #-} qualified GI.Gtk.Interfaces.Activatable as Gtk.Activatable import {-# SOURCE #-} qualified GI.Gtk.Interfaces.Buildable as Gtk.Buildable import {-# SOURCE #-} qualified GI.Gtk.Objects.Bin as Gtk.Bin import {-# SOURCE #-} qualified GI.Gtk.Objects.Button as Gtk.Button import {-# SOURCE #-} qualified GI.Gtk.Objects.Container as Gtk.Container import {-# SOURCE #-} qualified GI.Gtk.Objects.Widget as Gtk.Widget -- | Memory-managed wrapper type. newtype LockButton = LockButton (ManagedPtr LockButton) foreign import ccall "gtk_lock_button_get_type" c_gtk_lock_button_get_type :: IO GType instance GObject LockButton where gobjectType = c_gtk_lock_button_get_type -- | Type class for types which can be safely cast to `LockButton`, for instance with `toLockButton`. class (GObject o, O.IsDescendantOf LockButton o) => IsLockButton o instance (GObject o, O.IsDescendantOf LockButton o) => IsLockButton o instance O.HasParentTypes LockButton type instance O.ParentTypes LockButton = '[Gtk.Button.Button, Gtk.Bin.Bin, Gtk.Container.Container, Gtk.Widget.Widget, GObject.Object.Object, Atk.ImplementorIface.ImplementorIface, Gtk.Actionable.Actionable, Gtk.Activatable.Activatable, Gtk.Buildable.Buildable] -- | Cast to `LockButton`, for types for which this is known to be safe. For general casts, use `Data.GI.Base.ManagedPtr.castTo`. toLockButton :: (MonadIO m, IsLockButton o) => o -> m LockButton toLockButton = liftIO . unsafeCastTo LockButton -- | A convenience alias for `Nothing` :: `Maybe` `LockButton`. noLockButton :: Maybe LockButton noLockButton = Nothing #if ENABLE_OVERLOADING type family ResolveLockButtonMethod (t :: Symbol) (o :: *) :: * where ResolveLockButtonMethod "activate" o = Gtk.Widget.WidgetActivateMethodInfo ResolveLockButtonMethod "add" o = Gtk.Container.ContainerAddMethodInfo ResolveLockButtonMethod "addAccelerator" o = Gtk.Widget.WidgetAddAcceleratorMethodInfo ResolveLockButtonMethod "addChild" o = Gtk.Buildable.BuildableAddChildMethodInfo ResolveLockButtonMethod "addDeviceEvents" o = Gtk.Widget.WidgetAddDeviceEventsMethodInfo ResolveLockButtonMethod "addEvents" o = Gtk.Widget.WidgetAddEventsMethodInfo ResolveLockButtonMethod "addMnemonicLabel" o = Gtk.Widget.WidgetAddMnemonicLabelMethodInfo ResolveLockButtonMethod "addTickCallback" o = Gtk.Widget.WidgetAddTickCallbackMethodInfo ResolveLockButtonMethod "bindProperty" o = GObject.Object.ObjectBindPropertyMethodInfo ResolveLockButtonMethod "bindPropertyFull" o = GObject.Object.ObjectBindPropertyFullMethodInfo ResolveLockButtonMethod "canActivateAccel" o = Gtk.Widget.WidgetCanActivateAccelMethodInfo ResolveLockButtonMethod "checkResize" o = Gtk.Container.ContainerCheckResizeMethodInfo ResolveLockButtonMethod "childFocus" o = Gtk.Widget.WidgetChildFocusMethodInfo ResolveLockButtonMethod "childGetProperty" o = Gtk.Container.ContainerChildGetPropertyMethodInfo ResolveLockButtonMethod "childNotify" o = Gtk.Container.ContainerChildNotifyMethodInfo ResolveLockButtonMethod "childNotifyByPspec" o = Gtk.Container.ContainerChildNotifyByPspecMethodInfo ResolveLockButtonMethod "childSetProperty" o = Gtk.Container.ContainerChildSetPropertyMethodInfo ResolveLockButtonMethod "childType" o = Gtk.Container.ContainerChildTypeMethodInfo ResolveLockButtonMethod "classPath" o = Gtk.Widget.WidgetClassPathMethodInfo ResolveLockButtonMethod "clicked" o = Gtk.Button.ButtonClickedMethodInfo ResolveLockButtonMethod "computeExpand" o = Gtk.Widget.WidgetComputeExpandMethodInfo ResolveLockButtonMethod "constructChild" o = Gtk.Buildable.BuildableConstructChildMethodInfo ResolveLockButtonMethod "createPangoContext" o = Gtk.Widget.WidgetCreatePangoContextMethodInfo ResolveLockButtonMethod "createPangoLayout" o = Gtk.Widget.WidgetCreatePangoLayoutMethodInfo ResolveLockButtonMethod "customFinished" o = Gtk.Buildable.BuildableCustomFinishedMethodInfo ResolveLockButtonMethod "customTagEnd" o = Gtk.Buildable.BuildableCustomTagEndMethodInfo ResolveLockButtonMethod "customTagStart" o = Gtk.Buildable.BuildableCustomTagStartMethodInfo ResolveLockButtonMethod "destroy" o = Gtk.Widget.WidgetDestroyMethodInfo ResolveLockButtonMethod "destroyed" o = Gtk.Widget.WidgetDestroyedMethodInfo ResolveLockButtonMethod "deviceIsShadowed" o = Gtk.Widget.WidgetDeviceIsShadowedMethodInfo ResolveLockButtonMethod "doSetRelatedAction" o = Gtk.Activatable.ActivatableDoSetRelatedActionMethodInfo ResolveLockButtonMethod "dragBegin" o = Gtk.Widget.WidgetDragBeginMethodInfo ResolveLockButtonMethod "dragBeginWithCoordinates" o = Gtk.Widget.WidgetDragBeginWithCoordinatesMethodInfo ResolveLockButtonMethod "dragCheckThreshold" o = Gtk.Widget.WidgetDragCheckThresholdMethodInfo ResolveLockButtonMethod "dragDestAddImageTargets" o = Gtk.Widget.WidgetDragDestAddImageTargetsMethodInfo ResolveLockButtonMethod "dragDestAddTextTargets" o = Gtk.Widget.WidgetDragDestAddTextTargetsMethodInfo ResolveLockButtonMethod "dragDestAddUriTargets" o = Gtk.Widget.WidgetDragDestAddUriTargetsMethodInfo ResolveLockButtonMethod "dragDestFindTarget" o = Gtk.Widget.WidgetDragDestFindTargetMethodInfo ResolveLockButtonMethod "dragDestGetTargetList" o = Gtk.Widget.WidgetDragDestGetTargetListMethodInfo ResolveLockButtonMethod "dragDestGetTrackMotion" o = Gtk.Widget.WidgetDragDestGetTrackMotionMethodInfo ResolveLockButtonMethod "dragDestSet" o = Gtk.Widget.WidgetDragDestSetMethodInfo ResolveLockButtonMethod "dragDestSetProxy" o = Gtk.Widget.WidgetDragDestSetProxyMethodInfo ResolveLockButtonMethod "dragDestSetTargetList" o = Gtk.Widget.WidgetDragDestSetTargetListMethodInfo ResolveLockButtonMethod "dragDestSetTrackMotion" o = Gtk.Widget.WidgetDragDestSetTrackMotionMethodInfo ResolveLockButtonMethod "dragDestUnset" o = Gtk.Widget.WidgetDragDestUnsetMethodInfo ResolveLockButtonMethod "dragGetData" o = Gtk.Widget.WidgetDragGetDataMethodInfo ResolveLockButtonMethod "dragHighlight" o = Gtk.Widget.WidgetDragHighlightMethodInfo ResolveLockButtonMethod "dragSourceAddImageTargets" o = Gtk.Widget.WidgetDragSourceAddImageTargetsMethodInfo ResolveLockButtonMethod "dragSourceAddTextTargets" o = Gtk.Widget.WidgetDragSourceAddTextTargetsMethodInfo ResolveLockButtonMethod "dragSourceAddUriTargets" o = Gtk.Widget.WidgetDragSourceAddUriTargetsMethodInfo ResolveLockButtonMethod "dragSourceGetTargetList" o = Gtk.Widget.WidgetDragSourceGetTargetListMethodInfo ResolveLockButtonMethod "dragSourceSet" o = Gtk.Widget.WidgetDragSourceSetMethodInfo ResolveLockButtonMethod "dragSourceSetIconGicon" o = Gtk.Widget.WidgetDragSourceSetIconGiconMethodInfo ResolveLockButtonMethod "dragSourceSetIconName" o = Gtk.Widget.WidgetDragSourceSetIconNameMethodInfo ResolveLockButtonMethod "dragSourceSetIconPixbuf" o = Gtk.Widget.WidgetDragSourceSetIconPixbufMethodInfo ResolveLockButtonMethod "dragSourceSetIconStock" o = Gtk.Widget.WidgetDragSourceSetIconStockMethodInfo ResolveLockButtonMethod "dragSourceSetTargetList" o = Gtk.Widget.WidgetDragSourceSetTargetListMethodInfo ResolveLockButtonMethod "dragSourceUnset" o = Gtk.Widget.WidgetDragSourceUnsetMethodInfo ResolveLockButtonMethod "dragUnhighlight" o = Gtk.Widget.WidgetDragUnhighlightMethodInfo ResolveLockButtonMethod "draw" o = Gtk.Widget.WidgetDrawMethodInfo ResolveLockButtonMethod "ensureStyle" o = Gtk.Widget.WidgetEnsureStyleMethodInfo ResolveLockButtonMethod "enter" o = Gtk.Button.ButtonEnterMethodInfo ResolveLockButtonMethod "errorBell" o = Gtk.Widget.WidgetErrorBellMethodInfo ResolveLockButtonMethod "event" o = Gtk.Widget.WidgetEventMethodInfo ResolveLockButtonMethod "forall" o = Gtk.Container.ContainerForallMethodInfo ResolveLockButtonMethod "forceFloating" o = GObject.Object.ObjectForceFloatingMethodInfo ResolveLockButtonMethod "foreach" o = Gtk.Container.ContainerForeachMethodInfo ResolveLockButtonMethod "freezeChildNotify" o = Gtk.Widget.WidgetFreezeChildNotifyMethodInfo ResolveLockButtonMethod "freezeNotify" o = GObject.Object.ObjectFreezeNotifyMethodInfo ResolveLockButtonMethod "getv" o = GObject.Object.ObjectGetvMethodInfo ResolveLockButtonMethod "grabAdd" o = Gtk.Widget.WidgetGrabAddMethodInfo ResolveLockButtonMethod "grabDefault" o = Gtk.Widget.WidgetGrabDefaultMethodInfo ResolveLockButtonMethod "grabFocus" o = Gtk.Widget.WidgetGrabFocusMethodInfo ResolveLockButtonMethod "grabRemove" o = Gtk.Widget.WidgetGrabRemoveMethodInfo ResolveLockButtonMethod "hasDefault" o = Gtk.Widget.WidgetHasDefaultMethodInfo ResolveLockButtonMethod "hasFocus" o = Gtk.Widget.WidgetHasFocusMethodInfo ResolveLockButtonMethod "hasGrab" o = Gtk.Widget.WidgetHasGrabMethodInfo ResolveLockButtonMethod "hasRcStyle" o = Gtk.Widget.WidgetHasRcStyleMethodInfo ResolveLockButtonMethod "hasScreen" o = Gtk.Widget.WidgetHasScreenMethodInfo ResolveLockButtonMethod "hasVisibleFocus" o = Gtk.Widget.WidgetHasVisibleFocusMethodInfo ResolveLockButtonMethod "hide" o = Gtk.Widget.WidgetHideMethodInfo ResolveLockButtonMethod "hideOnDelete" o = Gtk.Widget.WidgetHideOnDeleteMethodInfo ResolveLockButtonMethod "inDestruction" o = Gtk.Widget.WidgetInDestructionMethodInfo ResolveLockButtonMethod "initTemplate" o = Gtk.Widget.WidgetInitTemplateMethodInfo ResolveLockButtonMethod "inputShapeCombineRegion" o = Gtk.Widget.WidgetInputShapeCombineRegionMethodInfo ResolveLockButtonMethod "insertActionGroup" o = Gtk.Widget.WidgetInsertActionGroupMethodInfo ResolveLockButtonMethod "intersect" o = Gtk.Widget.WidgetIntersectMethodInfo ResolveLockButtonMethod "isAncestor" o = Gtk.Widget.WidgetIsAncestorMethodInfo ResolveLockButtonMethod "isComposited" o = Gtk.Widget.WidgetIsCompositedMethodInfo ResolveLockButtonMethod "isDrawable" o = Gtk.Widget.WidgetIsDrawableMethodInfo ResolveLockButtonMethod "isFloating" o = GObject.Object.ObjectIsFloatingMethodInfo ResolveLockButtonMethod "isFocus" o = Gtk.Widget.WidgetIsFocusMethodInfo ResolveLockButtonMethod "isSensitive" o = Gtk.Widget.WidgetIsSensitiveMethodInfo ResolveLockButtonMethod "isToplevel" o = Gtk.Widget.WidgetIsToplevelMethodInfo ResolveLockButtonMethod "isVisible" o = Gtk.Widget.WidgetIsVisibleMethodInfo ResolveLockButtonMethod "keynavFailed" o = Gtk.Widget.WidgetKeynavFailedMethodInfo ResolveLockButtonMethod "leave" o = Gtk.Button.ButtonLeaveMethodInfo ResolveLockButtonMethod "listAccelClosures" o = Gtk.Widget.WidgetListAccelClosuresMethodInfo ResolveLockButtonMethod "listActionPrefixes" o = Gtk.Widget.WidgetListActionPrefixesMethodInfo ResolveLockButtonMethod "listMnemonicLabels" o = Gtk.Widget.WidgetListMnemonicLabelsMethodInfo ResolveLockButtonMethod "map" o = Gtk.Widget.WidgetMapMethodInfo ResolveLockButtonMethod "mnemonicActivate" o = Gtk.Widget.WidgetMnemonicActivateMethodInfo ResolveLockButtonMethod "modifyBase" o = Gtk.Widget.WidgetModifyBaseMethodInfo ResolveLockButtonMethod "modifyBg" o = Gtk.Widget.WidgetModifyBgMethodInfo ResolveLockButtonMethod "modifyCursor" o = Gtk.Widget.WidgetModifyCursorMethodInfo ResolveLockButtonMethod "modifyFg" o = Gtk.Widget.WidgetModifyFgMethodInfo ResolveLockButtonMethod "modifyFont" o = Gtk.Widget.WidgetModifyFontMethodInfo ResolveLockButtonMethod "modifyStyle" o = Gtk.Widget.WidgetModifyStyleMethodInfo ResolveLockButtonMethod "modifyText" o = Gtk.Widget.WidgetModifyTextMethodInfo ResolveLockButtonMethod "notify" o = GObject.Object.ObjectNotifyMethodInfo ResolveLockButtonMethod "notifyByPspec" o = GObject.Object.ObjectNotifyByPspecMethodInfo ResolveLockButtonMethod "overrideBackgroundColor" o = Gtk.Widget.WidgetOverrideBackgroundColorMethodInfo ResolveLockButtonMethod "overrideColor" o = Gtk.Widget.WidgetOverrideColorMethodInfo ResolveLockButtonMethod "overrideCursor" o = Gtk.Widget.WidgetOverrideCursorMethodInfo ResolveLockButtonMethod "overrideFont" o = Gtk.Widget.WidgetOverrideFontMethodInfo ResolveLockButtonMethod "overrideSymbolicColor" o = Gtk.Widget.WidgetOverrideSymbolicColorMethodInfo ResolveLockButtonMethod "parserFinished" o = Gtk.Buildable.BuildableParserFinishedMethodInfo ResolveLockButtonMethod "path" o = Gtk.Widget.WidgetPathMethodInfo ResolveLockButtonMethod "pressed" o = Gtk.Button.ButtonPressedMethodInfo ResolveLockButtonMethod "propagateDraw" o = Gtk.Container.ContainerPropagateDrawMethodInfo ResolveLockButtonMethod "queueAllocate" o = Gtk.Widget.WidgetQueueAllocateMethodInfo ResolveLockButtonMethod "queueComputeExpand" o = Gtk.Widget.WidgetQueueComputeExpandMethodInfo ResolveLockButtonMethod "queueDraw" o = Gtk.Widget.WidgetQueueDrawMethodInfo ResolveLockButtonMethod "queueDrawArea" o = Gtk.Widget.WidgetQueueDrawAreaMethodInfo ResolveLockButtonMethod "queueDrawRegion" o = Gtk.Widget.WidgetQueueDrawRegionMethodInfo ResolveLockButtonMethod "queueResize" o = Gtk.Widget.WidgetQueueResizeMethodInfo ResolveLockButtonMethod "queueResizeNoRedraw" o = Gtk.Widget.WidgetQueueResizeNoRedrawMethodInfo ResolveLockButtonMethod "realize" o = Gtk.Widget.WidgetRealizeMethodInfo ResolveLockButtonMethod "ref" o = GObject.Object.ObjectRefMethodInfo ResolveLockButtonMethod "refSink" o = GObject.Object.ObjectRefSinkMethodInfo ResolveLockButtonMethod "regionIntersect" o = Gtk.Widget.WidgetRegionIntersectMethodInfo ResolveLockButtonMethod "registerWindow" o = Gtk.Widget.WidgetRegisterWindowMethodInfo ResolveLockButtonMethod "released" o = Gtk.Button.ButtonReleasedMethodInfo ResolveLockButtonMethod "remove" o = Gtk.Container.ContainerRemoveMethodInfo ResolveLockButtonMethod "removeAccelerator" o = Gtk.Widget.WidgetRemoveAcceleratorMethodInfo ResolveLockButtonMethod "removeMnemonicLabel" o = Gtk.Widget.WidgetRemoveMnemonicLabelMethodInfo ResolveLockButtonMethod "removeTickCallback" o = Gtk.Widget.WidgetRemoveTickCallbackMethodInfo ResolveLockButtonMethod "renderIcon" o = Gtk.Widget.WidgetRenderIconMethodInfo ResolveLockButtonMethod "renderIconPixbuf" o = Gtk.Widget.WidgetRenderIconPixbufMethodInfo ResolveLockButtonMethod "reparent" o = Gtk.Widget.WidgetReparentMethodInfo ResolveLockButtonMethod "resetRcStyles" o = Gtk.Widget.WidgetResetRcStylesMethodInfo ResolveLockButtonMethod "resetStyle" o = Gtk.Widget.WidgetResetStyleMethodInfo ResolveLockButtonMethod "resizeChildren" o = Gtk.Container.ContainerResizeChildrenMethodInfo ResolveLockButtonMethod "runDispose" o = GObject.Object.ObjectRunDisposeMethodInfo ResolveLockButtonMethod "sendExpose" o = Gtk.Widget.WidgetSendExposeMethodInfo ResolveLockButtonMethod "sendFocusChange" o = Gtk.Widget.WidgetSendFocusChangeMethodInfo ResolveLockButtonMethod "shapeCombineRegion" o = Gtk.Widget.WidgetShapeCombineRegionMethodInfo ResolveLockButtonMethod "show" o = Gtk.Widget.WidgetShowMethodInfo ResolveLockButtonMethod "showAll" o = Gtk.Widget.WidgetShowAllMethodInfo ResolveLockButtonMethod "showNow" o = Gtk.Widget.WidgetShowNowMethodInfo ResolveLockButtonMethod "sizeAllocate" o = Gtk.Widget.WidgetSizeAllocateMethodInfo ResolveLockButtonMethod "sizeAllocateWithBaseline" o = Gtk.Widget.WidgetSizeAllocateWithBaselineMethodInfo ResolveLockButtonMethod "sizeRequest" o = Gtk.Widget.WidgetSizeRequestMethodInfo ResolveLockButtonMethod "stealData" o = GObject.Object.ObjectStealDataMethodInfo ResolveLockButtonMethod "stealQdata" o = GObject.Object.ObjectStealQdataMethodInfo ResolveLockButtonMethod "styleAttach" o = Gtk.Widget.WidgetStyleAttachMethodInfo ResolveLockButtonMethod "styleGetProperty" o = Gtk.Widget.WidgetStyleGetPropertyMethodInfo ResolveLockButtonMethod "syncActionProperties" o = Gtk.Activatable.ActivatableSyncActionPropertiesMethodInfo ResolveLockButtonMethod "thawChildNotify" o = Gtk.Widget.WidgetThawChildNotifyMethodInfo ResolveLockButtonMethod "thawNotify" o = GObject.Object.ObjectThawNotifyMethodInfo ResolveLockButtonMethod "translateCoordinates" o = Gtk.Widget.WidgetTranslateCoordinatesMethodInfo ResolveLockButtonMethod "triggerTooltipQuery" o = Gtk.Widget.WidgetTriggerTooltipQueryMethodInfo ResolveLockButtonMethod "unmap" o = Gtk.Widget.WidgetUnmapMethodInfo ResolveLockButtonMethod "unparent" o = Gtk.Widget.WidgetUnparentMethodInfo ResolveLockButtonMethod "unrealize" o = Gtk.Widget.WidgetUnrealizeMethodInfo ResolveLockButtonMethod "unref" o = GObject.Object.ObjectUnrefMethodInfo ResolveLockButtonMethod "unregisterWindow" o = Gtk.Widget.WidgetUnregisterWindowMethodInfo ResolveLockButtonMethod "unsetFocusChain" o = Gtk.Container.ContainerUnsetFocusChainMethodInfo ResolveLockButtonMethod "unsetStateFlags" o = Gtk.Widget.WidgetUnsetStateFlagsMethodInfo ResolveLockButtonMethod "watchClosure" o = GObject.Object.ObjectWatchClosureMethodInfo ResolveLockButtonMethod "getAccessible" o = Gtk.Widget.WidgetGetAccessibleMethodInfo ResolveLockButtonMethod "getActionGroup" o = Gtk.Widget.WidgetGetActionGroupMethodInfo ResolveLockButtonMethod "getActionName" o = Gtk.Actionable.ActionableGetActionNameMethodInfo ResolveLockButtonMethod "getActionTargetValue" o = Gtk.Actionable.ActionableGetActionTargetValueMethodInfo ResolveLockButtonMethod "getAlignment" o = Gtk.Button.ButtonGetAlignmentMethodInfo ResolveLockButtonMethod "getAllocatedBaseline" o = Gtk.Widget.WidgetGetAllocatedBaselineMethodInfo ResolveLockButtonMethod "getAllocatedHeight" o = Gtk.Widget.WidgetGetAllocatedHeightMethodInfo ResolveLockButtonMethod "getAllocatedSize" o = Gtk.Widget.WidgetGetAllocatedSizeMethodInfo ResolveLockButtonMethod "getAllocatedWidth" o = Gtk.Widget.WidgetGetAllocatedWidthMethodInfo ResolveLockButtonMethod "getAllocation" o = Gtk.Widget.WidgetGetAllocationMethodInfo ResolveLockButtonMethod "getAlwaysShowImage" o = Gtk.Button.ButtonGetAlwaysShowImageMethodInfo ResolveLockButtonMethod "getAncestor" o = Gtk.Widget.WidgetGetAncestorMethodInfo ResolveLockButtonMethod "getAppPaintable" o = Gtk.Widget.WidgetGetAppPaintableMethodInfo ResolveLockButtonMethod "getBorderWidth" o = Gtk.Container.ContainerGetBorderWidthMethodInfo ResolveLockButtonMethod "getCanDefault" o = Gtk.Widget.WidgetGetCanDefaultMethodInfo ResolveLockButtonMethod "getCanFocus" o = Gtk.Widget.WidgetGetCanFocusMethodInfo ResolveLockButtonMethod "getChild" o = Gtk.Bin.BinGetChildMethodInfo ResolveLockButtonMethod "getChildRequisition" o = Gtk.Widget.WidgetGetChildRequisitionMethodInfo ResolveLockButtonMethod "getChildVisible" o = Gtk.Widget.WidgetGetChildVisibleMethodInfo ResolveLockButtonMethod "getChildren" o = Gtk.Container.ContainerGetChildrenMethodInfo ResolveLockButtonMethod "getClip" o = Gtk.Widget.WidgetGetClipMethodInfo ResolveLockButtonMethod "getClipboard" o = Gtk.Widget.WidgetGetClipboardMethodInfo ResolveLockButtonMethod "getCompositeName" o = Gtk.Widget.WidgetGetCompositeNameMethodInfo ResolveLockButtonMethod "getData" o = GObject.Object.ObjectGetDataMethodInfo ResolveLockButtonMethod "getDeviceEnabled" o = Gtk.Widget.WidgetGetDeviceEnabledMethodInfo ResolveLockButtonMethod "getDeviceEvents" o = Gtk.Widget.WidgetGetDeviceEventsMethodInfo ResolveLockButtonMethod "getDirection" o = Gtk.Widget.WidgetGetDirectionMethodInfo ResolveLockButtonMethod "getDisplay" o = Gtk.Widget.WidgetGetDisplayMethodInfo ResolveLockButtonMethod "getDoubleBuffered" o = Gtk.Widget.WidgetGetDoubleBufferedMethodInfo ResolveLockButtonMethod "getEventWindow" o = Gtk.Button.ButtonGetEventWindowMethodInfo ResolveLockButtonMethod "getEvents" o = Gtk.Widget.WidgetGetEventsMethodInfo ResolveLockButtonMethod "getFocusChain" o = Gtk.Container.ContainerGetFocusChainMethodInfo ResolveLockButtonMethod "getFocusChild" o = Gtk.Container.ContainerGetFocusChildMethodInfo ResolveLockButtonMethod "getFocusHadjustment" o = Gtk.Container.ContainerGetFocusHadjustmentMethodInfo ResolveLockButtonMethod "getFocusOnClick" o = Gtk.Button.ButtonGetFocusOnClickMethodInfo ResolveLockButtonMethod "getFocusVadjustment" o = Gtk.Container.ContainerGetFocusVadjustmentMethodInfo ResolveLockButtonMethod "getFontMap" o = Gtk.Widget.WidgetGetFontMapMethodInfo ResolveLockButtonMethod "getFontOptions" o = Gtk.Widget.WidgetGetFontOptionsMethodInfo ResolveLockButtonMethod "getFrameClock" o = Gtk.Widget.WidgetGetFrameClockMethodInfo ResolveLockButtonMethod "getHalign" o = Gtk.Widget.WidgetGetHalignMethodInfo ResolveLockButtonMethod "getHasTooltip" o = Gtk.Widget.WidgetGetHasTooltipMethodInfo ResolveLockButtonMethod "getHasWindow" o = Gtk.Widget.WidgetGetHasWindowMethodInfo ResolveLockButtonMethod "getHexpand" o = Gtk.Widget.WidgetGetHexpandMethodInfo ResolveLockButtonMethod "getHexpandSet" o = Gtk.Widget.WidgetGetHexpandSetMethodInfo ResolveLockButtonMethod "getImage" o = Gtk.Button.ButtonGetImageMethodInfo ResolveLockButtonMethod "getImagePosition" o = Gtk.Button.ButtonGetImagePositionMethodInfo ResolveLockButtonMethod "getInternalChild" o = Gtk.Buildable.BuildableGetInternalChildMethodInfo ResolveLockButtonMethod "getLabel" o = Gtk.Button.ButtonGetLabelMethodInfo ResolveLockButtonMethod "getMapped" o = Gtk.Widget.WidgetGetMappedMethodInfo ResolveLockButtonMethod "getMarginBottom" o = Gtk.Widget.WidgetGetMarginBottomMethodInfo ResolveLockButtonMethod "getMarginEnd" o = Gtk.Widget.WidgetGetMarginEndMethodInfo ResolveLockButtonMethod "getMarginLeft" o = Gtk.Widget.WidgetGetMarginLeftMethodInfo ResolveLockButtonMethod "getMarginRight" o = Gtk.Widget.WidgetGetMarginRightMethodInfo ResolveLockButtonMethod "getMarginStart" o = Gtk.Widget.WidgetGetMarginStartMethodInfo ResolveLockButtonMethod "getMarginTop" o = Gtk.Widget.WidgetGetMarginTopMethodInfo ResolveLockButtonMethod "getModifierMask" o = Gtk.Widget.WidgetGetModifierMaskMethodInfo ResolveLockButtonMethod "getModifierStyle" o = Gtk.Widget.WidgetGetModifierStyleMethodInfo ResolveLockButtonMethod "getName" o = Gtk.Widget.WidgetGetNameMethodInfo ResolveLockButtonMethod "getNoShowAll" o = Gtk.Widget.WidgetGetNoShowAllMethodInfo ResolveLockButtonMethod "getOpacity" o = Gtk.Widget.WidgetGetOpacityMethodInfo ResolveLockButtonMethod "getPangoContext" o = Gtk.Widget.WidgetGetPangoContextMethodInfo ResolveLockButtonMethod "getParent" o = Gtk.Widget.WidgetGetParentMethodInfo ResolveLockButtonMethod "getParentWindow" o = Gtk.Widget.WidgetGetParentWindowMethodInfo ResolveLockButtonMethod "getPath" o = Gtk.Widget.WidgetGetPathMethodInfo ResolveLockButtonMethod "getPathForChild" o = Gtk.Container.ContainerGetPathForChildMethodInfo ResolveLockButtonMethod "getPermission" o = LockButtonGetPermissionMethodInfo ResolveLockButtonMethod "getPointer" o = Gtk.Widget.WidgetGetPointerMethodInfo ResolveLockButtonMethod "getPreferredHeight" o = Gtk.Widget.WidgetGetPreferredHeightMethodInfo ResolveLockButtonMethod "getPreferredHeightAndBaselineForWidth" o = Gtk.Widget.WidgetGetPreferredHeightAndBaselineForWidthMethodInfo ResolveLockButtonMethod "getPreferredHeightForWidth" o = Gtk.Widget.WidgetGetPreferredHeightForWidthMethodInfo ResolveLockButtonMethod "getPreferredSize" o = Gtk.Widget.WidgetGetPreferredSizeMethodInfo ResolveLockButtonMethod "getPreferredWidth" o = Gtk.Widget.WidgetGetPreferredWidthMethodInfo ResolveLockButtonMethod "getPreferredWidthForHeight" o = Gtk.Widget.WidgetGetPreferredWidthForHeightMethodInfo ResolveLockButtonMethod "getProperty" o = GObject.Object.ObjectGetPropertyMethodInfo ResolveLockButtonMethod "getQdata" o = GObject.Object.ObjectGetQdataMethodInfo ResolveLockButtonMethod "getRealized" o = Gtk.Widget.WidgetGetRealizedMethodInfo ResolveLockButtonMethod "getReceivesDefault" o = Gtk.Widget.WidgetGetReceivesDefaultMethodInfo ResolveLockButtonMethod "getRelatedAction" o = Gtk.Activatable.ActivatableGetRelatedActionMethodInfo ResolveLockButtonMethod "getRelief" o = Gtk.Button.ButtonGetReliefMethodInfo ResolveLockButtonMethod "getRequestMode" o = Gtk.Widget.WidgetGetRequestModeMethodInfo ResolveLockButtonMethod "getRequisition" o = Gtk.Widget.WidgetGetRequisitionMethodInfo ResolveLockButtonMethod "getResizeMode" o = Gtk.Container.ContainerGetResizeModeMethodInfo ResolveLockButtonMethod "getRootWindow" o = Gtk.Widget.WidgetGetRootWindowMethodInfo ResolveLockButtonMethod "getScaleFactor" o = Gtk.Widget.WidgetGetScaleFactorMethodInfo ResolveLockButtonMethod "getScreen" o = Gtk.Widget.WidgetGetScreenMethodInfo ResolveLockButtonMethod "getSensitive" o = Gtk.Widget.WidgetGetSensitiveMethodInfo ResolveLockButtonMethod "getSettings" o = Gtk.Widget.WidgetGetSettingsMethodInfo ResolveLockButtonMethod "getSizeRequest" o = Gtk.Widget.WidgetGetSizeRequestMethodInfo ResolveLockButtonMethod "getState" o = Gtk.Widget.WidgetGetStateMethodInfo ResolveLockButtonMethod "getStateFlags" o = Gtk.Widget.WidgetGetStateFlagsMethodInfo ResolveLockButtonMethod "getStyle" o = Gtk.Widget.WidgetGetStyleMethodInfo ResolveLockButtonMethod "getStyleContext" o = Gtk.Widget.WidgetGetStyleContextMethodInfo ResolveLockButtonMethod "getSupportMultidevice" o = Gtk.Widget.WidgetGetSupportMultideviceMethodInfo ResolveLockButtonMethod "getTemplateChild" o = Gtk.Widget.WidgetGetTemplateChildMethodInfo ResolveLockButtonMethod "getTooltipMarkup" o = Gtk.Widget.WidgetGetTooltipMarkupMethodInfo ResolveLockButtonMethod "getTooltipText" o = Gtk.Widget.WidgetGetTooltipTextMethodInfo ResolveLockButtonMethod "getTooltipWindow" o = Gtk.Widget.WidgetGetTooltipWindowMethodInfo ResolveLockButtonMethod "getToplevel" o = Gtk.Widget.WidgetGetToplevelMethodInfo ResolveLockButtonMethod "getUseActionAppearance" o = Gtk.Activatable.ActivatableGetUseActionAppearanceMethodInfo ResolveLockButtonMethod "getUseStock" o = Gtk.Button.ButtonGetUseStockMethodInfo ResolveLockButtonMethod "getUseUnderline" o = Gtk.Button.ButtonGetUseUnderlineMethodInfo ResolveLockButtonMethod "getValign" o = Gtk.Widget.WidgetGetValignMethodInfo ResolveLockButtonMethod "getValignWithBaseline" o = Gtk.Widget.WidgetGetValignWithBaselineMethodInfo ResolveLockButtonMethod "getVexpand" o = Gtk.Widget.WidgetGetVexpandMethodInfo ResolveLockButtonMethod "getVexpandSet" o = Gtk.Widget.WidgetGetVexpandSetMethodInfo ResolveLockButtonMethod "getVisible" o = Gtk.Widget.WidgetGetVisibleMethodInfo ResolveLockButtonMethod "getVisual" o = Gtk.Widget.WidgetGetVisualMethodInfo ResolveLockButtonMethod "getWindow" o = Gtk.Widget.WidgetGetWindowMethodInfo ResolveLockButtonMethod "setAccelPath" o = Gtk.Widget.WidgetSetAccelPathMethodInfo ResolveLockButtonMethod "setActionName" o = Gtk.Actionable.ActionableSetActionNameMethodInfo ResolveLockButtonMethod "setActionTargetValue" o = Gtk.Actionable.ActionableSetActionTargetValueMethodInfo ResolveLockButtonMethod "setAlignment" o = Gtk.Button.ButtonSetAlignmentMethodInfo ResolveLockButtonMethod "setAllocation" o = Gtk.Widget.WidgetSetAllocationMethodInfo ResolveLockButtonMethod "setAlwaysShowImage" o = Gtk.Button.ButtonSetAlwaysShowImageMethodInfo ResolveLockButtonMethod "setAppPaintable" o = Gtk.Widget.WidgetSetAppPaintableMethodInfo ResolveLockButtonMethod "setBorderWidth" o = Gtk.Container.ContainerSetBorderWidthMethodInfo ResolveLockButtonMethod "setBuildableProperty" o = Gtk.Buildable.BuildableSetBuildablePropertyMethodInfo ResolveLockButtonMethod "setCanDefault" o = Gtk.Widget.WidgetSetCanDefaultMethodInfo ResolveLockButtonMethod "setCanFocus" o = Gtk.Widget.WidgetSetCanFocusMethodInfo ResolveLockButtonMethod "setChildVisible" o = Gtk.Widget.WidgetSetChildVisibleMethodInfo ResolveLockButtonMethod "setClip" o = Gtk.Widget.WidgetSetClipMethodInfo ResolveLockButtonMethod "setCompositeName" o = Gtk.Widget.WidgetSetCompositeNameMethodInfo ResolveLockButtonMethod "setData" o = GObject.Object.ObjectSetDataMethodInfo ResolveLockButtonMethod "setDetailedActionName" o = Gtk.Actionable.ActionableSetDetailedActionNameMethodInfo ResolveLockButtonMethod "setDeviceEnabled" o = Gtk.Widget.WidgetSetDeviceEnabledMethodInfo ResolveLockButtonMethod "setDeviceEvents" o = Gtk.Widget.WidgetSetDeviceEventsMethodInfo ResolveLockButtonMethod "setDirection" o = Gtk.Widget.WidgetSetDirectionMethodInfo ResolveLockButtonMethod "setDoubleBuffered" o = Gtk.Widget.WidgetSetDoubleBufferedMethodInfo ResolveLockButtonMethod "setEvents" o = Gtk.Widget.WidgetSetEventsMethodInfo ResolveLockButtonMethod "setFocusChain" o = Gtk.Container.ContainerSetFocusChainMethodInfo ResolveLockButtonMethod "setFocusChild" o = Gtk.Container.ContainerSetFocusChildMethodInfo ResolveLockButtonMethod "setFocusHadjustment" o = Gtk.Container.ContainerSetFocusHadjustmentMethodInfo ResolveLockButtonMethod "setFocusOnClick" o = Gtk.Button.ButtonSetFocusOnClickMethodInfo ResolveLockButtonMethod "setFocusVadjustment" o = Gtk.Container.ContainerSetFocusVadjustmentMethodInfo ResolveLockButtonMethod "setFontMap" o = Gtk.Widget.WidgetSetFontMapMethodInfo ResolveLockButtonMethod "setFontOptions" o = Gtk.Widget.WidgetSetFontOptionsMethodInfo ResolveLockButtonMethod "setHalign" o = Gtk.Widget.WidgetSetHalignMethodInfo ResolveLockButtonMethod "setHasTooltip" o = Gtk.Widget.WidgetSetHasTooltipMethodInfo ResolveLockButtonMethod "setHasWindow" o = Gtk.Widget.WidgetSetHasWindowMethodInfo ResolveLockButtonMethod "setHexpand" o = Gtk.Widget.WidgetSetHexpandMethodInfo ResolveLockButtonMethod "setHexpandSet" o = Gtk.Widget.WidgetSetHexpandSetMethodInfo ResolveLockButtonMethod "setImage" o = Gtk.Button.ButtonSetImageMethodInfo ResolveLockButtonMethod "setImagePosition" o = Gtk.Button.ButtonSetImagePositionMethodInfo ResolveLockButtonMethod "setLabel" o = Gtk.Button.ButtonSetLabelMethodInfo ResolveLockButtonMethod "setMapped" o = Gtk.Widget.WidgetSetMappedMethodInfo ResolveLockButtonMethod "setMarginBottom" o = Gtk.Widget.WidgetSetMarginBottomMethodInfo ResolveLockButtonMethod "setMarginEnd" o = Gtk.Widget.WidgetSetMarginEndMethodInfo ResolveLockButtonMethod "setMarginLeft" o = Gtk.Widget.WidgetSetMarginLeftMethodInfo ResolveLockButtonMethod "setMarginRight" o = Gtk.Widget.WidgetSetMarginRightMethodInfo ResolveLockButtonMethod "setMarginStart" o = Gtk.Widget.WidgetSetMarginStartMethodInfo ResolveLockButtonMethod "setMarginTop" o = Gtk.Widget.WidgetSetMarginTopMethodInfo ResolveLockButtonMethod "setName" o = Gtk.Widget.WidgetSetNameMethodInfo ResolveLockButtonMethod "setNoShowAll" o = Gtk.Widget.WidgetSetNoShowAllMethodInfo ResolveLockButtonMethod "setOpacity" o = Gtk.Widget.WidgetSetOpacityMethodInfo ResolveLockButtonMethod "setParent" o = Gtk.Widget.WidgetSetParentMethodInfo ResolveLockButtonMethod "setParentWindow" o = Gtk.Widget.WidgetSetParentWindowMethodInfo ResolveLockButtonMethod "setPermission" o = LockButtonSetPermissionMethodInfo ResolveLockButtonMethod "setProperty" o = GObject.Object.ObjectSetPropertyMethodInfo ResolveLockButtonMethod "setRealized" o = Gtk.Widget.WidgetSetRealizedMethodInfo ResolveLockButtonMethod "setReallocateRedraws" o = Gtk.Container.ContainerSetReallocateRedrawsMethodInfo ResolveLockButtonMethod "setReceivesDefault" o = Gtk.Widget.WidgetSetReceivesDefaultMethodInfo ResolveLockButtonMethod "setRedrawOnAllocate" o = Gtk.Widget.WidgetSetRedrawOnAllocateMethodInfo ResolveLockButtonMethod "setRelatedAction" o = Gtk.Activatable.ActivatableSetRelatedActionMethodInfo ResolveLockButtonMethod "setRelief" o = Gtk.Button.ButtonSetReliefMethodInfo ResolveLockButtonMethod "setResizeMode" o = Gtk.Container.ContainerSetResizeModeMethodInfo ResolveLockButtonMethod "setSensitive" o = Gtk.Widget.WidgetSetSensitiveMethodInfo ResolveLockButtonMethod "setSizeRequest" o = Gtk.Widget.WidgetSetSizeRequestMethodInfo ResolveLockButtonMethod "setState" o = Gtk.Widget.WidgetSetStateMethodInfo ResolveLockButtonMethod "setStateFlags" o = Gtk.Widget.WidgetSetStateFlagsMethodInfo ResolveLockButtonMethod "setStyle" o = Gtk.Widget.WidgetSetStyleMethodInfo ResolveLockButtonMethod "setSupportMultidevice" o = Gtk.Widget.WidgetSetSupportMultideviceMethodInfo ResolveLockButtonMethod "setTooltipMarkup" o = Gtk.Widget.WidgetSetTooltipMarkupMethodInfo ResolveLockButtonMethod "setTooltipText" o = Gtk.Widget.WidgetSetTooltipTextMethodInfo ResolveLockButtonMethod "setTooltipWindow" o = Gtk.Widget.WidgetSetTooltipWindowMethodInfo ResolveLockButtonMethod "setUseActionAppearance" o = Gtk.Activatable.ActivatableSetUseActionAppearanceMethodInfo ResolveLockButtonMethod "setUseStock" o = Gtk.Button.ButtonSetUseStockMethodInfo ResolveLockButtonMethod "setUseUnderline" o = Gtk.Button.ButtonSetUseUnderlineMethodInfo ResolveLockButtonMethod "setValign" o = Gtk.Widget.WidgetSetValignMethodInfo ResolveLockButtonMethod "setVexpand" o = Gtk.Widget.WidgetSetVexpandMethodInfo ResolveLockButtonMethod "setVexpandSet" o = Gtk.Widget.WidgetSetVexpandSetMethodInfo ResolveLockButtonMethod "setVisible" o = Gtk.Widget.WidgetSetVisibleMethodInfo ResolveLockButtonMethod "setVisual" o = Gtk.Widget.WidgetSetVisualMethodInfo ResolveLockButtonMethod "setWindow" o = Gtk.Widget.WidgetSetWindowMethodInfo ResolveLockButtonMethod l o = O.MethodResolutionFailed l o instance (info ~ ResolveLockButtonMethod t LockButton, O.MethodInfo info LockButton p) => OL.IsLabel t (LockButton -> p) where #if MIN_VERSION_base(4,10,0) fromLabel = O.overloadedMethod (O.MethodProxy :: O.MethodProxy info) #else fromLabel _ = O.overloadedMethod (O.MethodProxy :: O.MethodProxy info) #endif #endif -- VVV Prop "permission" -- Type: TInterface (Name {namespace = "Gio", name = "Permission"}) -- Flags: [PropertyReadable,PropertyWritable] -- Nullable: (Just False,Just True) {- | Get the value of the “@permission@” property. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.get' lockButton #permission @ -} getLockButtonPermission :: (MonadIO m, IsLockButton o) => o -> m Gio.Permission.Permission getLockButtonPermission obj = liftIO $ checkUnexpectedNothing "getLockButtonPermission" $ B.Properties.getObjectPropertyObject obj "permission" Gio.Permission.Permission {- | Set the value of the “@permission@” property. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.set' lockButton [ #permission 'Data.GI.Base.Attributes.:=' value ] @ -} setLockButtonPermission :: (MonadIO m, IsLockButton o, Gio.Permission.IsPermission a) => o -> a -> m () setLockButtonPermission obj val = liftIO $ B.Properties.setObjectPropertyObject obj "permission" (Just val) {- | Construct a `GValueConstruct` with valid value for the “@permission@” property. This is rarely needed directly, but it is used by `Data.GI.Base.Constructible.new`. -} constructLockButtonPermission :: (IsLockButton o, Gio.Permission.IsPermission a) => a -> IO (GValueConstruct o) constructLockButtonPermission val = B.Properties.constructObjectPropertyObject "permission" (Just val) {- | Set the value of the “@permission@” property to `Nothing`. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.clear' #permission @ -} clearLockButtonPermission :: (MonadIO m, IsLockButton o) => o -> m () clearLockButtonPermission obj = liftIO $ B.Properties.setObjectPropertyObject obj "permission" (Nothing :: Maybe Gio.Permission.Permission) #if ENABLE_OVERLOADING data LockButtonPermissionPropertyInfo instance AttrInfo LockButtonPermissionPropertyInfo where type AttrAllowedOps LockButtonPermissionPropertyInfo = '[ 'AttrSet, 'AttrConstruct, 'AttrGet, 'AttrClear] type AttrSetTypeConstraint LockButtonPermissionPropertyInfo = Gio.Permission.IsPermission type AttrBaseTypeConstraint LockButtonPermissionPropertyInfo = IsLockButton type AttrGetType LockButtonPermissionPropertyInfo = Gio.Permission.Permission type AttrLabel LockButtonPermissionPropertyInfo = "permission" type AttrOrigin LockButtonPermissionPropertyInfo = LockButton attrGet _ = getLockButtonPermission attrSet _ = setLockButtonPermission attrConstruct _ = constructLockButtonPermission attrClear _ = clearLockButtonPermission #endif -- VVV Prop "text-lock" -- Type: TBasicType TUTF8 -- Flags: [PropertyReadable,PropertyWritable,PropertyConstruct] -- Nullable: (Nothing,Nothing) {- | Get the value of the “@text-lock@” property. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.get' lockButton #textLock @ -} getLockButtonTextLock :: (MonadIO m, IsLockButton o) => o -> m (Maybe T.Text) getLockButtonTextLock obj = liftIO $ B.Properties.getObjectPropertyString obj "text-lock" {- | Set the value of the “@text-lock@” property. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.set' lockButton [ #textLock 'Data.GI.Base.Attributes.:=' value ] @ -} setLockButtonTextLock :: (MonadIO m, IsLockButton o) => o -> T.Text -> m () setLockButtonTextLock obj val = liftIO $ B.Properties.setObjectPropertyString obj "text-lock" (Just val) {- | Construct a `GValueConstruct` with valid value for the “@text-lock@” property. This is rarely needed directly, but it is used by `Data.GI.Base.Constructible.new`. -} constructLockButtonTextLock :: (IsLockButton o) => T.Text -> IO (GValueConstruct o) constructLockButtonTextLock val = B.Properties.constructObjectPropertyString "text-lock" (Just val) {- | Set the value of the “@text-lock@” property to `Nothing`. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.clear' #textLock @ -} clearLockButtonTextLock :: (MonadIO m, IsLockButton o) => o -> m () clearLockButtonTextLock obj = liftIO $ B.Properties.setObjectPropertyString obj "text-lock" (Nothing :: Maybe T.Text) #if ENABLE_OVERLOADING data LockButtonTextLockPropertyInfo instance AttrInfo LockButtonTextLockPropertyInfo where type AttrAllowedOps LockButtonTextLockPropertyInfo = '[ 'AttrSet, 'AttrConstruct, 'AttrGet, 'AttrClear] type AttrSetTypeConstraint LockButtonTextLockPropertyInfo = (~) T.Text type AttrBaseTypeConstraint LockButtonTextLockPropertyInfo = IsLockButton type AttrGetType LockButtonTextLockPropertyInfo = (Maybe T.Text) type AttrLabel LockButtonTextLockPropertyInfo = "text-lock" type AttrOrigin LockButtonTextLockPropertyInfo = LockButton attrGet _ = getLockButtonTextLock attrSet _ = setLockButtonTextLock attrConstruct _ = constructLockButtonTextLock attrClear _ = clearLockButtonTextLock #endif -- VVV Prop "text-unlock" -- Type: TBasicType TUTF8 -- Flags: [PropertyReadable,PropertyWritable,PropertyConstruct] -- Nullable: (Nothing,Nothing) {- | Get the value of the “@text-unlock@” property. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.get' lockButton #textUnlock @ -} getLockButtonTextUnlock :: (MonadIO m, IsLockButton o) => o -> m (Maybe T.Text) getLockButtonTextUnlock obj = liftIO $ B.Properties.getObjectPropertyString obj "text-unlock" {- | Set the value of the “@text-unlock@” property. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.set' lockButton [ #textUnlock 'Data.GI.Base.Attributes.:=' value ] @ -} setLockButtonTextUnlock :: (MonadIO m, IsLockButton o) => o -> T.Text -> m () setLockButtonTextUnlock obj val = liftIO $ B.Properties.setObjectPropertyString obj "text-unlock" (Just val) {- | Construct a `GValueConstruct` with valid value for the “@text-unlock@” property. This is rarely needed directly, but it is used by `Data.GI.Base.Constructible.new`. -} constructLockButtonTextUnlock :: (IsLockButton o) => T.Text -> IO (GValueConstruct o) constructLockButtonTextUnlock val = B.Properties.constructObjectPropertyString "text-unlock" (Just val) {- | Set the value of the “@text-unlock@” property to `Nothing`. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.clear' #textUnlock @ -} clearLockButtonTextUnlock :: (MonadIO m, IsLockButton o) => o -> m () clearLockButtonTextUnlock obj = liftIO $ B.Properties.setObjectPropertyString obj "text-unlock" (Nothing :: Maybe T.Text) #if ENABLE_OVERLOADING data LockButtonTextUnlockPropertyInfo instance AttrInfo LockButtonTextUnlockPropertyInfo where type AttrAllowedOps LockButtonTextUnlockPropertyInfo = '[ 'AttrSet, 'AttrConstruct, 'AttrGet, 'AttrClear] type AttrSetTypeConstraint LockButtonTextUnlockPropertyInfo = (~) T.Text type AttrBaseTypeConstraint LockButtonTextUnlockPropertyInfo = IsLockButton type AttrGetType LockButtonTextUnlockPropertyInfo = (Maybe T.Text) type AttrLabel LockButtonTextUnlockPropertyInfo = "text-unlock" type AttrOrigin LockButtonTextUnlockPropertyInfo = LockButton attrGet _ = getLockButtonTextUnlock attrSet _ = setLockButtonTextUnlock attrConstruct _ = constructLockButtonTextUnlock attrClear _ = clearLockButtonTextUnlock #endif -- VVV Prop "tooltip-lock" -- Type: TBasicType TUTF8 -- Flags: [PropertyReadable,PropertyWritable,PropertyConstruct] -- Nullable: (Nothing,Nothing) {- | Get the value of the “@tooltip-lock@” property. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.get' lockButton #tooltipLock @ -} getLockButtonTooltipLock :: (MonadIO m, IsLockButton o) => o -> m (Maybe T.Text) getLockButtonTooltipLock obj = liftIO $ B.Properties.getObjectPropertyString obj "tooltip-lock" {- | Set the value of the “@tooltip-lock@” property. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.set' lockButton [ #tooltipLock 'Data.GI.Base.Attributes.:=' value ] @ -} setLockButtonTooltipLock :: (MonadIO m, IsLockButton o) => o -> T.Text -> m () setLockButtonTooltipLock obj val = liftIO $ B.Properties.setObjectPropertyString obj "tooltip-lock" (Just val) {- | Construct a `GValueConstruct` with valid value for the “@tooltip-lock@” property. This is rarely needed directly, but it is used by `Data.GI.Base.Constructible.new`. -} constructLockButtonTooltipLock :: (IsLockButton o) => T.Text -> IO (GValueConstruct o) constructLockButtonTooltipLock val = B.Properties.constructObjectPropertyString "tooltip-lock" (Just val) {- | Set the value of the “@tooltip-lock@” property to `Nothing`. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.clear' #tooltipLock @ -} clearLockButtonTooltipLock :: (MonadIO m, IsLockButton o) => o -> m () clearLockButtonTooltipLock obj = liftIO $ B.Properties.setObjectPropertyString obj "tooltip-lock" (Nothing :: Maybe T.Text) #if ENABLE_OVERLOADING data LockButtonTooltipLockPropertyInfo instance AttrInfo LockButtonTooltipLockPropertyInfo where type AttrAllowedOps LockButtonTooltipLockPropertyInfo = '[ 'AttrSet, 'AttrConstruct, 'AttrGet, 'AttrClear] type AttrSetTypeConstraint LockButtonTooltipLockPropertyInfo = (~) T.Text type AttrBaseTypeConstraint LockButtonTooltipLockPropertyInfo = IsLockButton type AttrGetType LockButtonTooltipLockPropertyInfo = (Maybe T.Text) type AttrLabel LockButtonTooltipLockPropertyInfo = "tooltip-lock" type AttrOrigin LockButtonTooltipLockPropertyInfo = LockButton attrGet _ = getLockButtonTooltipLock attrSet _ = setLockButtonTooltipLock attrConstruct _ = constructLockButtonTooltipLock attrClear _ = clearLockButtonTooltipLock #endif -- VVV Prop "tooltip-not-authorized" -- Type: TBasicType TUTF8 -- Flags: [PropertyReadable,PropertyWritable,PropertyConstruct] -- Nullable: (Nothing,Nothing) {- | Get the value of the “@tooltip-not-authorized@” property. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.get' lockButton #tooltipNotAuthorized @ -} getLockButtonTooltipNotAuthorized :: (MonadIO m, IsLockButton o) => o -> m (Maybe T.Text) getLockButtonTooltipNotAuthorized obj = liftIO $ B.Properties.getObjectPropertyString obj "tooltip-not-authorized" {- | Set the value of the “@tooltip-not-authorized@” property. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.set' lockButton [ #tooltipNotAuthorized 'Data.GI.Base.Attributes.:=' value ] @ -} setLockButtonTooltipNotAuthorized :: (MonadIO m, IsLockButton o) => o -> T.Text -> m () setLockButtonTooltipNotAuthorized obj val = liftIO $ B.Properties.setObjectPropertyString obj "tooltip-not-authorized" (Just val) {- | Construct a `GValueConstruct` with valid value for the “@tooltip-not-authorized@” property. This is rarely needed directly, but it is used by `Data.GI.Base.Constructible.new`. -} constructLockButtonTooltipNotAuthorized :: (IsLockButton o) => T.Text -> IO (GValueConstruct o) constructLockButtonTooltipNotAuthorized val = B.Properties.constructObjectPropertyString "tooltip-not-authorized" (Just val) {- | Set the value of the “@tooltip-not-authorized@” property to `Nothing`. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.clear' #tooltipNotAuthorized @ -} clearLockButtonTooltipNotAuthorized :: (MonadIO m, IsLockButton o) => o -> m () clearLockButtonTooltipNotAuthorized obj = liftIO $ B.Properties.setObjectPropertyString obj "tooltip-not-authorized" (Nothing :: Maybe T.Text) #if ENABLE_OVERLOADING data LockButtonTooltipNotAuthorizedPropertyInfo instance AttrInfo LockButtonTooltipNotAuthorizedPropertyInfo where type AttrAllowedOps LockButtonTooltipNotAuthorizedPropertyInfo = '[ 'AttrSet, 'AttrConstruct, 'AttrGet, 'AttrClear] type AttrSetTypeConstraint LockButtonTooltipNotAuthorizedPropertyInfo = (~) T.Text type AttrBaseTypeConstraint LockButtonTooltipNotAuthorizedPropertyInfo = IsLockButton type AttrGetType LockButtonTooltipNotAuthorizedPropertyInfo = (Maybe T.Text) type AttrLabel LockButtonTooltipNotAuthorizedPropertyInfo = "tooltip-not-authorized" type AttrOrigin LockButtonTooltipNotAuthorizedPropertyInfo = LockButton attrGet _ = getLockButtonTooltipNotAuthorized attrSet _ = setLockButtonTooltipNotAuthorized attrConstruct _ = constructLockButtonTooltipNotAuthorized attrClear _ = clearLockButtonTooltipNotAuthorized #endif -- VVV Prop "tooltip-unlock" -- Type: TBasicType TUTF8 -- Flags: [PropertyReadable,PropertyWritable,PropertyConstruct] -- Nullable: (Nothing,Nothing) {- | Get the value of the “@tooltip-unlock@” property. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.get' lockButton #tooltipUnlock @ -} getLockButtonTooltipUnlock :: (MonadIO m, IsLockButton o) => o -> m (Maybe T.Text) getLockButtonTooltipUnlock obj = liftIO $ B.Properties.getObjectPropertyString obj "tooltip-unlock" {- | Set the value of the “@tooltip-unlock@” property. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.set' lockButton [ #tooltipUnlock 'Data.GI.Base.Attributes.:=' value ] @ -} setLockButtonTooltipUnlock :: (MonadIO m, IsLockButton o) => o -> T.Text -> m () setLockButtonTooltipUnlock obj val = liftIO $ B.Properties.setObjectPropertyString obj "tooltip-unlock" (Just val) {- | Construct a `GValueConstruct` with valid value for the “@tooltip-unlock@” property. This is rarely needed directly, but it is used by `Data.GI.Base.Constructible.new`. -} constructLockButtonTooltipUnlock :: (IsLockButton o) => T.Text -> IO (GValueConstruct o) constructLockButtonTooltipUnlock val = B.Properties.constructObjectPropertyString "tooltip-unlock" (Just val) {- | Set the value of the “@tooltip-unlock@” property to `Nothing`. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.clear' #tooltipUnlock @ -} clearLockButtonTooltipUnlock :: (MonadIO m, IsLockButton o) => o -> m () clearLockButtonTooltipUnlock obj = liftIO $ B.Properties.setObjectPropertyString obj "tooltip-unlock" (Nothing :: Maybe T.Text) #if ENABLE_OVERLOADING data LockButtonTooltipUnlockPropertyInfo instance AttrInfo LockButtonTooltipUnlockPropertyInfo where type AttrAllowedOps LockButtonTooltipUnlockPropertyInfo = '[ 'AttrSet, 'AttrConstruct, 'AttrGet, 'AttrClear] type AttrSetTypeConstraint LockButtonTooltipUnlockPropertyInfo = (~) T.Text type AttrBaseTypeConstraint LockButtonTooltipUnlockPropertyInfo = IsLockButton type AttrGetType LockButtonTooltipUnlockPropertyInfo = (Maybe T.Text) type AttrLabel LockButtonTooltipUnlockPropertyInfo = "tooltip-unlock" type AttrOrigin LockButtonTooltipUnlockPropertyInfo = LockButton attrGet _ = getLockButtonTooltipUnlock attrSet _ = setLockButtonTooltipUnlock attrConstruct _ = constructLockButtonTooltipUnlock attrClear _ = clearLockButtonTooltipUnlock #endif #if ENABLE_OVERLOADING instance O.HasAttributeList LockButton type instance O.AttributeList LockButton = LockButtonAttributeList type LockButtonAttributeList = ('[ '("actionName", Gtk.Actionable.ActionableActionNamePropertyInfo), '("actionTarget", Gtk.Actionable.ActionableActionTargetPropertyInfo), '("alwaysShowImage", Gtk.Button.ButtonAlwaysShowImagePropertyInfo), '("appPaintable", Gtk.Widget.WidgetAppPaintablePropertyInfo), '("borderWidth", Gtk.Container.ContainerBorderWidthPropertyInfo), '("canDefault", Gtk.Widget.WidgetCanDefaultPropertyInfo), '("canFocus", Gtk.Widget.WidgetCanFocusPropertyInfo), '("child", Gtk.Container.ContainerChildPropertyInfo), '("compositeChild", Gtk.Widget.WidgetCompositeChildPropertyInfo), '("doubleBuffered", Gtk.Widget.WidgetDoubleBufferedPropertyInfo), '("events", Gtk.Widget.WidgetEventsPropertyInfo), '("expand", Gtk.Widget.WidgetExpandPropertyInfo), '("focusOnClick", Gtk.Widget.WidgetFocusOnClickPropertyInfo), '("halign", Gtk.Widget.WidgetHalignPropertyInfo), '("hasDefault", Gtk.Widget.WidgetHasDefaultPropertyInfo), '("hasFocus", Gtk.Widget.WidgetHasFocusPropertyInfo), '("hasTooltip", Gtk.Widget.WidgetHasTooltipPropertyInfo), '("heightRequest", Gtk.Widget.WidgetHeightRequestPropertyInfo), '("hexpand", Gtk.Widget.WidgetHexpandPropertyInfo), '("hexpandSet", Gtk.Widget.WidgetHexpandSetPropertyInfo), '("image", Gtk.Button.ButtonImagePropertyInfo), '("imagePosition", Gtk.Button.ButtonImagePositionPropertyInfo), '("isFocus", Gtk.Widget.WidgetIsFocusPropertyInfo), '("label", Gtk.Button.ButtonLabelPropertyInfo), '("margin", Gtk.Widget.WidgetMarginPropertyInfo), '("marginBottom", Gtk.Widget.WidgetMarginBottomPropertyInfo), '("marginEnd", Gtk.Widget.WidgetMarginEndPropertyInfo), '("marginLeft", Gtk.Widget.WidgetMarginLeftPropertyInfo), '("marginRight", Gtk.Widget.WidgetMarginRightPropertyInfo), '("marginStart", Gtk.Widget.WidgetMarginStartPropertyInfo), '("marginTop", Gtk.Widget.WidgetMarginTopPropertyInfo), '("name", Gtk.Widget.WidgetNamePropertyInfo), '("noShowAll", Gtk.Widget.WidgetNoShowAllPropertyInfo), '("opacity", Gtk.Widget.WidgetOpacityPropertyInfo), '("parent", Gtk.Widget.WidgetParentPropertyInfo), '("permission", LockButtonPermissionPropertyInfo), '("receivesDefault", Gtk.Widget.WidgetReceivesDefaultPropertyInfo), '("relatedAction", Gtk.Activatable.ActivatableRelatedActionPropertyInfo), '("relief", Gtk.Button.ButtonReliefPropertyInfo), '("resizeMode", Gtk.Container.ContainerResizeModePropertyInfo), '("scaleFactor", Gtk.Widget.WidgetScaleFactorPropertyInfo), '("sensitive", Gtk.Widget.WidgetSensitivePropertyInfo), '("style", Gtk.Widget.WidgetStylePropertyInfo), '("textLock", LockButtonTextLockPropertyInfo), '("textUnlock", LockButtonTextUnlockPropertyInfo), '("tooltipLock", LockButtonTooltipLockPropertyInfo), '("tooltipMarkup", Gtk.Widget.WidgetTooltipMarkupPropertyInfo), '("tooltipNotAuthorized", LockButtonTooltipNotAuthorizedPropertyInfo), '("tooltipText", Gtk.Widget.WidgetTooltipTextPropertyInfo), '("tooltipUnlock", LockButtonTooltipUnlockPropertyInfo), '("useActionAppearance", Gtk.Activatable.ActivatableUseActionAppearancePropertyInfo), '("useStock", Gtk.Button.ButtonUseStockPropertyInfo), '("useUnderline", Gtk.Button.ButtonUseUnderlinePropertyInfo), '("valign", Gtk.Widget.WidgetValignPropertyInfo), '("vexpand", Gtk.Widget.WidgetVexpandPropertyInfo), '("vexpandSet", Gtk.Widget.WidgetVexpandSetPropertyInfo), '("visible", Gtk.Widget.WidgetVisiblePropertyInfo), '("widthRequest", Gtk.Widget.WidgetWidthRequestPropertyInfo), '("window", Gtk.Widget.WidgetWindowPropertyInfo), '("xalign", Gtk.Button.ButtonXalignPropertyInfo), '("yalign", Gtk.Button.ButtonYalignPropertyInfo)] :: [(Symbol, *)]) #endif #if ENABLE_OVERLOADING lockButtonPermission :: AttrLabelProxy "permission" lockButtonPermission = AttrLabelProxy lockButtonTextLock :: AttrLabelProxy "textLock" lockButtonTextLock = AttrLabelProxy lockButtonTextUnlock :: AttrLabelProxy "textUnlock" lockButtonTextUnlock = AttrLabelProxy lockButtonTooltipLock :: AttrLabelProxy "tooltipLock" lockButtonTooltipLock = AttrLabelProxy lockButtonTooltipNotAuthorized :: AttrLabelProxy "tooltipNotAuthorized" lockButtonTooltipNotAuthorized = AttrLabelProxy lockButtonTooltipUnlock :: AttrLabelProxy "tooltipUnlock" lockButtonTooltipUnlock = AttrLabelProxy #endif #if ENABLE_OVERLOADING type instance O.SignalList LockButton = LockButtonSignalList type LockButtonSignalList = ('[ '("accelClosuresChanged", Gtk.Widget.WidgetAccelClosuresChangedSignalInfo), '("activate", Gtk.Button.ButtonActivateSignalInfo), '("add", Gtk.Container.ContainerAddSignalInfo), '("buttonPressEvent", Gtk.Widget.WidgetButtonPressEventSignalInfo), '("buttonReleaseEvent", Gtk.Widget.WidgetButtonReleaseEventSignalInfo), '("canActivateAccel", Gtk.Widget.WidgetCanActivateAccelSignalInfo), '("checkResize", Gtk.Container.ContainerCheckResizeSignalInfo), '("childNotify", Gtk.Widget.WidgetChildNotifySignalInfo), '("clicked", Gtk.Button.ButtonClickedSignalInfo), '("compositedChanged", Gtk.Widget.WidgetCompositedChangedSignalInfo), '("configureEvent", Gtk.Widget.WidgetConfigureEventSignalInfo), '("damageEvent", Gtk.Widget.WidgetDamageEventSignalInfo), '("deleteEvent", Gtk.Widget.WidgetDeleteEventSignalInfo), '("destroy", Gtk.Widget.WidgetDestroySignalInfo), '("destroyEvent", Gtk.Widget.WidgetDestroyEventSignalInfo), '("directionChanged", Gtk.Widget.WidgetDirectionChangedSignalInfo), '("dragBegin", Gtk.Widget.WidgetDragBeginSignalInfo), '("dragDataDelete", Gtk.Widget.WidgetDragDataDeleteSignalInfo), '("dragDataGet", Gtk.Widget.WidgetDragDataGetSignalInfo), '("dragDataReceived", Gtk.Widget.WidgetDragDataReceivedSignalInfo), '("dragDrop", Gtk.Widget.WidgetDragDropSignalInfo), '("dragEnd", Gtk.Widget.WidgetDragEndSignalInfo), '("dragFailed", Gtk.Widget.WidgetDragFailedSignalInfo), '("dragLeave", Gtk.Widget.WidgetDragLeaveSignalInfo), '("dragMotion", Gtk.Widget.WidgetDragMotionSignalInfo), '("draw", Gtk.Widget.WidgetDrawSignalInfo), '("enter", Gtk.Button.ButtonEnterSignalInfo), '("enterNotifyEvent", Gtk.Widget.WidgetEnterNotifyEventSignalInfo), '("event", Gtk.Widget.WidgetEventSignalInfo), '("eventAfter", Gtk.Widget.WidgetEventAfterSignalInfo), '("focus", Gtk.Widget.WidgetFocusSignalInfo), '("focusInEvent", Gtk.Widget.WidgetFocusInEventSignalInfo), '("focusOutEvent", Gtk.Widget.WidgetFocusOutEventSignalInfo), '("grabBrokenEvent", Gtk.Widget.WidgetGrabBrokenEventSignalInfo), '("grabFocus", Gtk.Widget.WidgetGrabFocusSignalInfo), '("grabNotify", Gtk.Widget.WidgetGrabNotifySignalInfo), '("hide", Gtk.Widget.WidgetHideSignalInfo), '("hierarchyChanged", Gtk.Widget.WidgetHierarchyChangedSignalInfo), '("keyPressEvent", Gtk.Widget.WidgetKeyPressEventSignalInfo), '("keyReleaseEvent", Gtk.Widget.WidgetKeyReleaseEventSignalInfo), '("keynavFailed", Gtk.Widget.WidgetKeynavFailedSignalInfo), '("leave", Gtk.Button.ButtonLeaveSignalInfo), '("leaveNotifyEvent", Gtk.Widget.WidgetLeaveNotifyEventSignalInfo), '("map", Gtk.Widget.WidgetMapSignalInfo), '("mapEvent", Gtk.Widget.WidgetMapEventSignalInfo), '("mnemonicActivate", Gtk.Widget.WidgetMnemonicActivateSignalInfo), '("motionNotifyEvent", Gtk.Widget.WidgetMotionNotifyEventSignalInfo), '("moveFocus", Gtk.Widget.WidgetMoveFocusSignalInfo), '("notify", GObject.Object.ObjectNotifySignalInfo), '("parentSet", Gtk.Widget.WidgetParentSetSignalInfo), '("popupMenu", Gtk.Widget.WidgetPopupMenuSignalInfo), '("pressed", Gtk.Button.ButtonPressedSignalInfo), '("propertyNotifyEvent", Gtk.Widget.WidgetPropertyNotifyEventSignalInfo), '("proximityInEvent", Gtk.Widget.WidgetProximityInEventSignalInfo), '("proximityOutEvent", Gtk.Widget.WidgetProximityOutEventSignalInfo), '("queryTooltip", Gtk.Widget.WidgetQueryTooltipSignalInfo), '("realize", Gtk.Widget.WidgetRealizeSignalInfo), '("released", Gtk.Button.ButtonReleasedSignalInfo), '("remove", Gtk.Container.ContainerRemoveSignalInfo), '("screenChanged", Gtk.Widget.WidgetScreenChangedSignalInfo), '("scrollEvent", Gtk.Widget.WidgetScrollEventSignalInfo), '("selectionClearEvent", Gtk.Widget.WidgetSelectionClearEventSignalInfo), '("selectionGet", Gtk.Widget.WidgetSelectionGetSignalInfo), '("selectionNotifyEvent", Gtk.Widget.WidgetSelectionNotifyEventSignalInfo), '("selectionReceived", Gtk.Widget.WidgetSelectionReceivedSignalInfo), '("selectionRequestEvent", Gtk.Widget.WidgetSelectionRequestEventSignalInfo), '("setFocusChild", Gtk.Container.ContainerSetFocusChildSignalInfo), '("show", Gtk.Widget.WidgetShowSignalInfo), '("showHelp", Gtk.Widget.WidgetShowHelpSignalInfo), '("sizeAllocate", Gtk.Widget.WidgetSizeAllocateSignalInfo), '("stateChanged", Gtk.Widget.WidgetStateChangedSignalInfo), '("stateFlagsChanged", Gtk.Widget.WidgetStateFlagsChangedSignalInfo), '("styleSet", Gtk.Widget.WidgetStyleSetSignalInfo), '("styleUpdated", Gtk.Widget.WidgetStyleUpdatedSignalInfo), '("touchEvent", Gtk.Widget.WidgetTouchEventSignalInfo), '("unmap", Gtk.Widget.WidgetUnmapSignalInfo), '("unmapEvent", Gtk.Widget.WidgetUnmapEventSignalInfo), '("unrealize", Gtk.Widget.WidgetUnrealizeSignalInfo), '("visibilityNotifyEvent", Gtk.Widget.WidgetVisibilityNotifyEventSignalInfo), '("windowStateEvent", Gtk.Widget.WidgetWindowStateEventSignalInfo)] :: [(Symbol, *)]) #endif -- method LockButton::new -- method type : Constructor -- Args : [Arg {argCName = "permission", argType = TInterface (Name {namespace = "Gio", name = "Permission"}), direction = DirectionIn, mayBeNull = True, argDoc = Documentation {rawDocText = Just "a #GPermission", sinceVersion = Nothing}, argScope = ScopeTypeInvalid, argClosure = -1, argDestroy = -1, argCallerAllocates = False, transfer = TransferNothing}] -- Lengths : [] -- returnType : Just (TInterface (Name {namespace = "Gtk", name = "LockButton"})) -- throws : False -- Skip return : False foreign import ccall "gtk_lock_button_new" gtk_lock_button_new :: Ptr Gio.Permission.Permission -> -- permission : TInterface (Name {namespace = "Gio", name = "Permission"}) IO (Ptr LockButton) {- | Creates a new lock button which reflects the /@permission@/. /Since: 3.2/ -} lockButtonNew :: (B.CallStack.HasCallStack, MonadIO m, Gio.Permission.IsPermission a) => Maybe (a) {- ^ /@permission@/: a 'GI.Gio.Objects.Permission.Permission' -} -> m LockButton {- ^ __Returns:__ a new 'GI.Gtk.Objects.LockButton.LockButton' -} lockButtonNew permission = liftIO $ do maybePermission <- case permission of Nothing -> return nullPtr Just jPermission -> do jPermission' <- unsafeManagedPtrCastPtr jPermission return jPermission' result <- gtk_lock_button_new maybePermission checkUnexpectedReturnNULL "lockButtonNew" result result' <- (newObject LockButton) result whenJust permission touchManagedPtr return result' #if ENABLE_OVERLOADING #endif -- method LockButton::get_permission -- method type : OrdinaryMethod -- Args : [Arg {argCName = "button", argType = TInterface (Name {namespace = "Gtk", name = "LockButton"}), direction = DirectionIn, mayBeNull = False, argDoc = Documentation {rawDocText = Just "a #GtkLockButton", sinceVersion = Nothing}, argScope = ScopeTypeInvalid, argClosure = -1, argDestroy = -1, argCallerAllocates = False, transfer = TransferNothing}] -- Lengths : [] -- returnType : Just (TInterface (Name {namespace = "Gio", name = "Permission"})) -- throws : False -- Skip return : False foreign import ccall "gtk_lock_button_get_permission" gtk_lock_button_get_permission :: Ptr LockButton -> -- button : TInterface (Name {namespace = "Gtk", name = "LockButton"}) IO (Ptr Gio.Permission.Permission) {- | Obtains the 'GI.Gio.Objects.Permission.Permission' object that controls /@button@/. /Since: 3.2/ -} lockButtonGetPermission :: (B.CallStack.HasCallStack, MonadIO m, IsLockButton a) => a {- ^ /@button@/: a 'GI.Gtk.Objects.LockButton.LockButton' -} -> m Gio.Permission.Permission {- ^ __Returns:__ the 'GI.Gio.Objects.Permission.Permission' of /@button@/ -} lockButtonGetPermission button = liftIO $ do button' <- unsafeManagedPtrCastPtr button result <- gtk_lock_button_get_permission button' checkUnexpectedReturnNULL "lockButtonGetPermission" result result' <- (newObject Gio.Permission.Permission) result touchManagedPtr button return result' #if ENABLE_OVERLOADING data LockButtonGetPermissionMethodInfo instance (signature ~ (m Gio.Permission.Permission), MonadIO m, IsLockButton a) => O.MethodInfo LockButtonGetPermissionMethodInfo a signature where overloadedMethod _ = lockButtonGetPermission #endif -- method LockButton::set_permission -- method type : OrdinaryMethod -- Args : [Arg {argCName = "button", argType = TInterface (Name {namespace = "Gtk", name = "LockButton"}), direction = DirectionIn, mayBeNull = False, argDoc = Documentation {rawDocText = Just "a #GtkLockButton", sinceVersion = Nothing}, argScope = ScopeTypeInvalid, argClosure = -1, argDestroy = -1, argCallerAllocates = False, transfer = TransferNothing},Arg {argCName = "permission", argType = TInterface (Name {namespace = "Gio", name = "Permission"}), direction = DirectionIn, mayBeNull = True, argDoc = Documentation {rawDocText = Just "a #GPermission object, or %NULL", sinceVersion = Nothing}, argScope = ScopeTypeInvalid, argClosure = -1, argDestroy = -1, argCallerAllocates = False, transfer = TransferNothing}] -- Lengths : [] -- returnType : Nothing -- throws : False -- Skip return : False foreign import ccall "gtk_lock_button_set_permission" gtk_lock_button_set_permission :: Ptr LockButton -> -- button : TInterface (Name {namespace = "Gtk", name = "LockButton"}) Ptr Gio.Permission.Permission -> -- permission : TInterface (Name {namespace = "Gio", name = "Permission"}) IO () {- | Sets the 'GI.Gio.Objects.Permission.Permission' object that controls /@button@/. /Since: 3.2/ -} lockButtonSetPermission :: (B.CallStack.HasCallStack, MonadIO m, IsLockButton a, Gio.Permission.IsPermission b) => a {- ^ /@button@/: a 'GI.Gtk.Objects.LockButton.LockButton' -} -> Maybe (b) {- ^ /@permission@/: a 'GI.Gio.Objects.Permission.Permission' object, or 'Nothing' -} -> m () lockButtonSetPermission button permission = liftIO $ do button' <- unsafeManagedPtrCastPtr button maybePermission <- case permission of Nothing -> return nullPtr Just jPermission -> do jPermission' <- unsafeManagedPtrCastPtr jPermission return jPermission' gtk_lock_button_set_permission button' maybePermission touchManagedPtr button whenJust permission touchManagedPtr return () #if ENABLE_OVERLOADING data LockButtonSetPermissionMethodInfo instance (signature ~ (Maybe (b) -> m ()), MonadIO m, IsLockButton a, Gio.Permission.IsPermission b) => O.MethodInfo LockButtonSetPermissionMethodInfo a signature where overloadedMethod _ = lockButtonSetPermission #endif