uni-htk-2.2.1.3: Graphical User Interface for Haskell Programs

Safe HaskellNone
LanguageHaskell98

HTk.Canvasitems.ImageItem

Description

HTk's image canvas item. An image object on a canvas widget.

Synopsis

Documentation

data ImageItem Source #

The ImageItem datatype.

Instances

Eq ImageItem Source # 
Destroyable ImageItem Source #

An image item can be destroyed.

Methods

destroy :: ImageItem -> IO () #

Synchronized ImageItem Source #

You can synchronize on an image item.

Methods

synchronize :: ImageItem -> IO b -> IO b #

GUIObject ImageItem Source #

Internal.

HasCanvAnchor ImageItem Source #

You can specify the anchor position of an image item.

HasPosition ImageItem Source #

You can specify the position of an image item.

HasPhoto ImageItem Source #

An image item is a container for an image object.

CanvasItem ImageItem Source #

An image item is a canvas item (any canvas item is an instance of the abstract class CanvasItem).

TaggedCanvasItem ImageItem Source #

A image item can have several tags (handlers for a set of canvas items).

createImageItem Source #

Arguments

:: Canvas

the parent canvas.

-> [Config ImageItem]

the list of configuration options for this image item.

-> IO ImageItem

An image item.

Constructs a new bitmap item.