2009-04-12 17:48:03 +04:00
|
|
|
//
|
|
|
|
// Unit tests for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2022-02-19 14:55:06 +03:00
|
|
|
// Copyright 1998-2022 by Bill Spitzak and others.
|
2009-04-12 17:48:03 +04:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
|
|
// file is missing or damaged, see the license at:
|
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/COPYING.php
|
2009-04-12 17:48:03 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// Please see the following page on how to report bugs and issues:
|
2009-04-12 17:48:03 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/bugs.php
|
2009-04-12 17:48:03 +04:00
|
|
|
//
|
|
|
|
|
2022-02-06 17:22:24 +03:00
|
|
|
#include "unittests.h"
|
|
|
|
|
2009-04-12 17:48:03 +04:00
|
|
|
#include <FL/Fl_Box.H>
|
|
|
|
#include <FL/fl_draw.H>
|
|
|
|
|
|
|
|
//
|
|
|
|
//------- test viewport clipping ----------
|
|
|
|
//
|
2022-12-17 15:16:57 +03:00
|
|
|
class Ut_Viewport_Test : public Fl_Box {
|
2020-07-01 19:03:10 +03:00
|
|
|
public:
|
2009-04-12 17:48:03 +04:00
|
|
|
static Fl_Widget *create() {
|
2022-12-17 15:16:57 +03:00
|
|
|
return new Ut_Viewport_Test(UT_TESTAREA_X, UT_TESTAREA_Y, UT_TESTAREA_W, UT_TESTAREA_H);
|
2009-04-12 17:48:03 +04:00
|
|
|
}
|
2022-12-17 15:16:57 +03:00
|
|
|
Ut_Viewport_Test(int x, int y, int w, int h) : Fl_Box(x, y, w, h) {
|
2009-04-12 17:48:03 +04:00
|
|
|
label("Testing Viewport Alignment\n\n"
|
|
|
|
"Only green lines should be visible.\n"
|
|
|
|
"If red lines are visible in the corners of this window,\n"
|
|
|
|
"your viewport alignment and clipping is off.\n"
|
|
|
|
"If there is a space between the green lines and the window border,\n"
|
|
|
|
"the viewport is off, but some clipping may be working.\n"
|
|
|
|
"Also, your window size may be off to begin with.");
|
|
|
|
align(FL_ALIGN_INSIDE|FL_ALIGN_CENTER|FL_ALIGN_WRAP);
|
|
|
|
box(FL_BORDER_BOX);
|
|
|
|
}
|
2022-12-30 21:14:36 +03:00
|
|
|
void show() FL_OVERRIDE {
|
2009-04-12 17:48:03 +04:00
|
|
|
Fl_Box::show();
|
2022-12-17 15:16:57 +03:00
|
|
|
mainwin->test_alignment(1);
|
2009-04-12 17:48:03 +04:00
|
|
|
}
|
2022-12-30 21:14:36 +03:00
|
|
|
void hide() FL_OVERRIDE {
|
2009-04-12 17:48:03 +04:00
|
|
|
Fl_Box::hide();
|
2022-12-17 15:16:57 +03:00
|
|
|
mainwin->test_alignment(0);
|
2009-04-12 17:48:03 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-12-17 15:16:57 +03:00
|
|
|
UnitTest viewport(UT_TEST_VIEWPORT, "Viewport Test", Ut_Viewport_Test::create);
|