Create a GUI window and display plots with MATLAB-like interfaces and commands.
For a list of supported events with the observer/observable pattern, see the discussion in mrpt::gui::CBaseGUIWindow.
#include <mrpt/gui/CDisplayWindowPlots.h>

Public Types | |
| typedef void(* | TCallbackMenu )(int menuID, float cursor_x, float cursor_y, void *userParam) |
| Type for the callback function used in setMenuCallback. | |
Public Member Functions | |
| CDisplayWindowPlots (const std::string &windowCaption=std::string(), unsigned int initialWidth=350, unsigned int initialHeight=300) | |
| Constructor. | |
| virtual | ~CDisplayWindowPlots () |
| Destructor. | |
| virtual bool | getLastMousePosition (int &x, int &y) const |
| Gets the last x,y pixel coordinates of the mouse. | |
| virtual void | setCursorCross (bool cursorIsCross) |
| Set cursor style to default (cursorIsCross=false) or to a cross (cursorIsCross=true) | |
| void | resize (unsigned int width, unsigned int height) |
| Resizes the window, stretching the image to fit into the display area. | |
| void | setPos (int x, int y) |
| Changes the position of the window on the screen. | |
| void | setWindowTitle (const std::string &str) |
| Changes the window title text. | |
| void | enableMousePanZoom (bool enabled) |
| Enable/disable the feature of pan/zoom with the mouse (default=enabled) | |
| template<typename T1 , typename T2 > | |
| void | plot (const std::vector< T1 > &x, const std::vector< T2 > &y, const std::string &lineFormat=std::string("b-"), const std::string &plotName=std::string("plotXY")) |
| Adds a new layer with a 2D plot based on two vectors of X and Y points, using a MATLAB-like syntax. | |
| template<typename T1 , typename Derived2 > | |
| void | plot (const std::vector< T1 > &x, const Eigen::MatrixBase< Derived2 > &y, const std::string &lineFormat=std::string("b-"), const std::string &plotName=std::string("plotXY")) |
| template<typename Derived1 , typename T2 > | |
| void | plot (const Eigen::MatrixBase< Derived1 > &x, const std::vector< T2 > &y, const std::string &lineFormat=std::string("b-"), const std::string &plotName=std::string("plotXY")) |
| template<typename Derived1 , typename Derived2 > | |
| void | plot (const Eigen::MatrixBase< Derived1 > &x, const Eigen::MatrixBase< Derived2 > &y, const std::string &lineFormat=std::string("b-"), const std::string &plotName=std::string("plotXY")) |
| template<typename T > | |
| void | plot (const std::vector< T > &y, const std::string &lineFormat=std::string("b-"), const std::string &plotName=std::string("plotXY")) |
| template<typename Derived > | |
| void | plot (const Eigen::MatrixBase< Derived > &y, const std::string &lineFormat=std::string("b-"), const std::string &plotName=std::string("plotXY")) |
| void | axis (float x_min, float x_max, float y_min, float y_max, bool aspectRatioFix=false) |
| Set the view area according to the passed coordinated. | |
| void | axis_equal (bool enable=true) |
| Enable/disable the fixed X/Y aspect ratio fix feature (default=disabled). | |
| void | axis_fit (bool aspectRatioFix=false) |
| Fix automatically the view area according to existing graphs. | |
| template<typename T > | |
| void GUI_IMPEXP | plotEllipse (const T mean_x, const T mean_y, const CMatrixTemplateNumeric< T > &cov22, const float quantiles, const std::string &lineFormat=std::string("b-"), const std::string &plotName=std::string("plotEllipse"), bool showName=false) |
| Plots a 2D ellipse given its mean, covariance matrix, and Each call to this function creates a new plot, unless the plot name coincides with an already existing plot: in this case the new values are used to update this existing layer (this also applies to using the default plot name). | |
| template<typename T > | |
| void GUI_IMPEXP | plotEllipse (const T mean_x, const T mean_y, const CMatrixFixedNumeric< T, 2, 2 > &cov22, const float quantiles, const std::string &lineFormat=std::string("b-"), const std::string &plotName=std::string("plotEllipse"), bool showName=false) |
| void | image (const utils::CImage &img, const float &x_left, const float &y_bottom, const float &x_width, const float &y_height, const std::string &plotName=std::string("image")) |
| Adds a bitmap image layer. | |
| void | clear () |
| Remove all plot objects in the display. | |
| void | clf () |
| Remove all plot objects in the display (clear and clf do exactly the same). | |
| void | hold_on () |
| Enables keeping all the graphs, instead of overwritting them. | |
| void | hold_off () |
| Disables keeping all the graphs (this is the default behavior). | |
| void | addPopupMenuEntry (const std::string &label, int menuID) |
| Disables keeping all the graphs (this is the default behavior). | |
| void | setMenuCallback (TCallbackMenu userFunction, void *userParam=NULL) |
| Must be called to have a callback when the user selects one of the user-defined entries in the popup menu. | |
| void * | getWxObject () |
| Read-only access to the wxDialog object. | |
| void | notifyChildWindowDestruction () |
| Called by wx main thread to set m_hwnd to NULL. | |
| void | notifySemThreadReady () |
| Called by wx main thread to signal the semaphore that the wx window is built and ready. | |
| bool | isOpen () |
| Returns false if the user has already closed the window. | |
| 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. | |
| bool | keyHit () const |
| Returns true if a key has been pushed, without blocking waiting for a new key being pushed. | |
| void | clearKeyHitFlag () |
| Assure that "keyHit" will return false until the next pushed key. | |
| int | getPushedKey (mrptKeyModifier *out_pushModifier=NULL) |
| Returns the latest pushed key, or 0 if there is no new key stroke. | |
| 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). | |
| CObject * | clone () const |
| Cloning interface for smart pointers. | |
Static Public Member Functions | |
| static CDisplayWindowPlotsPtr | Create (const std::string &windowCaption=std::string(), unsigned int initialWindowWidth=400, unsigned int initialWindowHeight=300) |
| Class factory returning a smart pointer. | |
Static Public Attributes | |
| static const mrpt::utils::TRuntimeClassId | classCObject |
Protected Member Functions | |
| void | internal_plot (vector_float &x, vector_float &y, const std::string &lineFormat, const std::string &plotName) |
| template<typename VECTOR1 , typename VECTOR2 > | |
| void | internal_plot_interface (const VECTOR1 &x, const VECTOR2 &y, const std::string &lineFormat, const std::string &plotName) |
| template<typename VECTOR1 > | |
| void | internal_plot_interface (const VECTOR1 &y, const std::string &lineFormat, const std::string &plotName) |
| void | createWxWindow (unsigned int initialWidth, unsigned int initialHeight) |
| Must be called by child classes just within the constructor. | |
| void | destroyWxWindow () |
| Must be called by child classes in their destructors. The code cannot be put into this class' destructor. | |
| 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. | |
| 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. | |
Protected Attributes | |
| bool | m_holdon |
| Whether hold_on is enabled. | |
| bool | m_holdon_just_disabled |
| uint32_t | m_holdon_cnt |
| Counter for hold_on. | |
| TCallbackMenu | m_callback |
| void * | m_callback_param |
| synch::CSemaphore | m_semThreadReady |
| This semaphore will be signaled when the wx window is built and ready. | |
| synch::CSemaphore | m_semWindowDestroyed |
| This semaphore will be signaled when the wx window is destroyed. | |
| std::string | m_caption |
| The caption of the window. | |
| void_ptr_noncopy | m_hwnd |
| The window handle. | |
| volatile bool | m_keyPushed |
| volatile int | m_keyPushedCode |
| volatile mrptKeyModifier | m_keyPushedModifier |
Friends | |
| class | CWindowDialogPlots |
| class | CWindowDialog |
| class | C3DWindowDialog |
RTTI stuff | |
| static const mrpt::utils::TRuntimeClassId | classCBaseGUIWindow |
| class | mrpt::utils::CStream |
RTTI stuff | |
| typedef CDisplayWindowPlotsPtr | SmartPtr |
| static mrpt::utils::CLASSINIT | _init_CDisplayWindowPlots |
| static mrpt::utils::TRuntimeClassId | classCDisplayWindowPlots |
| 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. | |
| virtual mrpt::utils::CObject * | duplicate () const |
| Returns a copy of the object, indepently of its class. | |
| static mrpt::utils::CObject * | CreateObject () |
| static CDisplayWindowPlotsPtr | Create () |
A typedef for the associated smart pointer
Definition at line 60 of file CDisplayWindowPlots.h.
| typedef void(* mrpt::gui::CDisplayWindowPlots::TCallbackMenu)(int menuID, float cursor_x, float cursor_y, void *userParam) |
Type for the callback function used in setMenuCallback.
Definition at line 63 of file CDisplayWindowPlots.h.
| mrpt::gui::CDisplayWindowPlots::CDisplayWindowPlots | ( | const std::string & | windowCaption = std::string(), |
| unsigned int | initialWidth = 350, |
||
| unsigned int | initialHeight = 300 |
||
| ) |
Constructor.
| virtual mrpt::gui::CDisplayWindowPlots::~CDisplayWindowPlots | ( | ) | [virtual] |
Destructor.
| static const mrpt::utils::TRuntimeClassId* mrpt::gui::CDisplayWindowPlots::_GetBaseClass | ( | ) | [static, protected] |
Reimplemented from mrpt::gui::CBaseGUIWindow.
| void mrpt::gui::CDisplayWindowPlots::addPopupMenuEntry | ( | const std::string & | label, |
| int | menuID | ||
| ) |
Disables keeping all the graphs (this is the default behavior).
| label | The text that appears in the new popup menu item. |
| menuID | Any positive number (0,1,..). Used to tell which menu was selected in the user callback. |
| void mrpt::gui::CDisplayWindowPlots::axis | ( | float | x_min, |
| float | x_max, | ||
| float | y_min, | ||
| float | y_max, | ||
| bool | aspectRatioFix = false |
||
| ) |
Set the view area according to the passed coordinated.
| void mrpt::gui::CDisplayWindowPlots::axis_equal | ( | bool | enable = true | ) |
Enable/disable the fixed X/Y aspect ratio fix feature (default=disabled).
| void mrpt::gui::CDisplayWindowPlots::axis_fit | ( | bool | aspectRatioFix = false | ) |
Fix automatically the view area according to existing graphs.
| void mrpt::gui::CDisplayWindowPlots::clear | ( | ) |
Remove all plot objects in the display.
| void mrpt::gui::CBaseGUIWindow::clearKeyHitFlag | ( | ) | [inline, inherited] |
Assure that "keyHit" will return false until the next pushed key.
Definition at line 149 of file CBaseGUIWindow.h.
| void mrpt::gui::CDisplayWindowPlots::clf | ( | ) | [inline] |
Remove all plot objects in the display (clear and clf do exactly the same).
Definition at line 242 of file CDisplayWindowPlots.h.
| CObject* mrpt::utils::CObject::clone | ( | ) | const [inline, inherited] |
Cloning interface for smart pointers.
Reimplemented in mrpt::opengl::CRenderizable, and mrpt::opengl::CRenderizableDisplayList.
| static CDisplayWindowPlotsPtr mrpt::gui::CDisplayWindowPlots::Create | ( | ) | [static] |
| static CDisplayWindowPlotsPtr mrpt::gui::CDisplayWindowPlots::Create | ( | const std::string & | windowCaption = std::string(), |
| unsigned int | initialWindowWidth = 400, |
||
| unsigned int | initialWindowHeight = 300 |
||
| ) | [inline, static] |
Class factory returning a smart pointer.
Definition at line 104 of file CDisplayWindowPlots.h.
| static mrpt::utils::CObject* mrpt::gui::CDisplayWindowPlots::CreateObject | ( | ) | [static] |
| void mrpt::gui::CBaseGUIWindow::createWxWindow | ( | unsigned int | initialWidth, |
| unsigned int | initialHeight | ||
| ) | [protected, inherited] |
Must be called by child classes just within the constructor.
| void mrpt::gui::CBaseGUIWindow::destroyWxWindow | ( | ) | [protected, inherited] |
Must be called by child classes in their destructors. The code cannot be put into this class' destructor.
| virtual mrpt::utils::CObject* mrpt::gui::CDisplayWindowPlots::duplicate | ( | ) | const [virtual] |
Returns a copy of the object, indepently of its class.
Implements mrpt::utils::CObject.
| mrpt::utils::CObjectPtr mrpt::utils::CObject::duplicateGetSmartPtr | ( | ) | const [inline, inherited] |
| void mrpt::gui::CDisplayWindowPlots::enableMousePanZoom | ( | bool | enabled | ) |
Enable/disable the feature of pan/zoom with the mouse (default=enabled)
| virtual bool mrpt::gui::CDisplayWindowPlots::getLastMousePosition | ( | int & | x, |
| int & | y | ||
| ) | const [virtual] |
Gets the last x,y pixel coordinates of the mouse.
Implements mrpt::gui::CBaseGUIWindow.
| int mrpt::gui::CBaseGUIWindow::getPushedKey | ( | mrptKeyModifier * | out_pushModifier = NULL | ) | [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. |
| virtual const mrpt::utils::TRuntimeClassId* mrpt::gui::CDisplayWindowPlots::GetRuntimeClass | ( | ) | const [virtual] |
Returns information about the class of an object in runtime.
Reimplemented from mrpt::gui::CBaseGUIWindow.
| void* mrpt::gui::CBaseGUIWindow::getWxObject | ( | ) | [inline, inherited] |
Read-only access to the wxDialog object.
Definition at line 97 of file CBaseGUIWindow.h.
References mrpt::utils::non_copiable_ptr_basic::get().
| bool mrpt::utils::CObservable::hasSubscribers | ( | ) | const [inline, protected, inherited] |
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 69 of file CObservable.h.
| void mrpt::gui::CDisplayWindowPlots::hold_off | ( | ) |
| void mrpt::gui::CDisplayWindowPlots::hold_on | ( | ) |
| void mrpt::gui::CDisplayWindowPlots::image | ( | const utils::CImage & | img, |
| const float & | x_left, | ||
| const float & | y_bottom, | ||
| const float & | x_width, | ||
| const float & | y_height, | ||
| const std::string & | plotName = std::string("image") |
||
| ) |
Adds a bitmap image layer.
Each call to this function creates a new layer, unless the plot name coincides with an already existing plot: in this case the new values are used to update this existing layer (this also applies to using the default plot name).
| void mrpt::gui::CDisplayWindowPlots::internal_plot | ( | vector_float & | x, |
| vector_float & | y, | ||
| const std::string & | lineFormat, | ||
| const std::string & | plotName | ||
| ) | [protected] |
| void mrpt::gui::CDisplayWindowPlots::internal_plot_interface | ( | const VECTOR1 & | x, |
| const VECTOR2 & | y, | ||
| const std::string & | lineFormat, | ||
| const std::string & | plotName | ||
| ) | [inline, protected] |
Definition at line 76 of file CDisplayWindowPlots.h.
| void mrpt::gui::CDisplayWindowPlots::internal_plot_interface | ( | const VECTOR1 & | y, |
| const std::string & | lineFormat, | ||
| const std::string & | plotName | ||
| ) | [inline, protected] |
Definition at line 86 of file CDisplayWindowPlots.h.
| bool mrpt::gui::CBaseGUIWindow::isOpen | ( | ) | [inherited] |
Returns false if the user has already closed the window.
| bool mrpt::gui::CBaseGUIWindow::keyHit | ( | ) | const [inline, inherited] |
Returns true if a key has been pushed, without blocking waiting for a new key being pushed.
Definition at line 144 of file CBaseGUIWindow.h.
| void mrpt::gui::CBaseGUIWindow::notifyChildWindowDestruction | ( | ) | [inherited] |
Called by wx main thread to set m_hwnd to NULL.
| void mrpt::gui::CBaseGUIWindow::notifySemThreadReady | ( | ) | [inherited] |
Called by wx main thread to signal the semaphore that the wx window is built and ready.
| void mrpt::gui::CDisplayWindowPlots::plot | ( | const std::vector< T1 > & | x, |
| const std::vector< T2 > & | y, | ||
| const std::string & | lineFormat = std::string("b-"), |
||
| const std::string & | plotName = std::string("plotXY") |
||
| ) | [inline] |
Adds a new layer with a 2D plot based on two vectors of X and Y points, using a MATLAB-like syntax.
Each call to this function creates a new plot, unless the plot name coincides with an already existing plot: in this case the X & Y points are used to update this existing layer (this also applies to using the default plot name). If "hold_on" is enabled, then every call will always create a new plot, even if no "plotName" is provided.
The lineFormat string is a combination of the following characters:
Examples:
| VECTOR | Can be std::vector<float/double> or mrpt::dynamicsize_vector<float/double> or a column/row Eigen::Matrix<> |
Definition at line 164 of file CDisplayWindowPlots.h.
| void mrpt::gui::CDisplayWindowPlots::plot | ( | const std::vector< T1 > & | x, |
| const Eigen::MatrixBase< Derived2 > & | y, | ||
| const std::string & | lineFormat = std::string("b-"), |
||
| const std::string & | plotName = std::string("plotXY") |
||
| ) | [inline] |
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 166 of file CDisplayWindowPlots.h.
| void mrpt::gui::CDisplayWindowPlots::plot | ( | const Eigen::MatrixBase< Derived1 > & | x, |
| const std::vector< T2 > & | y, | ||
| const std::string & | lineFormat = std::string("b-"), |
||
| const std::string & | plotName = std::string("plotXY") |
||
| ) | [inline] |
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 168 of file CDisplayWindowPlots.h.
| void mrpt::gui::CDisplayWindowPlots::plot | ( | const Eigen::MatrixBase< Derived1 > & | x, |
| const Eigen::MatrixBase< Derived2 > & | y, | ||
| const std::string & | lineFormat = std::string("b-"), |
||
| const std::string & | plotName = std::string("plotXY") |
||
| ) | [inline] |
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 170 of file CDisplayWindowPlots.h.
| void mrpt::gui::CDisplayWindowPlots::plot | ( | const std::vector< T > & | y, |
| const std::string & | lineFormat = std::string("b-"), |
||
| const std::string & | plotName = std::string("plotXY") |
||
| ) | [inline] |
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 173 of file CDisplayWindowPlots.h.
| void mrpt::gui::CDisplayWindowPlots::plot | ( | const Eigen::MatrixBase< Derived > & | y, |
| const std::string & | lineFormat = std::string("b-"), |
||
| const std::string & | plotName = std::string("plotXY") |
||
| ) | [inline] |
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 175 of file CDisplayWindowPlots.h.
| void GUI_IMPEXP mrpt::gui::CDisplayWindowPlots::plotEllipse | ( | const T | mean_x, |
| const T | mean_y, | ||
| const CMatrixTemplateNumeric< T > & | cov22, | ||
| const float | quantiles, | ||
| const std::string & | lineFormat = std::string("b-"), |
||
| const std::string & | plotName = std::string("plotEllipse"), |
||
| bool | showName = false |
||
| ) |
Plots a 2D ellipse given its mean, covariance matrix, and Each call to this function creates a new plot, unless the plot name coincides with an already existing plot: in this case the new values are used to update this existing layer (this also applies to using the default plot name).
If "hold_on" is enabled, then every call will always create a new plot, even if no "plotName" is provided.
For a description of lineFormat see CDisplayWindowPlots::plot. The "quantiles" value determines the confidence interval for the ellipse:
| void GUI_IMPEXP mrpt::gui::CDisplayWindowPlots::plotEllipse | ( | const T | mean_x, |
| const T | mean_y, | ||
| const CMatrixFixedNumeric< T, 2, 2 > & | cov22, | ||
| const float | quantiles, | ||
| const std::string & | lineFormat = std::string("b-"), |
||
| const std::string & | plotName = std::string("plotEllipse"), |
||
| bool | showName = false |
||
| ) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
| void mrpt::utils::CObservable::publishEvent | ( | const mrptEvent & | e | ) | const [protected, inherited] |
Called when you want this object to emit an event to all the observers currently subscribed to this object.
| void mrpt::gui::CDisplayWindowPlots::resize | ( | unsigned int | width, |
| unsigned int | height | ||
| ) | [virtual] |
Resizes the window, stretching the image to fit into the display area.
Implements mrpt::gui::CBaseGUIWindow.
| virtual void mrpt::gui::CDisplayWindowPlots::setCursorCross | ( | bool | cursorIsCross | ) | [virtual] |
Set cursor style to default (cursorIsCross=false) or to a cross (cursorIsCross=true)
Implements mrpt::gui::CBaseGUIWindow.
| void mrpt::gui::CDisplayWindowPlots::setMenuCallback | ( | TCallbackMenu | userFunction, |
| void * | userParam = NULL |
||
| ) |
Must be called to have a callback when the user selects one of the user-defined entries in the popup menu.
| void mrpt::gui::CDisplayWindowPlots::setPos | ( | int | x, |
| int | y | ||
| ) | [virtual] |
Changes the position of the window on the screen.
Implements mrpt::gui::CBaseGUIWindow.
| void mrpt::gui::CDisplayWindowPlots::setWindowTitle | ( | const std::string & | str | ) | [virtual] |
Changes the window title text.
Implements mrpt::gui::CBaseGUIWindow.
| int mrpt::gui::CBaseGUIWindow::waitForKey | ( | bool | ignoreControlKeys = true, |
| mrptKeyModifier * | out_pushModifier = NULL |
||
| ) | [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. |
friend class C3DWindowDialog [friend, inherited] |
Reimplemented in mrpt::gui::CDisplayWindow3D.
Definition at line 74 of file CBaseGUIWindow.h.
friend class CWindowDialog [friend, inherited] |
Definition at line 73 of file CBaseGUIWindow.h.
friend class CWindowDialogPlots [friend] |
Reimplemented from mrpt::gui::CBaseGUIWindow.
Definition at line 66 of file CDisplayWindowPlots.h.
friend class mrpt::utils::CStream [friend, inherited] |
Definition at line 71 of file CBaseGUIWindow.h.
mrpt::utils::CLASSINIT mrpt::gui::CDisplayWindowPlots::_init_CDisplayWindowPlots [static, protected] |
Definition at line 60 of file CDisplayWindowPlots.h.
const mrpt::utils::TRuntimeClassId mrpt::gui::CBaseGUIWindow::classCBaseGUIWindow [static, inherited] |
Definition at line 71 of file CBaseGUIWindow.h.
Definition at line 60 of file CDisplayWindowPlots.h.
const mrpt::utils::TRuntimeClassId mrpt::utils::CObject::classCObject [static, inherited] |
Definition at line 60 of file CDisplayWindowPlots.h.
Definition at line 71 of file CDisplayWindowPlots.h.
void* mrpt::gui::CDisplayWindowPlots::m_callback_param [protected] |
Definition at line 72 of file CDisplayWindowPlots.h.
std::string mrpt::gui::CBaseGUIWindow::m_caption [protected, inherited] |
The caption of the window.
Definition at line 85 of file CBaseGUIWindow.h.
bool mrpt::gui::CDisplayWindowPlots::m_holdon [protected] |
Whether hold_on is enabled.
Definition at line 68 of file CDisplayWindowPlots.h.
uint32_t mrpt::gui::CDisplayWindowPlots::m_holdon_cnt [protected] |
Counter for hold_on.
Definition at line 70 of file CDisplayWindowPlots.h.
bool mrpt::gui::CDisplayWindowPlots::m_holdon_just_disabled [protected] |
Definition at line 69 of file CDisplayWindowPlots.h.
void_ptr_noncopy mrpt::gui::CBaseGUIWindow::m_hwnd [protected, inherited] |
The window handle.
Definition at line 86 of file CBaseGUIWindow.h.
volatile bool mrpt::gui::CBaseGUIWindow::m_keyPushed [protected, inherited] |
Definition at line 89 of file CBaseGUIWindow.h.
volatile int mrpt::gui::CBaseGUIWindow::m_keyPushedCode [protected, inherited] |
Definition at line 90 of file CBaseGUIWindow.h.
volatile mrptKeyModifier mrpt::gui::CBaseGUIWindow::m_keyPushedModifier [protected, inherited] |
Definition at line 91 of file CBaseGUIWindow.h.
synch::CSemaphore mrpt::gui::CBaseGUIWindow::m_semThreadReady [protected, inherited] |
This semaphore will be signaled when the wx window is built and ready.
Definition at line 83 of file CBaseGUIWindow.h.
synch::CSemaphore mrpt::gui::CBaseGUIWindow::m_semWindowDestroyed [protected, inherited] |
This semaphore will be signaled when the wx window is destroyed.
Definition at line 84 of file CBaseGUIWindow.h.
| Page generated by Doxygen 1.7.5 for MRPT 0.9.5 SVN: at Thu Oct 13 21:25:36 UTC 2011 |