csound-expression-0.3.1: Csound combinator library

CsoundExpr.Opcodes.Control.FltkAppearance

Description

Modifying FLTK Widget Appearance

Synopsis

Documentation

flColor :: [Irate] -> Irate -> Irate -> Irate -> SignalOutSource

  • opcode : FLcolor
  • syntax :
   FLcolor ired, igreen, iblue [, ired2, igreen2, iblue2]
  • description :

Sets the primary colors to RGB values given by the user.

flColor2 :: Irate -> Irate -> Irate -> SignalOutSource

  • opcode : FLcolor2
  • syntax :
   FLcolor2 ired, igreen, iblue
  • description :

FLcolor2 is the same of FLcolor except it affects the secondary (selection) color.

flHide :: Irate -> SignalOutSource

  • opcode : FLhide
  • syntax :
   FLhide ihandle
  • description :

Hides the target FLTK widget, making it invisible.

flLabel :: Irate -> Irate -> Irate -> Irate -> Irate -> Irate -> SignalOutSource

  • opcode : FLlabel
  • syntax :
   FLlabel isize, ifont, ialign, ired, igreen, iblue
  • description :

Modifies a set of parameters related to the text label appearence of a widget (i.e. size, font, alignment and color of corresponding text).

flSetAlign :: Irate -> Irate -> SignalOutSource

  • opcode : FLsetAlign
  • syntax :
   FLsetAlign ialign, ihandle
  • description :

FLsetAlign sets the text alignment of the label of the target widget.

flSetBox :: Irate -> Irate -> SignalOutSource

  • opcode : FLsetBox
  • syntax :
   FLsetBox itype, ihandle
  • description :

FLsetBox sets the appearance of a box surrounding the target widget.

flSetColor :: Irate -> Irate -> Irate -> Irate -> SignalOutSource

  • opcode : FLsetColor
  • syntax :
   FLsetColor ired, igreen, iblue, ihandle
  • description :

FLsetColor sets the primary color of the target widget.

flSetColor2 :: Irate -> Irate -> Irate -> Irate -> SignalOutSource

  • opcode : FLsetColor2
  • syntax :
   FLsetColor2 ired, igreen, iblue, ihandle
  • description :

FLsetColor2 sets the secondary (or selection) color of the target widget.

flSetFont :: Irate -> Irate -> SignalOutSource

  • opcode : FLsetFont
  • syntax :
   FLsetFont ifont, ihandle
  • description :

FLsetFont sets the font type of the target widget.

flSetPosition :: Irate -> Irate -> Irate -> SignalOutSource

  • opcode : FLsetPosition
  • syntax :
   FLsetPosition ix, iy, ihandle
  • description :

FLsetPosition sets the position of the target widget according to the ix and iy arguments.

flSetSize :: Irate -> Irate -> Irate -> SignalOutSource

  • opcode : FLsetSize
  • syntax :
   FLsetSize iwidth, iheight, ihandle
  • description :

FLsetSize resizes the target widget (not the size of its text) according to the iwidth and iheight arguments.

flSetText :: String -> Irate -> SignalOutSource

  • opcode : FLsetText
  • syntax :
   FLsetText "itext", ihandle
  • description :

FLsetText sets the label of the target widget to the double-quoted text string provided with the itext argument.

flSetTextColor :: Irate -> Irate -> Irate -> Irate -> SignalOutSource

  • opcode : FLsetTextColor
  • syntax :
   FLsetTextColor ired, iblue, igreen, ihandle
  • description :

FLsetTextColor sets the color of the text label of the target widget.

flSetTextSize :: Irate -> Irate -> SignalOutSource

  • opcode : FLsetTextSize
  • syntax :
   FLsetTextSize isize, ihandle
  • description :

FLsetTextSize sets the size of the text label of the target widget.

flSetTextType :: Irate -> Irate -> SignalOutSource

  • opcode : FLsetTextType
  • syntax :
   FLsetTextType itype, ihandle
  • description :

FLsetTextType sets some attributes related to the fonts of the text label of the target widget.

flSetVal_i :: Irate -> Irate -> SignalOutSource

  • opcode : FLsetVal_i
  • syntax :
   FLsetVal_i ivalue, ihandle
  • description :

FLsetVal_i forces the value of a valuator to a number provided by the user.

flSetVal :: (K k0, K k1) => k0 -> k1 -> Irate -> SignalOutSource

  • opcode : FLsetVal
  • syntax :
   FLsetVal ktrig, kvalue, ihandle
  • description :

FLsetVal is almost identical to FLsetVal_i. Except it operates at k-rate and it affects the target valuator only when ktrig is set to a non-zero value.

flShow :: Irate -> SignalOutSource

  • opcode : FLshow
  • syntax :
   FLshow ihandle
  • description :

FLshow restores the visibility of a previously hidden widget.