/*********************************************************************** * fmouse-test.cpp - FMouse unit tests * * * * This file is part of the FINAL CUT widget toolkit * * * * Copyright 2018-2021 Markus Gans * * * * FINAL CUT is free software; you can redistribute it and/or modify * * it under the terms of the GNU Lesser General Public License as * * published by the Free Software Foundation; either version 3 of * * the License, or (at your option) any later version. * * * * FINAL CUT is distributed in the hope that it will be useful, but * * WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU Lesser General Public License for more details. * * * * You should have received a copy of the GNU Lesser General Public * * License along with this program. If not, see * * . * ***********************************************************************/ #include #include #include #include #include #include #include #include namespace test { //---------------------------------------------------------------------- // class FMouse_protected //---------------------------------------------------------------------- class FMouse_protected : public finalcut::FMouse { public: bool hasData() override { return true; } void setRawData (finalcut::FKeyboard::keybuffer&) override { } void processEvent (const TimeValue&) override { } uInt16 getMaxWidth() { return finalcut::FMouse::getMaxWidth(); } uInt16 getMaxHeight() { return finalcut::FMouse::getMaxHeight(); } const finalcut::FPoint& getNewMousePosition() const { return finalcut::FMouse::getNewPos(); } uInt64 getDblclickInterval() { return finalcut::FMouse::getDblclickInterval(); } bool isDblclickTimeout (const TimeValue& t) { return finalcut::FMouse::isDblclickTimeout(t); } }; } // namespace test //---------------------------------------------------------------------- // class finalcut::FMouseTest //---------------------------------------------------------------------- class FMouseTest : public CPPUNIT_NS::TestFixture { public: FMouseTest() { } protected: void classNameTest(); void noArgumentTest(); void doubleClickTest(); void workspaceSizeTest(); #ifdef F_HAVE_LIBGPM void gpmMouseTest(); #endif void x11MouseTest(); void sgrMouseTest(); void urxvtMouseTest(); void mouseControlTest(); private: // Adds code needed to register the test suite CPPUNIT_TEST_SUITE (FMouseTest); // Add a methods to the test suite CPPUNIT_TEST (classNameTest); CPPUNIT_TEST (noArgumentTest); CPPUNIT_TEST (doubleClickTest); CPPUNIT_TEST (workspaceSizeTest); #ifdef F_HAVE_LIBGPM CPPUNIT_TEST (gpmMouseTest); #endif CPPUNIT_TEST (x11MouseTest); CPPUNIT_TEST (sgrMouseTest); CPPUNIT_TEST (urxvtMouseTest); CPPUNIT_TEST (mouseControlTest); // End of test suite definition CPPUNIT_TEST_SUITE_END(); }; //---------------------------------------------------------------------- void FMouseTest::classNameTest() { test::FMouse_protected m; const finalcut::FString& classname1 = m.getClassName(); CPPUNIT_ASSERT ( classname1 == "FMouse" ); #ifdef F_HAVE_LIBGPM finalcut::FMouseGPM gpm_mouse; const finalcut::FString& classname2 = gpm_mouse.getClassName(); CPPUNIT_ASSERT ( classname2 == "FMouseGPM" ); #endif finalcut::FMouseX11 x11_mouse; const finalcut::FString& classname3 = x11_mouse.getClassName(); CPPUNIT_ASSERT ( classname3 == "FMouseX11" ); finalcut::FMouseSGR sgr_mouse; const finalcut::FString& classname4 = sgr_mouse.getClassName(); CPPUNIT_ASSERT ( classname4 == "FMouseSGR" ); finalcut::FMouseUrxvt urxvt_mouse; const finalcut::FString& classname5 = urxvt_mouse.getClassName(); CPPUNIT_ASSERT ( classname5 == "FMouseUrxvt" ); finalcut::FMouseControl mouse_control; const finalcut::FString& classname6 = mouse_control.getClassName(); CPPUNIT_ASSERT ( classname6 == "FMouseControl" ); } //---------------------------------------------------------------------- void FMouseTest::noArgumentTest() { test::FMouse_protected mouse; CPPUNIT_ASSERT ( mouse.getPos() == finalcut::FPoint(0, 0) ); CPPUNIT_ASSERT ( mouse.getNewMousePosition() == finalcut::FPoint(0, 0) ); CPPUNIT_ASSERT ( ! mouse.hasEvent() ); CPPUNIT_ASSERT ( ! mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! mouse.isMoved() ); CPPUNIT_ASSERT ( ! mouse.hasUnprocessedInput() ); #ifdef F_HAVE_LIBGPM finalcut::FMouseGPM gpm_mouse; CPPUNIT_ASSERT ( ! gpm_mouse.hasData() ); #endif finalcut::FMouseX11 x11_mouse; CPPUNIT_ASSERT ( ! x11_mouse.hasData() ); finalcut::FMouseSGR sgr_mouse; CPPUNIT_ASSERT ( ! sgr_mouse.hasData() ); finalcut::FMouseUrxvt urxvt_mouse; CPPUNIT_ASSERT ( ! urxvt_mouse.hasData() ); finalcut::FMouseControl mouse_control; CPPUNIT_ASSERT ( ! mouse_control.hasData() ); } //---------------------------------------------------------------------- void FMouseTest::doubleClickTest() { using finalcut::operator -; test::FMouse_protected mouse; CPPUNIT_ASSERT ( mouse.getDblclickInterval() == 500000 ); // 500 ms TimeValue tv = {}; CPPUNIT_ASSERT ( mouse.isDblclickTimeout(tv) ); tv = finalcut::FObject::getCurrentTime(); CPPUNIT_ASSERT ( ! mouse.isDblclickTimeout(tv) ); tv -= std::chrono::seconds(1); // Minus one second CPPUNIT_ASSERT ( mouse.isDblclickTimeout(tv) ); mouse.setDblclickInterval(1000000); tv = finalcut::FObject::getCurrentTime(); CPPUNIT_ASSERT ( ! mouse.isDblclickTimeout(tv) ); auto tv_delta = std::chrono::microseconds(500000); tv -= tv_delta; CPPUNIT_ASSERT ( ! mouse.isDblclickTimeout(tv) ); tv -= tv_delta; CPPUNIT_ASSERT ( mouse.isDblclickTimeout(tv) ); } //---------------------------------------------------------------------- void FMouseTest::workspaceSizeTest() { test::FMouse_protected mouse; CPPUNIT_ASSERT ( mouse.getMaxWidth() == 80 ); CPPUNIT_ASSERT ( mouse.getMaxHeight() == 25 ); mouse.setMaxWidth(92); mouse.setMaxHeight(30); CPPUNIT_ASSERT ( mouse.getMaxWidth() == 92 ); CPPUNIT_ASSERT ( mouse.getMaxHeight() == 30 ); } #ifdef F_HAVE_LIBGPM //---------------------------------------------------------------------- void FMouseTest::gpmMouseTest() { finalcut::FMouseGPM gpm_mouse; gpm_mouse.setStdinNo(fileno(stdin)); CPPUNIT_ASSERT ( ! gpm_mouse.isGpmMouseEnabled() ); if ( gpm_mouse.enableGpmMouse() ) { CPPUNIT_ASSERT ( gpm_mouse.isGpmMouseEnabled() ); CPPUNIT_ASSERT ( ! gpm_mouse.hasEvent() ); } else CPPUNIT_ASSERT ( ! gpm_mouse.isGpmMouseEnabled() ); gpm_mouse.disableGpmMouse(); CPPUNIT_ASSERT ( ! gpm_mouse.isGpmMouseEnabled() ); } #endif //---------------------------------------------------------------------- void FMouseTest::x11MouseTest() { finalcut::FMouseX11 x11_mouse; CPPUNIT_ASSERT ( ! x11_mouse.hasData() ); finalcut::FKeyboard::keybuffer rawdata1 = \ { 0x1b, '[', 'M', 0x23, 0x50, 0x32, 0x40, 0x40 }; x11_mouse.setRawData (rawdata1); CPPUNIT_ASSERT ( x11_mouse.hasData() ); CPPUNIT_ASSERT ( x11_mouse.hasUnprocessedInput() ); CPPUNIT_ASSERT ( std::strcmp(rawdata1, "@@") == 0 ); auto tv = finalcut::FObject::getCurrentTime(); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( x11_mouse.getPos() == finalcut::FPoint(48, 18) ); CPPUNIT_ASSERT ( x11_mouse.hasEvent() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! x11_mouse.isMoved() ); // The same input again finalcut::FKeyboard::keybuffer raw = \ { 0x1b, '[', 'M', 0x23, 0x50, 0x32 }; x11_mouse.setRawData (raw); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! x11_mouse.hasEvent() ); // Left mouse button pressed finalcut::FKeyboard::keybuffer rawdata2 = \ { 0x1b, '[', 'M', 0x20, 0x21, 0x21 }; x11_mouse.setRawData (rawdata2); CPPUNIT_ASSERT ( x11_mouse.hasData() ); CPPUNIT_ASSERT ( ! x11_mouse.hasUnprocessedInput() ); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! x11_mouse.hasData() ); CPPUNIT_ASSERT ( x11_mouse.getPos() == finalcut::FPoint(1, 1) ); CPPUNIT_ASSERT ( x11_mouse.hasEvent() ); CPPUNIT_ASSERT ( x11_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! x11_mouse.isMoved() ); // Left mouse button released finalcut::FKeyboard::keybuffer rawdata3 = \ { 0x1b, '[', 'M', 0x23, 0x21, 0x21 }; x11_mouse.setRawData (rawdata3); CPPUNIT_ASSERT ( x11_mouse.hasData() ); CPPUNIT_ASSERT ( ! x11_mouse.hasUnprocessedInput() ); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! x11_mouse.hasData() ); CPPUNIT_ASSERT ( x11_mouse.getPos() == finalcut::FPoint(1, 1) ); CPPUNIT_ASSERT ( x11_mouse.hasEvent() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( x11_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! x11_mouse.isMoved() ); // Left mouse button pressed again (double click) finalcut::FKeyboard::keybuffer rawdata4 = \ { 0x1b, '[', 'M', 0x20, 0x21, 0x21 }; x11_mouse.setRawData (rawdata4); CPPUNIT_ASSERT ( x11_mouse.hasData() ); CPPUNIT_ASSERT ( ! x11_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! x11_mouse.hasData() ); CPPUNIT_ASSERT ( x11_mouse.getPos() == finalcut::FPoint(1, 1) ); CPPUNIT_ASSERT ( x11_mouse.hasEvent() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( x11_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! x11_mouse.isMoved() ); // Middle mouse button finalcut::FKeyboard::keybuffer rawdata5 = \ { 0x1b, '[', 'M', 0x21, 0x21, 0x21 , 0x1b, '[', 'M', 0x23, 0x21, 0x21 }; x11_mouse.setRawData (rawdata5); CPPUNIT_ASSERT ( x11_mouse.hasData() ); CPPUNIT_ASSERT ( x11_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! x11_mouse.hasData() ); CPPUNIT_ASSERT ( x11_mouse.getPos() == finalcut::FPoint(1, 1) ); CPPUNIT_ASSERT ( x11_mouse.hasEvent() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( x11_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! x11_mouse.isMoved() ); x11_mouse.setRawData (rawdata5); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! x11_mouse.hasUnprocessedInput() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( x11_mouse.isMiddleButtonReleased() ); // Right mouse button finalcut::FKeyboard::keybuffer rawdata6 = \ { 0x1b, '[', 'M', 0x22, 0x21, 0x21 , 0x1b, '[', 'M', 0x23, 0x21, 0x21 }; x11_mouse.setRawData (rawdata6); CPPUNIT_ASSERT ( x11_mouse.hasData() ); CPPUNIT_ASSERT ( x11_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! x11_mouse.hasData() ); CPPUNIT_ASSERT ( x11_mouse.getPos() == finalcut::FPoint(1, 1) ); CPPUNIT_ASSERT ( x11_mouse.hasEvent() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( x11_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! x11_mouse.isMoved() ); x11_mouse.setRawData (rawdata6); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! x11_mouse.hasUnprocessedInput() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( x11_mouse.isRightButtonReleased() ); // Mouse wheel finalcut::FKeyboard::keybuffer rawdata7 = \ { 0x1b, '[', 'M', 0x60, 0x70, 0x39 , 0x1b, '[', 'M', 0x61, 0x70, 0x39 }; x11_mouse.setRawData (rawdata7); CPPUNIT_ASSERT ( x11_mouse.hasData() ); CPPUNIT_ASSERT ( x11_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! x11_mouse.hasData() ); CPPUNIT_ASSERT ( x11_mouse.getPos() == finalcut::FPoint(80, 25) ); CPPUNIT_ASSERT ( x11_mouse.hasEvent() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( x11_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! x11_mouse.isMoved() ); x11_mouse.setRawData (rawdata7); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! x11_mouse.hasUnprocessedInput() ); CPPUNIT_ASSERT ( x11_mouse.isWheelDown() ); // Mouse move finalcut::FKeyboard::keybuffer rawdata8 = \ { 0x1b, '[', 'M', 0x20, 0x21, 0x21 , 0x1b, '[', 'M', 0x40, 0x23, 0x25 , 0x1b, '[', 'M', 0x23, 0x23, 0x25 }; x11_mouse.setRawData (rawdata8); CPPUNIT_ASSERT ( x11_mouse.hasData() ); CPPUNIT_ASSERT ( x11_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! x11_mouse.hasData() ); CPPUNIT_ASSERT ( x11_mouse.getPos() == finalcut::FPoint(1, 1) ); CPPUNIT_ASSERT ( x11_mouse.hasEvent() ); CPPUNIT_ASSERT ( x11_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! x11_mouse.isMoved() ); x11_mouse.setRawData (rawdata8); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( x11_mouse.getPos() == finalcut::FPoint(3, 5) ); CPPUNIT_ASSERT ( x11_mouse.isMoved() ); x11_mouse.setRawData (rawdata8); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( x11_mouse.getPos() == finalcut::FPoint(3, 5) ); CPPUNIT_ASSERT ( ! x11_mouse.isMoved() ); // Mouse + keyboard modifier key finalcut::FKeyboard::keybuffer rawdata9 = \ { 0x1b, '[', 'M', 0x24, 0x30, 0x40 , 0x1b, '[', 'M', 0x28, 0x30, 0x40 , 0x1b, '[', 'M', 0x30, 0x30, 0x40 , 0x1b, '[', 'M', 0x3c, 0x30, 0x40 }; x11_mouse.setRawData (rawdata9); CPPUNIT_ASSERT ( x11_mouse.hasData() ); CPPUNIT_ASSERT ( x11_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! x11_mouse.hasData() ); CPPUNIT_ASSERT ( x11_mouse.getPos() == finalcut::FPoint(16, 32) ); CPPUNIT_ASSERT ( x11_mouse.hasEvent() ); CPPUNIT_ASSERT ( x11_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( x11_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! x11_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! x11_mouse.isMoved() ); x11_mouse.setRawData (rawdata9); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( x11_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( x11_mouse.isMetaKeyPressed() ); x11_mouse.setRawData (rawdata9); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( x11_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( x11_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! x11_mouse.isMetaKeyPressed() ); x11_mouse.setRawData (rawdata9); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( x11_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( x11_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( x11_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( x11_mouse.isMetaKeyPressed() ); // Clear event test finalcut::FKeyboard::keybuffer rawdata10 = \ { 0x1b, '[', 'M', 0x20, 0x7f, 0x3f }; x11_mouse.setRawData (rawdata10); CPPUNIT_ASSERT ( x11_mouse.hasData() ); x11_mouse.processEvent (tv); CPPUNIT_ASSERT ( x11_mouse.hasEvent() ); x11_mouse.clearEvent(); CPPUNIT_ASSERT ( ! x11_mouse.hasEvent() ); } //---------------------------------------------------------------------- void FMouseTest::sgrMouseTest() { finalcut::FMouseSGR sgr_mouse; CPPUNIT_ASSERT ( ! sgr_mouse.hasData() ); // Left mouse button pressed finalcut::FKeyboard::keybuffer rawdata1 = \ { 0x1b, '[', '<', '0', ';', '7' , '3', ';', '4', 'M', '@', '@' }; sgr_mouse.setRawData (rawdata1); CPPUNIT_ASSERT ( sgr_mouse.hasData() ); CPPUNIT_ASSERT ( sgr_mouse.hasUnprocessedInput() ); CPPUNIT_ASSERT ( std::strcmp(rawdata1, "@@") == 0 ); auto tv = finalcut::FObject::getCurrentTime(); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( sgr_mouse.getPos() == finalcut::FPoint(73, 4) ); CPPUNIT_ASSERT ( sgr_mouse.hasEvent() ); CPPUNIT_ASSERT ( sgr_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! sgr_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! sgr_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMoved() ); // The same input again finalcut::FKeyboard::keybuffer raw = \ { 0x1b, '[', '<', '0', ';', '7', '3', ';', '4', 'M' }; sgr_mouse.setRawData (raw); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! sgr_mouse.hasEvent() ); // Left mouse button released finalcut::FKeyboard::keybuffer rawdata2 = \ { 0x1b, '[', '<', '0', ';', '7', '3', ';', '4', 'm' }; sgr_mouse.setRawData (rawdata2); CPPUNIT_ASSERT ( sgr_mouse.hasData() ); CPPUNIT_ASSERT ( ! sgr_mouse.hasUnprocessedInput() ); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! sgr_mouse.hasData() ); CPPUNIT_ASSERT ( sgr_mouse.getPos() == finalcut::FPoint(73, 4) ); CPPUNIT_ASSERT ( sgr_mouse.hasEvent() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( sgr_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! sgr_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! sgr_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMoved() ); // Left mouse button pressed again (double click) finalcut::FKeyboard::keybuffer rawdata4 = \ { 0x1b, '[', '<', '0', ';', '7', '3', ';', '4', 'M' }; sgr_mouse.setRawData (rawdata4); CPPUNIT_ASSERT ( sgr_mouse.hasData() ); CPPUNIT_ASSERT ( ! sgr_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! sgr_mouse.hasData() ); CPPUNIT_ASSERT ( sgr_mouse.getPos() == finalcut::FPoint(73, 4) ); CPPUNIT_ASSERT ( sgr_mouse.hasEvent() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( sgr_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! sgr_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! sgr_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMoved() ); // Middle mouse button finalcut::FKeyboard::keybuffer rawdata5 = \ { 0x1b, '[', '<', '1', ';', '1', ';', '1', 'M' , 0x1b, '[', '<', '1', ';', '1', ';', '1', 'm' }; sgr_mouse.setRawData (rawdata5); CPPUNIT_ASSERT ( sgr_mouse.hasData() ); CPPUNIT_ASSERT ( sgr_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! sgr_mouse.hasData() ); CPPUNIT_ASSERT ( sgr_mouse.getPos() == finalcut::FPoint(1, 1) ); CPPUNIT_ASSERT ( sgr_mouse.hasEvent() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! sgr_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( sgr_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! sgr_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMoved() ); sgr_mouse.setRawData (rawdata5); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! sgr_mouse.hasUnprocessedInput() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( sgr_mouse.isMiddleButtonReleased() ); // Right mouse button finalcut::FKeyboard::keybuffer rawdata6 = \ { 0x1b, '[', '<', '2', ';', '3', ';', '3', 'M' , 0x1b, '[', '<', '2', ';', '3', ';', '4', 'm' }; sgr_mouse.setRawData (rawdata6); CPPUNIT_ASSERT ( sgr_mouse.hasData() ); CPPUNIT_ASSERT ( sgr_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! sgr_mouse.hasData() ); CPPUNIT_ASSERT ( sgr_mouse.getPos() == finalcut::FPoint(3, 3) ); CPPUNIT_ASSERT ( sgr_mouse.hasEvent() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( sgr_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! sgr_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMoved() ); sgr_mouse.setRawData (rawdata6); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( sgr_mouse.getPos() == finalcut::FPoint(3, 4) ); CPPUNIT_ASSERT ( ! sgr_mouse.hasUnprocessedInput() ); CPPUNIT_ASSERT ( ! sgr_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( sgr_mouse.isRightButtonReleased() ); // Mouse wheel finalcut::FKeyboard::keybuffer rawdata7 = \ { 0x1b, '[', '<', '6', '4', ';', '4', ';', '9', 'M' , 0x1b, '[', '<', '6', '5', ';', '4', ';', '9', 'M' }; sgr_mouse.setRawData (rawdata7); CPPUNIT_ASSERT ( sgr_mouse.hasData() ); CPPUNIT_ASSERT ( sgr_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! sgr_mouse.hasData() ); CPPUNIT_ASSERT ( sgr_mouse.getPos() == finalcut::FPoint(4, 9) ); CPPUNIT_ASSERT ( sgr_mouse.hasEvent() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! sgr_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( sgr_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! sgr_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMoved() ); sgr_mouse.setRawData (rawdata7); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! sgr_mouse.hasUnprocessedInput() ); CPPUNIT_ASSERT ( sgr_mouse.isWheelDown() ); // Mouse move finalcut::FKeyboard::keybuffer rawdata8 = \ { 0x1b, '[', '<', '0', ';', '1', ';', '2', 'M' , 0x1b, '[', '<', '3', '2', ';', '2', ';', '3', 'M' , 0x1b, '[', '<', '0', ';', '3', ';', '4', 'm' }; sgr_mouse.setRawData (rawdata8); CPPUNIT_ASSERT ( sgr_mouse.hasData() ); CPPUNIT_ASSERT ( sgr_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! sgr_mouse.hasData() ); CPPUNIT_ASSERT ( sgr_mouse.getPos() == finalcut::FPoint(1, 2) ); CPPUNIT_ASSERT ( sgr_mouse.hasEvent() ); CPPUNIT_ASSERT ( sgr_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! sgr_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! sgr_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMoved() ); sgr_mouse.setRawData (rawdata8); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( sgr_mouse.getPos() == finalcut::FPoint(2, 3) ); CPPUNIT_ASSERT ( sgr_mouse.isMoved() ); sgr_mouse.setRawData (rawdata8); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( sgr_mouse.getPos() == finalcut::FPoint(3, 4) ); CPPUNIT_ASSERT ( ! sgr_mouse.isMoved() ); // Mouse + keyboard modifier key finalcut::FKeyboard::keybuffer rawdata9 = \ { 0x1b, '[', '<', '4', ';', '5', ';', '5', 'M' , 0x1b, '[', '<', '8', ';', '5', ';', '5', 'M' , 0x1b, '[', '<', '1', '6', ';', '5', ';', '5', 'M' , 0x1b, '[', '<', '2', '8', ';', '5', ';', '5', 'M' }; sgr_mouse.setRawData (rawdata9); CPPUNIT_ASSERT ( sgr_mouse.hasData() ); CPPUNIT_ASSERT ( sgr_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! sgr_mouse.hasData() ); CPPUNIT_ASSERT ( sgr_mouse.getPos() == finalcut::FPoint(5, 5) ); CPPUNIT_ASSERT ( sgr_mouse.hasEvent() ); CPPUNIT_ASSERT ( sgr_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! sgr_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( sgr_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! sgr_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMoved() ); sgr_mouse.setRawData (rawdata9); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( sgr_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( sgr_mouse.isMetaKeyPressed() ); sgr_mouse.setRawData (rawdata9); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( sgr_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( sgr_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! sgr_mouse.isMetaKeyPressed() ); sgr_mouse.setRawData (rawdata9); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( sgr_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( sgr_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( sgr_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( sgr_mouse.isMetaKeyPressed() ); // Clear event test finalcut::FKeyboard::keybuffer rawdata10 = \ { 0x1b, '[', '<', '2', ';', '1', ';', '1', 'M' }; sgr_mouse.setRawData (rawdata10); CPPUNIT_ASSERT ( sgr_mouse.hasData() ); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( sgr_mouse.hasEvent() ); sgr_mouse.clearEvent(); CPPUNIT_ASSERT ( ! sgr_mouse.hasEvent() ); // Wrong mouse data finalcut::FKeyboard::keybuffer rawdata11 = \ { 0x1b, '[', '<', '2', 'O', ';', '2', ';', '2', 'M' , 0x1b, '[', '<', '1', ';', 'x', ';', '3', 'M' , 0x1b, '[', '<', '6', ';', '5', ';', '@', 'M', '@' }; sgr_mouse.setRawData (rawdata11); CPPUNIT_ASSERT ( sgr_mouse.hasData() ); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! sgr_mouse.hasEvent() ); sgr_mouse.setRawData (rawdata11); CPPUNIT_ASSERT ( sgr_mouse.hasData() ); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! sgr_mouse.hasEvent() ); sgr_mouse.setRawData (rawdata11); CPPUNIT_ASSERT ( sgr_mouse.hasData() ); sgr_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! sgr_mouse.hasEvent() ); CPPUNIT_ASSERT ( sgr_mouse.hasUnprocessedInput() ); CPPUNIT_ASSERT ( std::strcmp(rawdata11, "@") == 0 ); } //---------------------------------------------------------------------- void FMouseTest::urxvtMouseTest() { finalcut::FMouseUrxvt urxvt_mouse; CPPUNIT_ASSERT ( ! urxvt_mouse.hasData() ); // Left mouse button pressed finalcut::FKeyboard::keybuffer rawdata1 = \ { 0x1b, '[', '3', '2', ';', '4' , '9', ';', '6', 'M', '@', '@' }; urxvt_mouse.setRawData (rawdata1); CPPUNIT_ASSERT ( urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.hasUnprocessedInput() ); CPPUNIT_ASSERT ( std::strcmp(rawdata1, "@@") == 0 ); auto tv = finalcut::FObject::getCurrentTime(); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( urxvt_mouse.getPos() == finalcut::FPoint(49, 6) ); CPPUNIT_ASSERT ( urxvt_mouse.hasEvent() ); CPPUNIT_ASSERT ( urxvt_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMoved() ); // The same input again finalcut::FKeyboard::keybuffer raw = \ { 0x1b, '[', '3', '2', ';', '4', '9', ';', '6', 'M' }; urxvt_mouse.setRawData (raw); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! urxvt_mouse.hasEvent() ); // Left mouse button released finalcut::FKeyboard::keybuffer rawdata2 = \ { 0x1b, '[', '3', '5', ';', '4', '9', ';', '6', 'M' }; urxvt_mouse.setRawData (rawdata2); CPPUNIT_ASSERT ( urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( ! urxvt_mouse.hasUnprocessedInput() ); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.getPos() == finalcut::FPoint(49, 6) ); CPPUNIT_ASSERT ( urxvt_mouse.hasEvent() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( urxvt_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMoved() ); // Left mouse button pressed again (double click) finalcut::FKeyboard::keybuffer rawdata4 = \ { 0x1b, '[', '3', '2', ';', '4', '9', ';', '6', 'M' }; urxvt_mouse.setRawData (rawdata4); CPPUNIT_ASSERT ( urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( ! urxvt_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.getPos() == finalcut::FPoint(49, 6) ); CPPUNIT_ASSERT ( urxvt_mouse.hasEvent() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( urxvt_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMoved() ); // Middle mouse button finalcut::FKeyboard::keybuffer rawdata5 = \ { 0x1b, '[', '3', '3', ';', '1', ';', '1', 'M' , 0x1b, '[', '3', '5', ';', '1', ';', '1', 'M' }; urxvt_mouse.setRawData (rawdata5); CPPUNIT_ASSERT ( urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.getPos() == finalcut::FPoint(1, 1) ); CPPUNIT_ASSERT ( urxvt_mouse.hasEvent() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( urxvt_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMoved() ); urxvt_mouse.setRawData (rawdata5); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! urxvt_mouse.hasUnprocessedInput() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( urxvt_mouse.isMiddleButtonReleased() ); // Right mouse button finalcut::FKeyboard::keybuffer rawdata6 = \ { 0x1b, '[', '3', '4', ';', '3', ';', '3', 'M' , 0x1b, '[', '3', '5', ';', '3', ';', '4', 'M' }; urxvt_mouse.setRawData (rawdata6); CPPUNIT_ASSERT ( urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.getPos() == finalcut::FPoint(3, 3) ); CPPUNIT_ASSERT ( urxvt_mouse.hasEvent() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( urxvt_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMoved() ); urxvt_mouse.setRawData (rawdata6); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( urxvt_mouse.getPos() == finalcut::FPoint(3, 4) ); CPPUNIT_ASSERT ( ! urxvt_mouse.hasUnprocessedInput() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( urxvt_mouse.isRightButtonReleased() ); // Mouse wheel finalcut::FKeyboard::keybuffer rawdata7 = \ { 0x1b, '[', '9', '6', ';', '4', ';', '9', 'M' , 0x1b, '[', '9', '7', ';', '4', ';', '9', 'M' }; urxvt_mouse.setRawData (rawdata7); CPPUNIT_ASSERT ( urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.getPos() == finalcut::FPoint(4, 9) ); CPPUNIT_ASSERT ( urxvt_mouse.hasEvent() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( urxvt_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMoved() ); urxvt_mouse.setRawData (rawdata7); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! urxvt_mouse.hasUnprocessedInput() ); CPPUNIT_ASSERT ( urxvt_mouse.isWheelDown() ); // Mouse move finalcut::FKeyboard::keybuffer rawdata8 = \ { 0x1b, '[', '3', '2', ';', '1', ';', '2', 'M' , 0x1b, '[', '6', '4', ';', '2', ';', '3', 'M' , 0x1b, '[', '3', '5', ';', '3', ';', '4', 'M' }; urxvt_mouse.setRawData (rawdata8); CPPUNIT_ASSERT ( urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.getPos() == finalcut::FPoint(1, 2) ); CPPUNIT_ASSERT ( urxvt_mouse.hasEvent() ); CPPUNIT_ASSERT ( urxvt_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMoved() ); urxvt_mouse.setRawData (rawdata8); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( urxvt_mouse.getPos() == finalcut::FPoint(2, 3) ); CPPUNIT_ASSERT ( urxvt_mouse.isMoved() ); urxvt_mouse.setRawData (rawdata8); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( urxvt_mouse.getPos() == finalcut::FPoint(3, 4) ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMoved() ); // Mouse + keyboard modifier key finalcut::FKeyboard::keybuffer rawdata9 = \ { 0x1b, '[', '3', '6', ';', '5', ';', '5', 'M' , 0x1b, '[', '4', '0', ';', '5', ';', '5', 'M' , 0x1b, '[', '4', '8', ';', '5', ';', '5', 'M' , 0x1b, '[', '6', '0', ';', '5', ';', '5', 'M' }; urxvt_mouse.setRawData (rawdata9); CPPUNIT_ASSERT ( urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.getPos() == finalcut::FPoint(5, 5) ); CPPUNIT_ASSERT ( urxvt_mouse.hasEvent() ); CPPUNIT_ASSERT ( urxvt_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( urxvt_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isWheelUp() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isWheelDown() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMoved() ); urxvt_mouse.setRawData (rawdata9); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( urxvt_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( urxvt_mouse.isMetaKeyPressed() ); urxvt_mouse.setRawData (rawdata9); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( urxvt_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( urxvt_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! urxvt_mouse.isMetaKeyPressed() ); urxvt_mouse.setRawData (rawdata9); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( urxvt_mouse.isLeftButtonPressed() ); CPPUNIT_ASSERT ( urxvt_mouse.isShiftKeyPressed() ); CPPUNIT_ASSERT ( urxvt_mouse.isControlKeyPressed() ); CPPUNIT_ASSERT ( urxvt_mouse.isMetaKeyPressed() ); // Clear event test finalcut::FKeyboard::keybuffer rawdata10 = \ { 0x1b, '[', '3', '2', ';', '1', ';', '1', 'M' }; urxvt_mouse.setRawData (rawdata10); CPPUNIT_ASSERT ( urxvt_mouse.hasData() ); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( urxvt_mouse.hasEvent() ); urxvt_mouse.clearEvent(); CPPUNIT_ASSERT ( ! urxvt_mouse.hasEvent() ); // Wrong mouse data finalcut::FKeyboard::keybuffer rawdata11 = \ { 0x1b, '[', '3', 'O', ';', '2', ';', '2', 'M' , 0x1b, '[', '3', '3', ';', 'x', ';', '3', 'M' , 0x1b, '[', '3', '4', ';', '5', ';', '@', 'M', '@' }; urxvt_mouse.setRawData (rawdata11); CPPUNIT_ASSERT ( urxvt_mouse.hasData() ); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! urxvt_mouse.hasEvent() ); urxvt_mouse.setRawData (rawdata11); CPPUNIT_ASSERT ( urxvt_mouse.hasData() ); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! urxvt_mouse.hasEvent() ); urxvt_mouse.setRawData (rawdata11); CPPUNIT_ASSERT ( urxvt_mouse.hasData() ); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! urxvt_mouse.hasEvent() ); CPPUNIT_ASSERT ( urxvt_mouse.hasUnprocessedInput() ); CPPUNIT_ASSERT ( std::strcmp(rawdata11, "@") == 0 ); // Negative values finalcut::FKeyboard::keybuffer rawdata12 = \ { 0x1b, '[', '3', '2', ';', '-', '5', ';', '5', 'M' , 0x1b, '[', '3', '2', ';', '3', ';', '-', '3', 'M' }; urxvt_mouse.setRawData (rawdata12); CPPUNIT_ASSERT ( urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.hasUnprocessedInput() ); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.getPos() != finalcut::FPoint(-5, 5) ); CPPUNIT_ASSERT ( urxvt_mouse.getPos() == finalcut::FPoint(1, 5) ); CPPUNIT_ASSERT ( urxvt_mouse.hasEvent() ); urxvt_mouse.setRawData (rawdata12); CPPUNIT_ASSERT ( urxvt_mouse.hasData() ); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.getPos() != finalcut::FPoint(3, -3) ); CPPUNIT_ASSERT ( urxvt_mouse.getPos() == finalcut::FPoint(3, 1) ); CPPUNIT_ASSERT ( urxvt_mouse.hasEvent() ); // Oversize values urxvt_mouse.setMaxWidth(40); urxvt_mouse.setMaxHeight(20); finalcut::FKeyboard::keybuffer rawdata13 = \ { 0x1b, '[', '3', '2', ';', '7', '0', ';', '2', '5', 'M' }; urxvt_mouse.setRawData (rawdata13); CPPUNIT_ASSERT ( urxvt_mouse.hasData() ); urxvt_mouse.processEvent (tv); CPPUNIT_ASSERT ( ! urxvt_mouse.hasData() ); CPPUNIT_ASSERT ( urxvt_mouse.getPos() != finalcut::FPoint(70, 25) ); CPPUNIT_ASSERT ( urxvt_mouse.getPos() == finalcut::FPoint(40, 20) ); } //---------------------------------------------------------------------- void FMouseTest::mouseControlTest() { finalcut::FMouseControl mouse_control; mouse_control.setStdinNo(fileno(stdin)); mouse_control.setMaxWidth(100); mouse_control.setMaxHeight(40); mouse_control.clearEvent(); mouse_control.setDblclickInterval(750000); mouse_control.useGpmMouse(true); mouse_control.useXtermMouse(true); mouse_control.enable(); CPPUNIT_ASSERT ( ! mouse_control.hasData() ); CPPUNIT_ASSERT ( mouse_control.getPos() == finalcut::FPoint(0, 0) ); CPPUNIT_ASSERT ( ! mouse_control.hasEvent() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! mouse_control.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isWheelUp() ); CPPUNIT_ASSERT ( ! mouse_control.isWheelDown() ); CPPUNIT_ASSERT ( ! mouse_control.isMoved() ); CPPUNIT_ASSERT ( ! mouse_control.hasUnprocessedInput() ); if ( mouse_control.isGpmMouseEnabled() ) { CPPUNIT_ASSERT ( ! mouse_control.getGpmKeyPressed(false) ); mouse_control.drawPointer(); } // Left mouse button pressed on an X11 mouse finalcut::FKeyboard::keybuffer rawdata1 = \ { 0x1b, '[', 'M', 0x20, 0x25, 0x28 , 0x1b, '[', 'M', 0x23, 0x25, 0x28 }; mouse_control.setRawData (finalcut::FMouse::MouseType::X11, rawdata1); CPPUNIT_ASSERT ( mouse_control.hasData() ); CPPUNIT_ASSERT ( mouse_control.hasUnprocessedInput() ); auto tv = finalcut::FObject::getCurrentTime(); mouse_control.processEvent (tv); CPPUNIT_ASSERT ( ! mouse_control.hasData() ); CPPUNIT_ASSERT ( mouse_control.getPos() == finalcut::FPoint(5, 8) ); CPPUNIT_ASSERT ( mouse_control.hasEvent() ); CPPUNIT_ASSERT ( mouse_control.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! mouse_control.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isWheelUp() ); CPPUNIT_ASSERT ( ! mouse_control.isWheelDown() ); CPPUNIT_ASSERT ( ! mouse_control.isMoved() ); CPPUNIT_ASSERT ( mouse_control.hasUnprocessedInput() ); mouse_control.setRawData (finalcut::FMouse::MouseType::X11, rawdata1); mouse_control.processEvent (tv); CPPUNIT_ASSERT ( ! mouse_control.hasUnprocessedInput() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonPressed() ); CPPUNIT_ASSERT ( mouse_control.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonDoubleClick() ); // Middle mouse button on an SGR mouse finalcut::FKeyboard::keybuffer rawdata2 = \ { 0x1b, '[', '<', '1', ';', '1', ';', '1', 'M' , 0x1b, '[', '<', '1', ';', '1', ';', '1', 'm' }; mouse_control.setRawData (finalcut::FMouse::MouseType::Sgr, rawdata2); CPPUNIT_ASSERT ( mouse_control.hasData() ); CPPUNIT_ASSERT ( mouse_control.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); mouse_control.processEvent (tv); CPPUNIT_ASSERT ( ! mouse_control.hasData() ); CPPUNIT_ASSERT ( mouse_control.getPos() == finalcut::FPoint(1, 1) ); CPPUNIT_ASSERT ( mouse_control.hasEvent() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! mouse_control.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isRightButtonReleased() ); CPPUNIT_ASSERT ( mouse_control.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isWheelUp() ); CPPUNIT_ASSERT ( ! mouse_control.isWheelDown() ); CPPUNIT_ASSERT ( ! mouse_control.isMoved() ); mouse_control.setRawData (finalcut::FMouse::MouseType::Sgr, rawdata2); mouse_control.processEvent (tv); CPPUNIT_ASSERT ( ! mouse_control.hasUnprocessedInput() ); CPPUNIT_ASSERT ( ! mouse_control.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( mouse_control.isMiddleButtonReleased() ); // Right mouse button on a urxvt mouse finalcut::FKeyboard::keybuffer rawdata3 = { 0x1b, '[', '3', '4', ';', '3', ';', '3', 'M' , 0x1b, '[', '3', '5', ';', '3', ';', '4', 'M' }; mouse_control.setRawData (finalcut::FMouse::MouseType::Urxvt, rawdata3); CPPUNIT_ASSERT ( mouse_control.hasData() ); CPPUNIT_ASSERT ( mouse_control.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); mouse_control.processEvent (tv); CPPUNIT_ASSERT ( ! mouse_control.hasData() ); CPPUNIT_ASSERT ( mouse_control.getPos() == finalcut::FPoint(3, 3) ); CPPUNIT_ASSERT ( mouse_control.hasEvent() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( mouse_control.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isWheelUp() ); CPPUNIT_ASSERT ( ! mouse_control.isWheelDown() ); CPPUNIT_ASSERT ( ! mouse_control.isMoved() ); mouse_control.setRawData (finalcut::FMouse::MouseType::Urxvt, rawdata3); mouse_control.processEvent (tv); CPPUNIT_ASSERT ( mouse_control.getPos() == finalcut::FPoint(3, 4) ); CPPUNIT_ASSERT ( ! mouse_control.hasUnprocessedInput() ); CPPUNIT_ASSERT ( ! mouse_control.isRightButtonPressed() ); CPPUNIT_ASSERT ( mouse_control.isRightButtonReleased() ); // Mouse wheel on an X11 mouse finalcut::FKeyboard::keybuffer rawdata4 = \ { 0x1b, '[', 'M', 0x60, 0x70, 0x39 , 0x1b, '[', 'M', 0x61, 0x70, 0x39 }; mouse_control.setRawData (finalcut::FMouse::MouseType::X11, rawdata4); CPPUNIT_ASSERT ( mouse_control.hasData() ); CPPUNIT_ASSERT ( mouse_control.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); mouse_control.processEvent (tv); CPPUNIT_ASSERT ( ! mouse_control.hasData() ); CPPUNIT_ASSERT ( mouse_control.getPos() == finalcut::FPoint(80, 25) ); CPPUNIT_ASSERT ( mouse_control.hasEvent() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! mouse_control.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isMetaKeyPressed() ); CPPUNIT_ASSERT ( mouse_control.isWheelUp() ); CPPUNIT_ASSERT ( ! mouse_control.isWheelDown() ); CPPUNIT_ASSERT ( ! mouse_control.isMoved() ); mouse_control.setRawData (finalcut::FMouse::MouseType::X11, rawdata4); mouse_control.processEvent (tv); CPPUNIT_ASSERT ( ! mouse_control.hasUnprocessedInput() ); CPPUNIT_ASSERT ( mouse_control.isWheelDown() ); // Mouse move on an SGR mouse finalcut::FKeyboard::keybuffer rawdata5 = \ { 0x1b, '[', '<', '0', ';', '1', ';', '2', 'M' , 0x1b, '[', '<', '3', '2', ';', '2', ';', '3', 'M' , 0x1b, '[', '<', '0', ';', '3', ';', '4', 'm' }; mouse_control.setRawData (finalcut::FMouse::MouseType::Sgr, rawdata5); CPPUNIT_ASSERT ( mouse_control.hasData() ); CPPUNIT_ASSERT ( mouse_control.hasUnprocessedInput() ); tv = finalcut::FObject::getCurrentTime(); mouse_control.processEvent (tv); CPPUNIT_ASSERT ( ! mouse_control.hasData() ); CPPUNIT_ASSERT ( mouse_control.getPos() == finalcut::FPoint(1, 2) ); CPPUNIT_ASSERT ( mouse_control.hasEvent() ); CPPUNIT_ASSERT ( mouse_control.isLeftButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isLeftButtonDoubleClick() ); CPPUNIT_ASSERT ( ! mouse_control.isRightButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isRightButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isMiddleButtonPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isMiddleButtonReleased() ); CPPUNIT_ASSERT ( ! mouse_control.isShiftKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isControlKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isMetaKeyPressed() ); CPPUNIT_ASSERT ( ! mouse_control.isWheelUp() ); CPPUNIT_ASSERT ( ! mouse_control.isWheelDown() ); CPPUNIT_ASSERT ( ! mouse_control.isMoved() ); mouse_control.setRawData (finalcut::FMouse::MouseType::Sgr, rawdata5); mouse_control.processEvent (tv); CPPUNIT_ASSERT ( mouse_control.getPos() == finalcut::FPoint(2, 3) ); CPPUNIT_ASSERT ( mouse_control.isMoved() ); mouse_control.setRawData (finalcut::FMouse::MouseType::Sgr, rawdata5); mouse_control.processEvent (tv); CPPUNIT_ASSERT ( mouse_control.getPos() == finalcut::FPoint(3, 4) ); CPPUNIT_ASSERT ( ! mouse_control.isMoved() ); mouse_control.disable(); } // Put the test suite in the registry CPPUNIT_TEST_SUITE_REGISTRATION (FMouseTest); // The general unit test main part #include