fltkhs-0.8.0.2: FLTK bindings

Safe HaskellNone
LanguageHaskell2010

Graphics.UI.FLTK.LowLevel.Base.FileInput

Contents

Synopsis

Documentation

fileInputCustom Source #

Arguments

:: Rectangle

The bounds of this FileInput

-> Maybe Text

The FileInput label

-> Maybe (Ref FileInput -> IO ())

Optional custom drawing function

-> Maybe (CustomWidgetFuncs FileInput)

Optional custom widget functions

-> IO (Ref FileInput) 

Hierarchy

Functions

draw :: Ref FileInputBase -> IO ()

getDownBox :: Ref FileInputBase -> IO (Boxtype)

getErrorColor :: Ref FileInputBase -> IO (Color)

getValue :: Ref FileInputBase -> IO Text

handle :: Ref FileInputBase -> Event -> IO (Either UnknownEvent ())

hide :: Ref FileInputBase -> IO ()

resize :: Ref FileInputBase -> Rectangle -> IO ()

setDownBox :: Ref FileInputBase -> Boxtype -> IO ()

setErrorColor :: Ref FileInputBase -> Color -> IO ()

setValue :: Ref FileInputBase -> Text -> IO ()

showWidget :: Ref FileInputBase -> IO ()

Orphan instances

impl ~ IO Color => Op (GetErrorColor ()) FileInputBase orig impl Source # 
Instance details

Methods

runOp :: GetErrorColor () -> orig -> Ref FileInputBase -> impl Source #

impl ~ (Color -> IO ()) => Op (SetErrorColor ()) FileInputBase orig impl Source # 
Instance details

Methods

runOp :: SetErrorColor () -> orig -> Ref FileInputBase -> impl Source #

impl ~ IO () => Op (Draw ()) FileInputBase orig impl Source # 
Instance details

Methods

runOp :: Draw () -> orig -> Ref FileInputBase -> impl Source #

impl ~ (Boxtype -> IO ()) => Op (SetDownBox ()) FileInputBase orig impl Source # 
Instance details

Methods

runOp :: SetDownBox () -> orig -> Ref FileInputBase -> impl Source #

impl ~ IO Boxtype => Op (GetDownBox ()) FileInputBase orig impl Source # 
Instance details

Methods

runOp :: GetDownBox () -> orig -> Ref FileInputBase -> impl Source #

impl ~ (Text -> IO ()) => Op (SetValue ()) FileInputBase orig impl Source # 
Instance details

Methods

runOp :: SetValue () -> orig -> Ref FileInputBase -> impl Source #

impl ~ IO Text => Op (GetValue ()) FileInputBase orig impl Source # 
Instance details

Methods

runOp :: GetValue () -> orig -> Ref FileInputBase -> impl Source #

impl ~ (Rectangle -> IO ()) => Op (Resize ()) FileInputBase orig impl Source # 
Instance details

Methods

runOp :: Resize () -> orig -> Ref FileInputBase -> impl Source #

impl ~ IO () => Op (Hide ()) FileInputBase orig impl Source # 
Instance details

Methods

runOp :: Hide () -> orig -> Ref FileInputBase -> impl Source #

impl ~ IO () => Op (ShowWidget ()) FileInputBase orig impl Source # 
Instance details

Methods

runOp :: ShowWidget () -> orig -> Ref FileInputBase -> impl Source #

impl ~ (Event -> IO (Either UnknownEvent ())) => Op (Handle ()) FileInputBase orig impl Source # 
Instance details

Methods

runOp :: Handle () -> orig -> Ref FileInputBase -> impl Source #