| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Graphics.UI.FLTK.LowLevel.Input
Documentation
data FlInputType Source #
Instances
| Enum FlInputType Source # | |
Defined in Graphics.UI.FLTK.LowLevel.Input Methods succ :: FlInputType -> FlInputType # pred :: FlInputType -> FlInputType # toEnum :: Int -> FlInputType # fromEnum :: FlInputType -> Int # enumFrom :: FlInputType -> [FlInputType] # enumFromThen :: FlInputType -> FlInputType -> [FlInputType] # enumFromTo :: FlInputType -> FlInputType -> [FlInputType] # enumFromThenTo :: FlInputType -> FlInputType -> FlInputType -> [FlInputType] # | |
Constructor
Hierarchy
Input
copy ::RefInput->Clipboard->IO(EitherNoChange()) copyCuts ::RefInput->IO(EitherNoChange()) cut ::RefInput->IO(EitherNoChange()) cutFromCursor ::RefInput->Int->IO(EitherNoChange()) cutRange ::RefInput->IndexRange->IO(EitherNoChange()) destroy ::RefInput->IO() draw ::RefInput->IO() drawSuper ::RefInput->IO() drawText ::RefInput->Rectangle->IO() getCursorColor ::RefInput->IO(Color) getInputType ::RefInput->IO(FlInputType) getMark ::RefInput->IO(Int) getMaximumSize ::RefInput->IO(Int) getPosition ::RefInput->IO(Int) getReadonly ::RefInput->IO(Bool) getShortcut ::RefInput->IO(MaybeShortcutKeySequence) getSize ::RefInput->IO(Int) getTabNav ::RefInput->IO(Bool) getTextcolor ::RefInput->IO(Color) getTextfont ::RefInput->IO(Font) getTextsize ::RefInput->IO(FontSize) getValue ::RefInput->IOTextgetWrap ::RefInput->IO(Bool) handle ::RefInput->Event->IO(EitherUnknownEvent()) handleSuper ::RefInput->Event->IO(EitherUnknownEvent()) hide ::RefInput->IO() hideSuper ::RefInput->IO() index ::RefInput->AtIndex->IO(Char) insert ::RefInput->Text->IO(EitherNoChange()) insertWithLength ::RefInput->Text->Int->IO(EitherNoChange()) replace ::RefInput->IndexRange->Text->IO(EitherNoChange()) resize ::RefInput->Rectangle->IO() resizeSuper ::RefInput->Rectangle->IO() setCursorColor ::RefInput->Color->IO() setInputType ::RefInput->FlInputType->IO() setMark ::RefInput->Int->IO(EitherNoChange()) setMaximumSize ::RefInput->Int->IO() setPosition ::RefInput->Int->MaybeInt->IO(EitherNoChange()) setReadonly ::RefInput->Bool->IO() setShortcut ::RefInput->ShortcutKeySequence->IO() setSize ::RefInput->Size->IO() setTabNav ::RefInput->Bool->IO() setTextcolor ::RefInput->Color->IO() setTextfont ::RefInput->Font->IO() setTextsize ::RefInput->FontSize->IO() setValue ::RefInput->Text->IO(EitherNoChange()) setWrap ::RefInput->Bool->IO() showWidget ::RefInput->IO() showWidgetSuper ::RefInput->IO() staticValue ::RefInput->Text->IO(EitherNoChange()) undo ::RefInput->IO(EitherNoChange())
Orphan instances
| impl ~ (Rectangle -> IO ()) => Op (DrawText ()) Input orig impl Source # | |
| impl ~ (Bool -> IO ()) => Op (SetTabNav ()) Input orig impl Source # | |
| impl ~ IO Bool => Op (GetTabNav ()) Input orig impl Source # | |
| impl ~ (Bool -> IO ()) => Op (SetWrap ()) Input orig impl Source # | |
| impl ~ IO Bool => Op (GetWrap ()) Input orig impl Source # | |
| impl ~ (Bool -> IO ()) => Op (SetReadonly ()) Input orig impl Source # | |
| impl ~ IO Bool => Op (GetReadonly ()) Input orig impl Source # | |
| impl ~ (FlInputType -> IO ()) => Op (SetInputType ()) Input orig impl Source # | |
| impl ~ IO FlInputType => Op (GetInputType ()) Input orig impl Source # | |
| impl ~ (Color -> IO ()) => Op (SetCursorColor ()) Input orig impl Source # | |
| impl ~ IO Color => Op (GetCursorColor ()) Input orig impl Source # | |
| impl ~ IO (Either NoChange ()) => Op (CopyCuts ()) Input orig impl Source # | |
| impl ~ IO (Either NoChange ()) => Op (Undo ()) Input orig impl Source # | |
| impl ~ (Text -> Int -> IO (Either NoChange ())) => Op (InsertWithLength ()) Input orig impl Source # | |
| impl ~ (IndexRange -> IO (Either NoChange ())) => Op (CutRange ()) Input orig impl Source # | |
| impl ~ (Int -> IO (Either NoChange ())) => Op (CutFromCursor ()) Input orig impl Source # | |
| impl ~ IO (Either NoChange ()) => Op (Cut ()) Input orig impl Source # | |
| impl ~ (Int -> IO (Either NoChange ())) => Op (SetMark ()) Input orig impl Source # | |
| impl ~ (Int -> Maybe Int -> IO (Either NoChange ())) => Op (SetPosition ()) Input orig impl Source # | |
| impl ~ IO Int => Op (GetMark ()) Input orig impl Source # | |
| impl ~ IO Int => Op (GetPosition ()) Input orig impl Source # | |
| impl ~ (Int -> IO ()) => Op (SetMaximumSize ()) Input orig impl Source # | |
| impl ~ IO Int => Op (GetMaximumSize ()) Input orig impl Source # | |
| impl ~ (AtIndex -> IO Char) => Op (Index ()) Input orig impl Source # | |
| impl ~ (Text -> IO (Either NoChange ())) => Op (StaticValue ()) Input orig impl Source # | |
| impl ~ (Color -> IO ()) => Op (SetTextcolor ()) Input orig impl Source # | |
| impl ~ IO Color => Op (GetTextcolor ()) Input orig impl Source # | |
| impl ~ (FontSize -> IO ()) => Op (SetTextsize ()) Input orig impl Source # | |
| impl ~ IO FontSize => Op (GetTextsize ()) Input orig impl Source # | |
| impl ~ (Font -> IO ()) => Op (SetTextfont ()) Input orig impl Source # | |
| impl ~ IO Font => Op (GetTextfont ()) Input orig impl Source # | |
| impl ~ (IndexRange -> Text -> IO (Either NoChange ())) => Op (Replace ()) Input orig impl Source # | |
| impl ~ (Size -> IO ()) => Op (SetSize ()) Input orig impl Source # | |
| impl ~ (Clipboard -> IO (Either NoChange ())) => Op (Copy ()) Input orig impl Source # | |
| impl ~ IO Int => Op (GetSize ()) Input orig impl Source # | |
| impl ~ IO () => Op (Draw ()) Input orig impl Source # | |
| impl ~ (ShortcutKeySequence -> IO ()) => Op (SetShortcut ()) Input orig impl Source # | |
| impl ~ IO (Maybe ShortcutKeySequence) => Op (GetShortcut ()) Input orig impl Source # | |
| impl ~ (Text -> IO (Either NoChange ())) => Op (SetValue ()) Input orig impl Source # | |
| impl ~ IO Text => Op (GetValue ()) Input orig impl Source # | |
| impl ~ (Event -> IO (Either UnknownEvent ())) => Op (HandleSuper ()) Input orig impl Source # | |
| impl ~ IO () => Op (DrawSuper ()) Input orig impl Source # | |
| impl ~ (Text -> IO (Either NoChange ())) => Op (Insert ()) Input orig impl Source # | |
| impl ~ (Rectangle -> IO ()) => Op (Resize ()) Input orig impl Source # | |
| impl ~ (Rectangle -> IO ()) => Op (ResizeSuper ()) Input orig impl Source # | |
| impl ~ IO () => Op (Hide ()) Input orig impl Source # | |
| impl ~ IO () => Op (HideSuper ()) Input orig impl Source # | |
| impl ~ IO () => Op (ShowWidget ()) Input orig impl Source # | |
| impl ~ IO () => Op (ShowWidgetSuper ()) Input orig impl Source # | |
| impl ~ (Event -> IO (Either UnknownEvent ())) => Op (Handle ()) Input orig impl Source # | |
| impl ~ IO () => Op (Destroy ()) Input orig impl Source # | |