Changes between Version 1 and Version 2 of EasyGuiAuxiliaryTypes
- Timestamp:
- 08/30/08 01:32:55 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
EasyGuiAuxiliaryTypes
v1 v2 5 5 {{{(make-font &key family size style justification text-color background-color) [function]}}} 6 6 7 Creates a font description that can be used in set-view-font. '' TODO: In addition to whatever else we support for family (string? int?) also allow keywords corresponding to meta font constants, e.g. :big-system-font :small-system-font :small-bold-system-font :view-system-font…) ''7 Creates a font description that can be used in set-view-font. // TODO: In addition to whatever else we support for family (string? int?) also allow keywords corresponding to meta font constants, e.g. :big-system-font :small-system-font :small-bold-system-font :view-system-font…) // 8 8 9 9 {{{(font-p object) [function]}}} 10 10 11 Returns true if ''object''is a font.11 Returns true if //object// is a font. 12 12 13 13 {{{(same-font-p font1 font2) [function]}}} 14 14 15 True if font1 and font2 are the same in all components. '' TODO: Or should we intern and let them use EQ?''15 True if font1 and font2 are the same in all components. // TODO: Or should we intern and let them use EQ?// 16 16 17 17 {{{(font-family font) [function]}}} … … 45 45 {{{(make-rgb-color &key red green blue alpha) [function]}}} 46 46 47 Creates a color description for the specified values. '' TODO: Accept both floats 0.0-1.0 or ints 0-255?''47 Creates a color description for the specified values. // TODO: Accept both floats 0.0-1.0 or ints 0-255?// 48 48 49 49 {{{(rgb-color-p object) [function]}}} … … 53 53 {{{(same-color-p rgb-color1 rgb-color2) [function]}}} 54 54 55 True if ''rgb-color1'' and ''rgb-color2''are the same in all components.55 True if //rgb-color1// and //rgb-color2// are the same in all components. 56 56 57 57 {{{(color-red rgb-color) [function]}}} … … 75 75 {{{(point h v) [function]}}} 76 76 77 Returns a point with horizontal coordinate ''h'' and vertical coordinate ''v''. ''h'' and ''v''can be any real numbers.77 Returns a point with horizontal coordinate //h// and vertical coordinate //v//. //h// and //v// can be any real numbers. 78 78 79 79 {{{(point-p object) [function]}}} 80 80 81 Returns true if ''object''is a point.81 Returns true if //object// is a point. 82 82 83 83 {{{(point-h point) [function]}}} 84 84 85 Returns the horizontal coordinate of ''point''.85 Returns the horizontal coordinate of //point//. 86 86 87 87 {{{(point-v point) [function]}}} 88 88 89 Returns the vertical coordinate of ''point''.89 Returns the vertical coordinate of //point//. 90 90 91 91 {{{(point+ point1 point2) [function]}}} 92 92 93 Returns a point with each coordinate being the sum of ''point1'' and ''point2''.93 Returns a point with each coordinate being the sum of //point1// and //point2//. 94 94 95 95 {{{(point- point1 point2) [function]}}} 96 96 97 Returns a point with each coordinate being the difference of ''point1'' and ''point2''.97 Returns a point with each coordinate being the difference of //point1// and //point2//. 98 98 99 99 {{{(point<= point1 point2) [function]}}} 100 100 101 Returns true if each coordinate of ''point1'' is ''<='' to corresponding coordinate of ''point2''.101 Returns true if each coordinate of //point1// is ''<='' to corresponding coordinate of //point2//. 102 102 103 103 {{{(point< point1 point2) [function]}}} 104 104 105 Returns true if each coordinate of ''point1'' is ''<'' corresponding coordinate of ''point2''.105 Returns true if each coordinate of //point1// is ''<'' corresponding coordinate of //point2//. 106 106 107 107 {{{(point= point1 point2) [function]}}} 108 108 109 Returns true if each coordinate of ''point1'' is ''='' to corresponding coordinate of ''point2''.109 Returns true if each coordinate of //point1// is ''='' to corresponding coordinate of //point2//. 110 110 111 111 == Rectangles ==
