wx-0.10.1: wxHaskell is a portable and native GUI library for Haskell.Source codeContentsIndex
Graphics.UI.WX.Frame
Contents
Frames
MDI Frames
Operations
Internal
Description
Synopsis
frame :: [Prop (Frame ())] -> IO (Frame ())
frameFixed :: [Prop (Frame ())] -> IO (Frame ())
frameTool :: [Prop (Frame ())] -> Window a -> IO (Frame ())
frameEx :: Style -> [Prop (Frame ())] -> Window a -> IO (Frame ())
mdiParentFrame :: [Prop (MDIParentFrame ())] -> IO (MDIParentFrame ())
mdiChildFrame :: MDIParentFrame a -> [Prop (MDIChildFrame ())] -> IO (MDIChildFrame ())
mdiParentFrameEx :: Window a -> Style -> [Prop (MDIParentFrame ())] -> IO (MDIParentFrame ())
mdiChildFrameEx :: MDIParentFrame a -> Style -> [Prop (MDIChildFrame ())] -> IO (MDIChildFrame ())
activeChild :: ReadAttr (MDIParentFrame a) (MDIChildFrame ())
activateNext :: MDIParentFrame a -> IO ()
activatePrevious :: MDIParentFrame a -> IO ()
arrangeIcons :: MDIParentFrame a -> IO ()
cascade :: MDIParentFrame a -> IO ()
tile :: MDIParentFrame a -> IO ()
initialFrame :: (Id -> Rect -> String -> [Prop (Window w)] -> Style -> a) -> [Prop (Window w)] -> Style -> a
initialResizeable :: ([Prop (Window w)] -> Style -> a) -> [Prop (Window w)] -> Style -> a
initialMaximizeable :: ([Prop (Window w)] -> Style -> a) -> [Prop (Window w)] -> Style -> a
initialMinimizeable :: ([Prop (Window w)] -> Style -> a) -> [Prop (Window w)] -> Style -> a
initialCloseable :: ([Prop (Window w)] -> Style -> a) -> [Prop (Window w)] -> Style -> a
Frames
frame :: [Prop (Frame ())] -> IO (Frame ())Source
Create a top-level frame window.
frameFixed :: [Prop (Frame ())] -> IO (Frame ())Source
Create a top-level frame window that is not resizeable.
frameTool :: [Prop (Frame ())] -> Window a -> IO (Frame ())Source
Create a tool window; floats on the parent and has a small caption.
frameEx :: Style -> [Prop (Frame ())] -> Window a -> IO (Frame ())Source
Create a top-level frame window in a custom style.
MDI Frames
mdiParentFrame :: [Prop (MDIParentFrame ())] -> IO (MDIParentFrame ())Source
Create an MDI parent frame.
mdiChildFrame :: MDIParentFrame a -> [Prop (MDIChildFrame ())] -> IO (MDIChildFrame ())Source
Create a MDI child frame.
mdiParentFrameEx :: Window a -> Style -> [Prop (MDIParentFrame ())] -> IO (MDIParentFrame ())Source
Create an MDI parent frame with a custom style.
mdiChildFrameEx :: MDIParentFrame a -> Style -> [Prop (MDIChildFrame ())] -> IO (MDIChildFrame ())Source
Create a MDI child frame with a custom style.
Operations
activeChild :: ReadAttr (MDIParentFrame a) (MDIChildFrame ())Source
Return the active child frame (objectIsNull when no child is active)
activateNext :: MDIParentFrame a -> IO ()Source
Activate the next child frame.
activatePrevious :: MDIParentFrame a -> IO ()Source
Activate the previous child frame
arrangeIcons :: MDIParentFrame a -> IO ()Source
Arrange iconized mdi child frames.
cascade :: MDIParentFrame a -> IO ()Source
Cascade the child frames.
tile :: MDIParentFrame a -> IO ()Source
Tile the child frames
Internal
initialFrame :: (Id -> Rect -> String -> [Prop (Window w)] -> Style -> a) -> [Prop (Window w)] -> Style -> aSource
initial Frame flags
initialResizeable :: ([Prop (Window w)] -> Style -> a) -> [Prop (Window w)] -> Style -> aSource
Helper function that transforms the style accordding to the windowResizable flag in of the properties
initialMaximizeable :: ([Prop (Window w)] -> Style -> a) -> [Prop (Window w)] -> Style -> aSource
Helper function that transforms the style accordding to the windowMaximizable flag in of the properties
initialMinimizeable :: ([Prop (Window w)] -> Style -> a) -> [Prop (Window w)] -> Style -> aSource
Helper function that transforms the style accordding to the windowMinimizable flag in of the properties
initialCloseable :: ([Prop (Window w)] -> Style -> a) -> [Prop (Window w)] -> Style -> aSource
Helper function that transforms the style accordding to the windowMinimizable flag in of the properties
Produced by Haddock version 2.1.0