diff options
Diffstat (limited to 'test/dw_images_scaled2.cc')
-rw-r--r-- | test/dw_images_scaled2.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/test/dw_images_scaled2.cc b/test/dw_images_scaled2.cc index 39c55046..175ef414 100644 --- a/test/dw_images_scaled2.cc +++ b/test/dw_images_scaled2.cc @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * along with this program. If not, see <http://www.gnu.org/licenses/>. */ @@ -56,14 +55,14 @@ static void imageDrawTimeout (void *data) buf[3 * x + 1] = (399 - x) * 255 / 399; buf[3 * x + 2] = imgRow * 255 / 199; } - + imgbuf->copyRow (imgRow, buf); - image1->drawRow (imgRow); - image2->drawRow (imgRow); + image1->drawRow (imgRow); + image2->drawRow (imgRow); imgRow++; } } - + if(imgRow < 200) ::fltk::repeat_timeout (0.5, imageDrawTimeout, NULL); } @@ -88,10 +87,11 @@ int main(int argc, char **argv) fontAttrs.size = 14; fontAttrs.weight = 400; fontAttrs.style = FONT_STYLE_NORMAL; + fontAttrs.letterSpacing = 0; styleAttrs.font = Font::create (layout, &fontAttrs); - styleAttrs.color = Color::createSimple (layout, 0x000000); - styleAttrs.backgroundColor = Color::createSimple (layout, 0xffffff); + styleAttrs.color = Color::create (layout, 0x000000); + styleAttrs.backgroundColor = Color::create (layout, 0xffffff); Style *widgetStyle = Style::create (layout, &styleAttrs); @@ -109,7 +109,7 @@ int main(int argc, char **argv) Style *wordStyle = Style::create (layout, &styleAttrs); styleAttrs.borderWidth.setVal (1); - styleAttrs.setBorderColor (Color::createShaded (layout, 0x000080)); + styleAttrs.setBorderColor (Color::create (layout, 0x000080)); styleAttrs.setBorderStyle (BORDER_SOLID); styleAttrs.padding.setVal (1); styleAttrs.backgroundColor = NULL; |