initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
67
libs/wxWidgets-3.3.1/tests/testwindow.h
Normal file
67
libs/wxWidgets-3.3.1/tests/testwindow.h
Normal file
@@ -0,0 +1,67 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Name: tests/testwindow.h
|
||||
// Purpose: Unit test helper for comparing wxWindow pointers.
|
||||
// Author: Vadim Zeitlin
|
||||
// Copyright: (c) 2019 Vadim Zeitlin <vadim@wxwidgets.org>
|
||||
// Licence: wxWindows licence
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_TESTS_TESTWINDOW_H_
|
||||
#define _WX_TESTS_TESTWINDOW_H_
|
||||
|
||||
#include "wx/window.h"
|
||||
|
||||
#include <memory>
|
||||
|
||||
// We need to wrap wxWindow* in a class as specializing StringMaker for
|
||||
// wxWindow* doesn't seem to work.
|
||||
class wxWindowPtr
|
||||
{
|
||||
public:
|
||||
explicit wxWindowPtr(wxWindow* win) : m_win(win) {}
|
||||
template <typename W>
|
||||
explicit wxWindowPtr(const std::unique_ptr<W>& win) : m_win(win.get()) {}
|
||||
|
||||
wxString Dump() const
|
||||
{
|
||||
if ( !m_win )
|
||||
return "(no window)";
|
||||
|
||||
wxString s = m_win->GetClassInfo()->GetClassName();
|
||||
const wxString& label = m_win->GetLabel();
|
||||
if ( !label.empty() )
|
||||
{
|
||||
s += wxString::Format(" (label=\"%s\")", label);
|
||||
}
|
||||
|
||||
return s;
|
||||
}
|
||||
|
||||
private:
|
||||
friend bool operator==(wxWindowPtr wp1, wxWindowPtr wp2)
|
||||
{
|
||||
return wp1.m_win == wp2.m_win;
|
||||
}
|
||||
|
||||
wxWindow* const m_win;
|
||||
};
|
||||
|
||||
// Macro providing more information about the current focus if comparison
|
||||
// fails.
|
||||
#define CHECK_SAME_WINDOW(w1, w2) CHECK(wxWindowPtr(w1) == wxWindowPtr(w2))
|
||||
|
||||
#define CHECK_FOCUS_IS(w) CHECK_SAME_WINDOW(wxWindow::FindFocus(), w)
|
||||
|
||||
namespace Catch
|
||||
{
|
||||
template <>
|
||||
struct StringMaker<wxWindowPtr>
|
||||
{
|
||||
static std::string convert(const wxWindowPtr window)
|
||||
{
|
||||
return window.Dump().ToStdString();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
#endif // _WX_TESTS_TESTWINDOW_H_
|
||||
Reference in New Issue
Block a user