Separators for widgets. It is just a frame with a given relief and borderwidth etc.
- data Separator
- newSeparator :: Container par => par -> [Config Separator] -> IO Separator
- newHSeparator :: Container par => par -> IO Separator
- newVSeparator :: Container par => par -> IO Separator
Documentation
The Separator
datatype.
Eq Separator | |
Destroyable Separator | A separator can be destroyed. |
GUIObject Separator | Internal. |
HasOrientation Separator | A spearator widget has an orientation (Horizontal or Vertical) |
HasBorder Separator | A separator widget has a configureable border. |
HasSize Separator | You can specify the size of a separator widget. |
:: Container par | |
=> par | the parent widget, which has to be a container widget
(an instance of |
-> [Config Separator] | the list of configuration options for this separator. |
-> IO Separator | a separator widget. |
Constructs a new separator widget and returns it as a value.
:: Container par | |
=> par | the parent widget, which has to be a container widget
(an instance of |
-> IO Separator | a separator widget. |
Constructs a new horizontal separator widget and returns it as a value. (no packing needed)