From 270c4915615e8e74c9605616f469a8e5c3b971a3 Mon Sep 17 00:00:00 2001 From: ExMix Date: Thu, 11 Dec 2014 12:02:00 +0300 Subject: [PATCH] [drape] move test widget to common lib --- drape/drape_tests/drape_tests.pro | 4 +-- drape/drape_tests/glyph_mng_tests.cpp | 51 +++------------------------ qt_tstfrm/qt_tstfrm.pro | 4 ++- qt_tstfrm/test_main_loop.cpp | 43 ++++++++++++++++++++++ qt_tstfrm/test_main_loop.hpp | 25 +++++++++++++ 5 files changed, 78 insertions(+), 49 deletions(-) create mode 100644 qt_tstfrm/test_main_loop.cpp create mode 100644 qt_tstfrm/test_main_loop.hpp diff --git a/drape/drape_tests/drape_tests.pro b/drape/drape_tests/drape_tests.pro index bc5508eaf0..570267106c 100644 --- a/drape/drape_tests/drape_tests.pro +++ b/drape/drape_tests/drape_tests.pro @@ -10,7 +10,7 @@ CONFIG -= app_bundle TEMPLATE = app DEFINES += OGL_TEST_ENABLED GTEST_DONT_DEFINE_TEST COMPILER_TESTS -DEPENDENCIES = platform coding base gmock freetype expat tomcrypt +DEPENDENCIES = qt_tstfrm platform coding base gmock freetype expat tomcrypt ROOT_DIR = ../.. SHADER_COMPILE_ARGS = $$PWD/../shaders shader_index.txt shader_def include($$ROOT_DIR/common.pri) @@ -36,11 +36,11 @@ SOURCES += \ compile_shaders_test.cpp \ batcher_tests.cpp \ pointers_tests.cpp \ - font_texture_tests.cpp \ bingind_info_tests.cpp \ stipple_pen_tests.cpp \ texture_of_colors_tests.cpp \ glyph_mng_tests.cpp \ + glyph_packer_test.cpp HEADERS += \ glmock_functions.hpp \ diff --git a/drape/drape_tests/glyph_mng_tests.cpp b/drape/drape_tests/glyph_mng_tests.cpp index d11d178d9f..6515ef1d7c 100644 --- a/drape/drape_tests/glyph_mng_tests.cpp +++ b/drape/drape_tests/glyph_mng_tests.cpp @@ -1,14 +1,11 @@ #include "../../testing/testing.hpp" - -#include -#include #include -#include + +#include "../../qt_tstfrm/test_main_loop.hpp" #include "../glyph_manager.hpp" #include "../../platform/platform.hpp" -#include "../../base/scope_guard.hpp" #include "../../std/cstring.hpp" #include "../../std/function.hpp" @@ -16,46 +13,6 @@ namespace { - class TestMainLoop : public QObject - { - public: - typedef function TRednerFn; - TestMainLoop(TRednerFn const & fn) : m_renderFn(fn) {} - - void exec(char const * testName) - { - char * buf = (char *)malloc(strlen(testName) + 1); - MY_SCOPE_GUARD(argvFreeFun, [&buf](){ free(buf); }) - strcpy(buf, testName); - - int argc = 1; - QApplication app(argc, &buf); - QTimer::singleShot(3000, &app, SLOT(quit())); - - QWidget w; - w.setWindowTitle(testName); - w.show(); - w.installEventFilter(this); - - app.exec(); - } - - protected: - bool eventFilter(QObject * obj, QEvent * event) - { - if (event->type() == QEvent::Paint) - { - m_renderFn(qobject_cast(obj)); - return true; - } - - return false; - } - - private: - TRednerFn m_renderFn; - }; - class GlyphRenderer { public: @@ -78,7 +35,9 @@ namespace void RenderGlyphs(QPaintDevice * device) { vector glyphs; - m_mng->GetGlyphs({0x58, 0x79, 0x439}, glyphs); + glyphs.push_back(m_mng->GetGlyph(0x58)); + glyphs.push_back(m_mng->GetGlyph(0x79)); + glyphs.push_back(m_mng->GetGlyph(0x439)); QPainter painter(device); painter.fillRect(QRectF(0.0, 0.0, device->width(), device->height()), Qt::white); diff --git a/qt_tstfrm/qt_tstfrm.pro b/qt_tstfrm/qt_tstfrm.pro index f71ac76c08..3e8fe9bda4 100644 --- a/qt_tstfrm/qt_tstfrm.pro +++ b/qt_tstfrm/qt_tstfrm.pro @@ -6,15 +6,17 @@ ROOT_DIR = .. include($$ROOT_DIR/common.pri) -QT *= core gui opengl +QT *= core gui widgets opengl HEADERS += \ tstwidgets.hpp \ macros.hpp \ gl_test_widget.hpp \ gui_test_widget.hpp \ + test_main_loop.hpp SOURCES += \ tstwidgets.cpp \ + test_main_loop.cpp diff --git a/qt_tstfrm/test_main_loop.cpp b/qt_tstfrm/test_main_loop.cpp new file mode 100644 index 0000000000..9108b2ceb0 --- /dev/null +++ b/qt_tstfrm/test_main_loop.cpp @@ -0,0 +1,43 @@ +#include "test_main_loop.hpp" + +#include +#include +#include + +#include "../base/scope_guard.hpp" + +#include "../std/cstring.hpp" + +TestMainLoop::TestMainLoop(TestMainLoop::TRednerFn const & fn) + : m_renderFn(fn) +{ +} + +void TestMainLoop::exec(char const * testName) +{ + char * buf = (char *)malloc(strlen(testName) + 1); + MY_SCOPE_GUARD(argvFreeFun, [&buf](){ free(buf); }); + strcpy(buf, testName); + + int argc = 1; + QApplication app(argc, &buf); + QTimer::singleShot(3000, &app, SLOT(quit())); + + QWidget w; + w.setWindowTitle(testName); + w.show(); + w.installEventFilter(this); + + app.exec(); +} + +bool TestMainLoop::eventFilter(QObject * obj, QEvent * event) +{ + if (event->type() == QEvent::Paint) + { + m_renderFn(qobject_cast(obj)); + return true; + } + + return false; +} diff --git a/qt_tstfrm/test_main_loop.hpp b/qt_tstfrm/test_main_loop.hpp new file mode 100644 index 0000000000..6e0b41b1d1 --- /dev/null +++ b/qt_tstfrm/test_main_loop.hpp @@ -0,0 +1,25 @@ +#pragma once + +#include + +#include "../std/function.hpp" + +class QPaintDevice; +class TestMainLoop : public QObject +{ + Q_OBJECT + +public: + + typedef function TRednerFn; + TestMainLoop(TRednerFn const & fn); + virtual ~TestMainLoop() {} + + void exec(char const * testName); + +protected: + bool eventFilter(QObject * obj, QEvent * event); + +private: + TRednerFn m_renderFn; +};