This class creates a window as a graphical user interface (GUI) for displaying images to the user.
For a list of supported events with the observer/observable pattern, see the discussion in mrpt::gui::CBaseGUIWindow.
Definition at line 29 of file CDisplayWindow.h.
#include <mrpt/gui/CDisplayWindow.h>
Public Member Functions | |
void * | operator new (size_t size) |
void * | operator new[] (size_t size) |
void | operator delete (void *ptr) throw () |
void | operator delete[] (void *ptr) throw () |
void | operator delete (void *memory, void *ptr) throw () |
void * | operator new (size_t size, const std::nothrow_t &) throw () |
void | operator delete (void *ptr, const std::nothrow_t &) throw () |
CDisplayWindow (const std::string &windowCaption=std::string(), unsigned int initWidth=400, unsigned int initHeight=400) | |
Constructor. More... | |
virtual | ~CDisplayWindow () |
Destructor. More... | |
virtual bool | getLastMousePosition (int &x, int &y) const MRPT_OVERRIDE |
Gets the last x,y pixel coordinates of the mouse. More... | |
virtual void | setCursorCross (bool cursorIsCross) MRPT_OVERRIDE |
Set cursor style to default (cursorIsCross=false) or to a cross (cursorIsCross=true) More... | |
void | showImageAndPoints (const mrpt::utils::CImage &img, const mrpt::math::CVectorFloat &x, const mrpt::math::CVectorFloat &y, const mrpt::utils::TColor &color=mrpt::utils::TColor::red, const bool &showNumbers=false) |
Show a given color or grayscale image on the window and print a set of points on it. More... | |
void | showImageAndPoints (const mrpt::utils::CImage &img, const std::vector< float > &x, const std::vector< float > &y, const mrpt::utils::TColor &color=mrpt::utils::TColor::red, const bool &showNumbers=false) |
template<class FEATURELIST > | |
void | showImageAndPoints (const mrpt::utils::CImage &img, const FEATURELIST &list, const mrpt::utils::TColor &color=mrpt::utils::TColor::red, const bool &showIDs=false) |
Show a given color or grayscale image on the window and print a set of points on it. More... | |
template<class FEATURELIST > | |
void | showTiledImageAndPoints (const mrpt::utils::CImage &img, const FEATURELIST &list, const mrpt::utils::TColor &color=mrpt::utils::TColor::red) |
Show a given color or grayscale image on the window and print a set of points on it and a set of lines splitting the image in tiles. More... | |
template<class MATCHEDLIST > | |
void | showImagesAndMatchedPoints (const mrpt::utils::CImage &img1, const mrpt::utils::CImage &img2, const MATCHEDLIST &mList, const mrpt::utils::TColor &color=mrpt::utils::TColor::red, bool showNumbers=false) |
Show a pair of given color or grayscale images (put together) on the window and print a set of matches on them. More... | |
template<class FEATURELIST > | |
void | showImagesAndMatchedPoints (const mrpt::utils::CImage &img1, const mrpt::utils::CImage &img2, const FEATURELIST &leftList, const FEATURELIST &rightList, const mrpt::utils::TColor &color=mrpt::utils::TColor::red) |
Show a pair of given color or grayscale images (put together) on the window and print a set of matches on them. More... | |
void | showImage (const mrpt::utils::CImage &img) |
Show a given color or grayscale image on the window. More... | |
void | plot (const mrpt::math::CVectorFloat &x, const mrpt::math::CVectorFloat &y) |
Plots a graph in MATLAB-like style. More... | |
void | plot (const mrpt::math::CVectorFloat &y) |
Plots a graph in MATLAB-like style. More... | |
void | resize (unsigned int width, unsigned int height) MRPT_OVERRIDE |
Resizes the window, stretching the image to fit into the display area. More... | |
void | setPos (int x, int y) MRPT_OVERRIDE |
Changes the position of the window on the screen. More... | |
void | enableCursorCoordinatesVisualization (bool enable) |
Enables or disables the visualization of cursor coordinates on the window caption (default = enabled). More... | |
void | setWindowTitle (const std::string &str) MRPT_OVERRIDE |
Changes the window title text. More... | |
void * | getWxObject () |
Read-only access to the wxDialog object. More... | |
void | notifyChildWindowDestruction () |
Called by wx main thread to set m_hwnd to NULL. More... | |
void | notifySemThreadReady () |
Called by wx main thread to signal the semaphore that the wx window is built and ready. More... | |
bool | isOpen () |
Returns false if the user has already closed the window. More... | |
int | waitForKey (bool ignoreControlKeys=true, mrptKeyModifier *out_pushModifier=NULL) |
Waits for any key to be pushed on the image or the console, and returns the key code. More... | |
bool | keyHit () const |
Returns true if a key has been pushed, without blocking waiting for a new key being pushed. More... | |
void | clearKeyHitFlag () |
Assure that "keyHit" will return false until the next pushed key. More... | |
int | getPushedKey (mrptKeyModifier *out_pushModifier=NULL) |
Returns the latest pushed key, or 0 if there is no new key stroke. More... | |
CObject * | clone () const |
Cloning interface for smart pointers. More... | |
RTTI classes and functions | |
mrpt::utils::CObjectPtr | duplicateGetSmartPtr () const |
Returns a copy of the object, indepently of its class, as a smart pointer (the newly created object will exist as long as any copy of this smart pointer). More... | |
Static Public Member Functions | |
static void * | operator new (size_t size, void *ptr) |
static CDisplayWindowPtr | Create (const std::string &windowCaption, unsigned int initWidth=400, unsigned int initHeight=400) |
Class factory returning a smart pointer. More... | |
Static Public Attributes | |
static const mrpt::utils::TRuntimeClassId | classCObject |
RTTI stuff | |
static const mrpt::utils::TRuntimeClassId | classCBaseGUIWindow |
Protected Member Functions | |
void | createWxWindow (unsigned int initialWidth, unsigned int initialHeight) |
Must be called by child classes just within the constructor. More... | |
void | destroyWxWindow () |
Must be called by child classes in their destructors. The code cannot be put into this class' destructor. More... | |
void | publishEvent (const mrptEvent &e) const |
Called when you want this object to emit an event to all the observers currently subscribed to this object. More... | |
bool | hasSubscribers () const |
Can be called by a derived class before preparing an event for publishing with publishEvent to determine if there is no one subscribed, so it can save the wasted time preparing an event that will be not read. More... | |
Protected Attributes | |
bool | m_enableCursorCoordinates |
Enables or disables the visualization of cursor coordinates on the window caption. More... | |
synch::CSemaphore | m_semThreadReady |
This semaphore will be signaled when the wx window is built and ready. More... | |
synch::CSemaphore | m_semWindowDestroyed |
This semaphore will be signaled when the wx window is destroyed. More... | |
std::string | m_caption |
The caption of the window. More... | |
mrpt::utils::void_ptr_noncopy | m_hwnd |
The window handle. More... | |
volatile bool | m_keyPushed |
volatile int | m_keyPushedCode |
volatile mrptKeyModifier | m_keyPushedModifier |
RTTI stuff | |
typedef CDisplayWindowPtr | Ptr |
typedef CDisplayWindowPtr | ConstPtr |
static mrpt::utils::CLASSINIT | _init_CDisplayWindow |
static mrpt::utils::TRuntimeClassId | classCDisplayWindow |
static const mrpt::utils::TRuntimeClassId * | classinfo |
static const mrpt::utils::TRuntimeClassId * | _GetBaseClass () |
virtual const mrpt::utils::TRuntimeClassId * | GetRuntimeClass () const |
Returns information about the class of an object in runtime. More... | |
virtual mrpt::utils::CObject * | duplicate () const |
Returns a copy of the object, indepently of its class. More... | |
static mrpt::utils::CObject * | CreateObject () |
static CDisplayWindowPtr | Create () |
typedef CDisplayWindowPtr mrpt::gui::CDisplayWindow::ConstPtr |
Definition at line 32 of file CDisplayWindow.h.
typedef CDisplayWindowPtr mrpt::gui::CDisplayWindow::Ptr |
A typedef for the associated smart pointer
Definition at line 32 of file CDisplayWindow.h.
CDisplayWindow::CDisplayWindow | ( | const std::string & | windowCaption = std::string() , |
unsigned int | initWidth = 400 , |
||
unsigned int | initHeight = 400 |
||
) |
Constructor.
Definition at line 341 of file CDisplayWindow.cpp.
References mrpt::gui::CBaseGUIWindow::createWxWindow().
Referenced by Create().
|
virtual |
Destructor.
Definition at line 351 of file CDisplayWindow.cpp.
References mrpt::gui::CBaseGUIWindow::destroyWxWindow().
|
staticprotected |
|
inlineinherited |
Assure that "keyHit" will return false until the next pushed key.
Definition at line 127 of file CBaseGUIWindow.h.
|
inlineinherited |
|
static |
|
static |
Class factory returning a smart pointer.
Definition at line 331 of file CDisplayWindow.cpp.
References CDisplayWindow().
|
static |
|
protectedinherited |
Must be called by child classes just within the constructor.
Definition at line 45 of file CBaseGUIWindow.cpp.
References mrpt::gui::WxSubsystem::createOneInstanceMainThread(), mrpt::gui::WxSubsystem::isConsoleApp, MRPT_END, MRPT_START, MRPT_UNUSED_PARAM, mrpt::gui::WxSubsystem::TRequestToWxMainThread::OPCODE, mrpt::gui::WxSubsystem::pushPendingWxRequest(), mrpt::system::sleep(), mrpt::gui::WxSubsystem::TRequestToWxMainThread::source2D, mrpt::gui::WxSubsystem::TRequestToWxMainThread::source3D, mrpt::gui::WxSubsystem::TRequestToWxMainThread::sourcePlots, mrpt::gui::WxSubsystem::TRequestToWxMainThread::str, THROW_EXCEPTION, mrpt::gui::WxSubsystem::TRequestToWxMainThread::voidPtr, mrpt::gui::WxSubsystem::TRequestToWxMainThread::x, and mrpt::gui::WxSubsystem::TRequestToWxMainThread::y.
Referenced by CDisplayWindow(), mrpt::gui::CDisplayWindow3D::CDisplayWindow3D(), and mrpt::gui::CDisplayWindowPlots::CDisplayWindowPlots().
|
protectedinherited |
Must be called by child classes in their destructors. The code cannot be put into this class' destructor.
Definition at line 105 of file CBaseGUIWindow.cpp.
References mrpt::gui::WxSubsystem::isConsoleApp, MRPT_END, MRPT_START, mrpt::gui::WxSubsystem::TRequestToWxMainThread::OPCODE, mrpt::gui::WxSubsystem::pushPendingWxRequest(), mrpt::system::sleep(), mrpt::gui::WxSubsystem::TRequestToWxMainThread::source2D, mrpt::gui::WxSubsystem::TRequestToWxMainThread::source3D, mrpt::gui::WxSubsystem::TRequestToWxMainThread::sourcePlots, and mrpt::gui::WxSubsystem::waitWxShutdownsIfNoWindows().
Referenced by ~CDisplayWindow(), mrpt::gui::CDisplayWindow3D::~CDisplayWindow3D(), and mrpt::gui::CDisplayWindowPlots::~CDisplayWindowPlots().
|
virtual |
Returns a copy of the object, indepently of its class.
Implements mrpt::utils::CObject.
|
inlineinherited |
Returns a copy of the object, indepently of its class, as a smart pointer (the newly created object will exist as long as any copy of this smart pointer).
Definition at line 162 of file CObject.h.
References mrpt::utils::CObjectPtr.
Referenced by mrpt::obs::CRawlog::addActions(), mrpt::slam::CIncrementalMapPartitioner::addMapFrame(), and mrpt::obs::CRawlog::addObservations().
|
inline |
Enables or disables the visualization of cursor coordinates on the window caption (default = enabled).
Definition at line 195 of file CDisplayWindow.h.
|
virtual |
Gets the last x,y pixel coordinates of the mouse.
Implements mrpt::gui::CBaseGUIWindow.
Definition at line 371 of file CDisplayWindow.cpp.
References mrpt::utils::non_copiable_ptr_basic< T >::get(), mrpt::gui::CBaseGUIWindow::m_hwnd, mrpt::gui::CWindowDialog::m_image, mrpt::gui::CWindowDialog::wxMRPTImageControl::m_last_mouse_point, and MRPT_UNUSED_PARAM.
|
inherited |
Returns the latest pushed key, or 0 if there is no new key stroke.
out_pushModifier | If set to !=NULL, the modifiers of the key stroke will be saved here. |
Definition at line 188 of file CBaseGUIWindow.cpp.
References mrpt::gui::MRPTKMOD_NONE, and mrpt::system::sleep().
|
virtual |
Returns information about the class of an object in runtime.
Reimplemented from mrpt::gui::CBaseGUIWindow.
|
inlineinherited |
Read-only access to the wxDialog object.
Definition at line 75 of file CBaseGUIWindow.h.
References mrpt::utils::non_copiable_ptr_basic< T >::get().
Referenced by mrpt::gui::WxSubsystem::CWXMainFrame::OnTimerProcessRequests().
|
inlineprotectedinherited |
Can be called by a derived class before preparing an event for publishing with publishEvent to determine if there is no one subscribed, so it can save the wasted time preparing an event that will be not read.
Definition at line 52 of file CObservable.h.
Referenced by mrpt::gui::CWindowDialog::OnMouseDown(), mrpt::gui::CWindowDialog::OnMouseMove(), mrpt::gui::CWindowDialog::OnResize(), and mrpt::opengl::COpenGLViewport::render().
|
inherited |
Returns false if the user has already closed the window.
Definition at line 212 of file CBaseGUIWindow.cpp.
Referenced by mrpt::gui::CDisplayWindowPlots::addPopupMenuEntry(), mrpt::gui::CDisplayWindowPlots::axis(), mrpt::gui::CDisplayWindowPlots::axis_equal(), mrpt::gui::CDisplayWindowPlots::axis_fit(), mrpt::gui::CDisplayWindowPlots::clear(), mrpt::gui::CDisplayWindowPlots::enableMousePanZoom(), mrpt::gui::CDisplayWindowPlots::image(), mrpt::gui::CDisplayWindowPlots::internal_plot(), mrpt::gui::CDisplayWindowPlots::plotEllipse(), mrpt::gui::CDisplayWindowPlots::resize(), mrpt::gui::CDisplayWindow3D::resize(), resize(), mrpt::gui::CDisplayWindowPlots::setPos(), mrpt::gui::CDisplayWindow3D::setPos(), setPos(), mrpt::gui::CDisplayWindowPlots::setWindowTitle(), mrpt::gui::CDisplayWindow3D::setWindowTitle(), setWindowTitle(), and CGraphSlamHandler< GRAPH_T >::~CGraphSlamHandler().
|
inlineinherited |
Returns true if a key has been pushed, without blocking waiting for a new key being pushed.
Definition at line 122 of file CBaseGUIWindow.h.
|
inherited |
Called by wx main thread to set m_hwnd to NULL.
Definition at line 145 of file CBaseGUIWindow.cpp.
Referenced by mrpt::gui::CWindowDialog::OnClose(), and mrpt::gui::C3DWindowDialog::OnClose().
|
inherited |
Called by wx main thread to signal the semaphore that the wx window is built and ready.
Definition at line 220 of file CBaseGUIWindow.cpp.
Referenced by mrpt::gui::WxSubsystem::CWXMainFrame::OnTimerProcessRequests().
Definition at line 32 of file CDisplayWindow.h.
Definition at line 32 of file CDisplayWindow.h.
|
inline |
Definition at line 32 of file CDisplayWindow.h.
Definition at line 32 of file CDisplayWindow.h.
Definition at line 32 of file CDisplayWindow.h.
|
inline |
Definition at line 32 of file CDisplayWindow.h.
|
inline |
Definition at line 32 of file CDisplayWindow.h.
|
inline |
Definition at line 32 of file CDisplayWindow.h.
void CDisplayWindow::plot | ( | const mrpt::math::CVectorFloat & | x, |
const mrpt::math::CVectorFloat & | y | ||
) |
Plots a graph in MATLAB-like style.
Definition at line 455 of file CDisplayWindow.cpp.
References ASSERT_, mrpt::utils::CCanvas::cross(), mrpt::utils::CCanvas::filledRectangle(), mrpt::utils::CImage::line(), MRPT_END, MRPT_START, mrpt::utils::CImage::resize(), and showImage().
void CDisplayWindow::plot | ( | const mrpt::math::CVectorFloat & | y | ) |
Plots a graph in MATLAB-like style.
Definition at line 508 of file CDisplayWindow.cpp.
References ASSERT_, mrpt::utils::CCanvas::cross(), mrpt::utils::CCanvas::filledRectangle(), mrpt::utils::CImage::line(), MRPT_END, MRPT_START, red, mrpt::utils::CImage::resize(), showImage(), and mrpt::utils::CCanvas::textOut().
Called when you want this object to emit an event to all the observers currently subscribed to this object.
Definition at line 49 of file CObservable.cpp.
References MRPT_END, and MRPT_START.
Referenced by mrpt::gui::CDisplayWindow3D::internal_emitGrabImageEvent(), mrpt::gui::CWindowDialog::OnChar(), mrpt::gui::CWindowDialog::OnClose(), mrpt::gui::C3DWindowDialog::OnClose(), mrpt::gui::CWindowDialog::OnMouseDown(), mrpt::gui::CWindowDialog::OnMouseMove(), mrpt::gui::CWindowDialog::OnResize(), mrpt::gui::C3DWindowDialog::OnResize(), and mrpt::opengl::COpenGLViewport::render().
|
virtual |
Resizes the window, stretching the image to fit into the display area.
Implements mrpt::gui::CBaseGUIWindow.
Definition at line 562 of file CDisplayWindow.cpp.
References mrpt::gui::CBaseGUIWindow::isOpen(), mrpt::gui::CBaseGUIWindow::m_caption, MRPT_UNUSED_PARAM, mrpt::gui::WxSubsystem::TRequestToWxMainThread::OPCODE, mrpt::gui::WxSubsystem::pushPendingWxRequest(), mrpt::gui::WxSubsystem::TRequestToWxMainThread::source2D, mrpt::gui::WxSubsystem::TRequestToWxMainThread::x, and mrpt::gui::WxSubsystem::TRequestToWxMainThread::y.
|
virtual |
Set cursor style to default (cursorIsCross=false) or to a cross (cursorIsCross=true)
Implements mrpt::gui::CBaseGUIWindow.
Definition at line 357 of file CDisplayWindow.cpp.
References mrpt::utils::non_copiable_ptr_basic< T >::get(), mrpt::gui::CBaseGUIWindow::m_hwnd, mrpt::gui::CWindowDialog::m_image, and MRPT_UNUSED_PARAM.
|
virtual |
Changes the position of the window on the screen.
Implements mrpt::gui::CBaseGUIWindow.
Definition at line 588 of file CDisplayWindow.cpp.
References mrpt::gui::CBaseGUIWindow::isOpen(), mrpt::gui::CBaseGUIWindow::m_caption, MRPT_UNUSED_PARAM, mrpt::gui::WxSubsystem::TRequestToWxMainThread::OPCODE, mrpt::gui::WxSubsystem::pushPendingWxRequest(), mrpt::gui::WxSubsystem::TRequestToWxMainThread::source2D, mrpt::gui::WxSubsystem::TRequestToWxMainThread::x, and mrpt::gui::WxSubsystem::TRequestToWxMainThread::y.
|
virtual |
Changes the window title text.
Implements mrpt::gui::CBaseGUIWindow.
Definition at line 612 of file CDisplayWindow.cpp.
References mrpt::gui::CBaseGUIWindow::isOpen(), mrpt::gui::CBaseGUIWindow::m_caption, MRPT_UNUSED_PARAM, mrpt::gui::WxSubsystem::TRequestToWxMainThread::OPCODE, mrpt::gui::WxSubsystem::pushPendingWxRequest(), mrpt::gui::WxSubsystem::TRequestToWxMainThread::source2D, and mrpt::gui::WxSubsystem::TRequestToWxMainThread::str.
Referenced by find_chessboard_corners_multiple().
void CDisplayWindow::showImage | ( | const mrpt::utils::CImage & | img | ) |
Show a given color or grayscale image on the window.
It adapts the size of the window to that of the image.
Definition at line 390 of file CDisplayWindow.cpp.
References mrpt::utils::non_copiable_ptr_basic< T >::get(), mrpt::gui::CBaseGUIWindow::m_hwnd, MRPT_END, MRPT_START, MRPT_UNUSED_PARAM, mrpt::gui::MRPTImage2wxImage(), mrpt::gui::WxSubsystem::TRequestToWxMainThread::OPCODE, mrpt::gui::WxSubsystem::pushPendingWxRequest(), mrpt::gui::WxSubsystem::TRequestToWxMainThread::source2D, mrpt::gui::WxSubsystem::TRequestToWxMainThread::voidPtr, and mrpt::gui::WxSubsystem::TRequestToWxMainThread::voidPtr2.
Referenced by mrpt::detectors::CFaceDetection::experimental_segmentFace(), find_chessboard_corners_multiple(), plot(), and showImageAndPoints().
void CDisplayWindow::showImageAndPoints | ( | const mrpt::utils::CImage & | img, |
const mrpt::math::CVectorFloat & | x, | ||
const mrpt::math::CVectorFloat & | y, | ||
const mrpt::utils::TColor & | color = mrpt::utils::TColor::red , |
||
const bool & | showNumbers = false |
||
) |
Show a given color or grayscale image on the window and print a set of points on it.
It adapts the size of the window to that of the image.
Definition at line 416 of file CDisplayWindow.cpp.
void CDisplayWindow::showImageAndPoints | ( | const mrpt::utils::CImage & | img, |
const std::vector< float > & | x, | ||
const std::vector< float > & | y, | ||
const mrpt::utils::TColor & | color = mrpt::utils::TColor::red , |
||
const bool & | showNumbers = false |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 425 of file CDisplayWindow.cpp.
References ASSERT_, MRPT_END, MRPT_START, MRPT_UNUSED_PARAM, mrpt::utils::round(), showImage(), and mrpt::system::os::sprintf().
|
inline |
Show a given color or grayscale image on the window and print a set of points on it.
It adapts the size of the window to that of the image. The class of FEATURELIST can be: mrpt::vision::CFeatureList or any STL container of entities having "x","y" and "ID" fields.
Definition at line 73 of file CDisplayWindow.h.
References CH_RGB, MRPT_END, and MRPT_START.
|
inline |
Show a pair of given color or grayscale images (put together) on the window and print a set of matches on them.
It adapts the size of the window to that of the image. MATCHEDLIST can be of the class: mrpt::vision::CMatchedFeatureList, or any STL container of pairs of anything having ".x" and ".y" (e.g. mrpt::math::TPoint2D)
Definition at line 113 of file CDisplayWindow.h.
References mrpt::utils::CImage::getWidth(), mrpt::utils::CImage::joinImagesHorz(), MRPT_END, MRPT_START, mrpt::utils::round(), and mrpt::system::os::sprintf().
|
inline |
Show a pair of given color or grayscale images (put together) on the window and print a set of matches on them.
It adapts the size of the window to that of the image. FEATURELIST can be of the class: mrpt::vision::CFeatureList
Definition at line 149 of file CDisplayWindow.h.
References ASSERT_, mrpt::utils::CImage::getWidth(), MRPT_END, MRPT_START, and mrpt::utils::round().
|
inline |
Show a given color or grayscale image on the window and print a set of points on it and a set of lines splitting the image in tiles.
It adapts the size of the window to that of the image. The class of FEATURELIST can be: mrpt::vision::CFeatureList
Definition at line 88 of file CDisplayWindow.h.
References mrpt::utils::CImage::getHeight(), mrpt::utils::CImage::getWidth(), mrpt::utils::CImage::line(), MRPT_END, and MRPT_START.
|
inherited |
Waits for any key to be pushed on the image or the console, and returns the key code.
This method remove key strokes previous to its call, so it will always wait. To get the latest pushed key, see
ignoreControlKeys | If set to false, any push of shift, cmd, control, etc... will make this method to return. |
out_pushModifier | If set to !=NULL, the modifiers of the key stroke will be saved here. |
Definition at line 154 of file CBaseGUIWindow.cpp.
References mrpt::system::os::getch(), mrpt::system::os::kbhit(), mrpt::gui::MRPTKMOD_NONE, and mrpt::system::sleep().
Referenced by find_chessboard_corners_multiple(), and mrpt::vision::CFeature::internal_distanceBetweenPolarImages().
|
staticprotected |
Definition at line 32 of file CDisplayWindow.h.
|
staticinherited |
Definition at line 49 of file CBaseGUIWindow.h.
|
static |
Definition at line 32 of file CDisplayWindow.h.
|
staticinherited |
|
static |
Definition at line 32 of file CDisplayWindow.h.
|
protectedinherited |
The caption of the window.
Definition at line 63 of file CBaseGUIWindow.h.
Referenced by mrpt::gui::CDisplayWindowPlots::resize(), mrpt::gui::CDisplayWindow3D::resize(), resize(), mrpt::gui::CDisplayWindowPlots::setPos(), mrpt::gui::CDisplayWindow3D::setPos(), setPos(), mrpt::gui::CDisplayWindowPlots::setWindowTitle(), mrpt::gui::CDisplayWindow3D::setWindowTitle(), and setWindowTitle().
|
protected |
Enables or disables the visualization of cursor coordinates on the window caption.
Definition at line 38 of file CDisplayWindow.h.
|
protectedinherited |
The window handle.
Definition at line 64 of file CBaseGUIWindow.h.
Referenced by mrpt::gui::CDisplayWindow3D::addTextMessage(), mrpt::gui::CDisplayWindow3D::clearTextMessages(), mrpt::gui::CDisplayWindow3D::forceRepaint(), mrpt::gui::CDisplayWindow3D::getCameraAzimuthDeg(), mrpt::gui::CDisplayWindow3D::getCameraElevationDeg(), mrpt::gui::CDisplayWindow3D::getCameraPointingToPoint(), mrpt::gui::CDisplayWindow3D::getCameraZoom(), mrpt::gui::CDisplayWindow3D::getFOV(), getLastMousePosition(), mrpt::gui::CDisplayWindowPlots::getLastMousePosition(), mrpt::gui::CDisplayWindow3D::getLastMousePosition(), mrpt::gui::CDisplayWindow3D::isCameraProjective(), mrpt::gui::CDisplayWindow3D::setCameraAzimuthDeg(), mrpt::gui::CDisplayWindow3D::setCameraElevationDeg(), mrpt::gui::CDisplayWindow3D::setCameraPointingToPoint(), mrpt::gui::CDisplayWindow3D::setCameraProjective(), mrpt::gui::CDisplayWindow3D::setCameraZoom(), setCursorCross(), mrpt::gui::CDisplayWindowPlots::setCursorCross(), mrpt::gui::CDisplayWindow3D::setCursorCross(), mrpt::gui::CDisplayWindow3D::setFOV(), showImage(), and mrpt::gui::CDisplayWindow3D::useCameraFromScene().
|
protectedinherited |
Definition at line 67 of file CBaseGUIWindow.h.
Referenced by mrpt::gui::CWindowDialog::OnChar().
|
protectedinherited |
Definition at line 68 of file CBaseGUIWindow.h.
Referenced by mrpt::gui::CWindowDialog::OnChar().
|
protectedinherited |
Definition at line 69 of file CBaseGUIWindow.h.
Referenced by mrpt::gui::CWindowDialog::OnChar().
|
protectedinherited |
This semaphore will be signaled when the wx window is built and ready.
Definition at line 61 of file CBaseGUIWindow.h.
|
protectedinherited |
This semaphore will be signaled when the wx window is destroyed.
Definition at line 62 of file CBaseGUIWindow.h.
Referenced by mrpt::gui::CWindowDialog::OnClose(), and mrpt::gui::C3DWindowDialog::OnClose().
Page generated by Doxygen 1.8.14 for MRPT 1.5.9 Git: 690a4699f Wed Apr 15 19:29:53 2020 +0200 at miƩ abr 15 19:30:12 CEST 2020 |