#include <CPEditorPanel.h>
Inheritance diagram for CPEditorPanel:

Public Member Functions | |
| CPEditorPanel () | |
| ctor. | |
| bool | Create (wxWindow *parent, wxWindowID id=wxID_ANY, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxTAB_TRAVERSAL, const wxString &name=wxT("panel")) |
| void | Init (PT::Panorama *pano) |
| virtual | ~CPEditorPanel () |
| dtor. | |
| void | setLeftImage (unsigned int imgNr) |
| set left image | |
| void | setRightImage (unsigned int imgNr) |
| set right image | |
| void | SetPano (PT::Panorama *panorama) |
| void | panoramaChanged (PT::Panorama &pano) |
| called when the panorama changes and we should update our display | |
| void | panoramaImagesChanged (PT::Panorama &pano, const PT::UIntSet &imgNr) |
| void | SelectGlobalPoint (unsigned int globalNr) |
| Select a point. | |
| void | ShowControlPoint (unsigned int cpNr) |
| show a control point | |
| void | ClearSelection () |
| unselect a point | |
Private Types | |
| enum | CPCreationState { NO_POINT, LEFT_POINT, RIGHT_POINT, RIGHT_POINT_RETRY, LEFT_POINT_RETRY, BOTH_POINTS_SELECTED } |
| the state machine for point selection: it is set to the current selection More... | |
Private Member Functions | |
| void | UpdateDisplay (bool newImages) |
| updates the display after another image has been selected. | |
| void | EnablePointEdit (bool state) |
| enable or disable controls for editing other points | |
| void | SelectLocalPoint (unsigned int LVpointNr) |
| select a local point. | |
| bool | globalPNr2LocalPNr (unsigned int &localNr, unsigned int globalNr) const |
| map a global point nr to a local one, if possible | |
| unsigned int | localPNr2GlobalPNr (unsigned int localNr) const |
| find a local point | |
| void | NewPointChange (hugin_utils::FDiff2D p, bool left) |
| void | CreateNewPoint () |
| this is used to finally create the point in the panorama model | |
| bool | PointFineTune (unsigned int tmplImgNr, const vigra::Diff2D &tmplPoint, int tmplWidth, unsigned int subjImgNr, const hugin_utils::FDiff2D &subjPoint, int searchWidth, vigra_ext::CorrelationResult &tunedPos) |
| search for region in destImg | |
| const float | getVerticalCPBias () |
| void | OnMyButtonClicked (wxCommandEvent &e) |
| void | OnCPEvent (CPEvent &ev) |
| void | OnLeftChoiceChange (wxCommandEvent &e) |
| void | OnRightChoiceChange (wxCommandEvent &e) |
| void | OnCPListSelect (wxListEvent &e) |
| void | OnCPListDeselect (wxListEvent &e) |
| void | OnAddButton (wxCommandEvent &e) |
| void | OnZoom (wxCommandEvent &e) |
| void | OnTextPointChange (wxCommandEvent &e) |
| void | OnKey (wxKeyEvent &e) |
| void | OnDeleteButton (wxCommandEvent &e) |
| void | OnPrevImg (wxCommandEvent &e) |
| void | OnNextImg (wxCommandEvent &e) |
| void | OnColumnWidthChange (wxListEvent &e) |
| void | OnFineTuneButton (wxCommandEvent &e) |
| void | OnCelesteButton (wxCommandEvent &e) |
| void | FineTuneSelectedPoint (bool left) |
| void | FineTuneNewPoint (bool left) |
| hugin_utils::FDiff2D | LocalFineTunePoint (unsigned int srcNr, const vigra::Diff2D &srcPnt, unsigned int moveNr, const hugin_utils::FDiff2D &movePnt) |
| hugin_utils::FDiff2D | EstimatePoint (const hugin_utils::FDiff2D &p, bool left) |
| Estimate position of point in the other image. | |
| void | changeState (CPCreationState newState) |
| void | estimateAndAddOtherPoint (const hugin_utils::FDiff2D &p, bool left, CPImageCtrl *thisImg, unsigned int thisImgNr, CPCreationState THIS_POINT, CPCreationState THIS_POINT_RETRY, CPImageCtrl *otherImg, unsigned int otherImgNr, CPCreationState OTHER_POINT, CPCreationState OTHER_POINT_RETRY) |
| estimate and set point in other image | |
| CPImageCtrl::ImageRotation | GetRot (double yaw, double roll, double pitch) |
| calculate rotation required for upright image display from roll, pitch and yaw angles | |
| void | UpdateTransforms () |
| updated the internal transform object for drawing line in controls | |
| DECLARE_EVENT_TABLE () | |
Private Attributes | |
| CPCreationState | cpCreationState |
| CPImagesComboBox * | m_leftChoice |
| CPImagesComboBox * | m_rightChoice |
| CPImageCtrl * | m_leftImg |
| CPImageCtrl * | m_rightImg |
| wxListCtrl * | m_cpList |
| wxTextCtrl * | m_x1Text |
| wxTextCtrl * | m_y1Text |
| wxTextCtrl * | m_x2Text |
| wxTextCtrl * | m_y2Text |
| wxTextCtrl * | m_errorText |
| wxChoice * | m_cpModeChoice |
| wxButton * | m_addButton |
| wxButton * | m_delButton |
| wxCheckBox * | m_autoAddCB |
| wxCheckBox * | m_fineTuneCB |
| wxCheckBox * | m_estimateCB |
| wxPanel * | m_cp_ctrls |
| PT::Panorama * | m_pano |
| unsigned int | m_leftImageNr |
| unsigned int | m_rightImageNr |
| std::string | m_leftFile |
| std::string | m_rightFile |
| bool | m_listenToPageChange |
| double | m_detailZoomFactor |
| PTools::Transform | m_leftTransform |
| PTools::Transform | m_leftInvTransform |
| PTools::Transform | m_rightTransform |
| PTools::Transform | m_rightInvTransform |
| unsigned int | m_selectedPoint |
| HuginBase::CPointVector | currentPoints |
| std::set< unsigned int > | mirroredPoints |
| CPImageCtrl::ImageRotation | m_leftRot |
| CPImageCtrl::ImageRotation | m_rightRot |
This panel is used to create/change/edit control points
Definition at line 63 of file CPEditorPanel.h.
|
|
the state machine for point selection: it is set to the current selection
Definition at line 197 of file CPEditorPanel.h. Referenced by NewPointChange(). |
|
|
ctor.
|
|
|
dtor.
Definition at line 220 of file CPEditorPanel.cpp. References DEBUG_TRACE, m_autoAddCB, m_estimateCB, m_fineTuneCB, m_pano, m_x1Text, m_x2Text, m_y1Text, m_y2Text, and HuginBase::Panorama::removeObserver(). |
|
|
|
unselect a point
Definition at line 539 of file CPEditorPanel.cpp. References changeState(), CPImageCtrl::deselect(), m_cpList, m_leftImg, m_rightImg, m_selectedPoint, NO_POINT, and UpdateDisplay(). Referenced by changeState(). |
|
||||||||||||||||||||||||||||
|
|
this is used to finally create the point in the panorama model
Definition at line 462 of file CPEditorPanel.cpp. References CommandHistory::addCommand(), CPImagesComboBox::CalcCPDistance(), changeState(), DEBUG_TRACE, hugin_utils::FDiff2D, MainFrame::Get(), GlobalCmdHist::getInstance(), CPImageCtrl::getNewPoint(), getVerticalCPBias(), HuginBase::ControlPoint::image1Nr, HuginBase::ControlPoint::image2Nr, m_cpModeChoice, m_leftChoice, m_leftImg, m_pano, m_rightChoice, m_rightImg, HuginBase::ControlPoint::mode, NO_POINT, SelectGlobalPoint(), hugin_utils::TDiff2D< T >::x, HuginBase::ControlPoint::x1, HuginBase::ControlPoint::x2, hugin_utils::TDiff2D< T >::y, HuginBase::ControlPoint::y1, and HuginBase::ControlPoint::y2. Referenced by estimateAndAddOtherPoint(), NewPointChange(), OnAddButton(), and OnCPEvent(). |
|
|
|
|
|
enable or disable controls for editing other points
Definition at line 1279 of file CPEditorPanel.cpp. References m_cpModeChoice, m_delButton, m_x1Text, m_x2Text, m_y1Text, and m_y2Text. Referenced by OnCPListDeselect(), OnCPListSelect(), SelectLocalPoint(), and UpdateDisplay(). |
|
||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||
|
Estimate position of point in the other image. simply average all point distances together approximatly true for rectilinear images with roll and pitch close to 0...
Definition at line 1859 of file CPEditorPanel.cpp. References currentPoints, DEBUG_DEBUG, DEBUG_WARN, hugin_utils::FDiff2D, HuginBase::SrcPanoImage::getHeight(), HuginBase::Panorama::getImage(), HuginBase::SrcPanoImage::getWidth(), m_pano, m_rightImageNr, hugin_utils::TDiff2D< T >::x, and hugin_utils::TDiff2D< T >::y. Referenced by estimateAndAddOtherPoint(). |
|
|
Definition at line 1820 of file CPEditorPanel.cpp. References cpCreationState, hugin_utils::FDiff2D, CPImageCtrl::getNewPoint(), LEFT_POINT_RETRY, LocalFineTunePoint(), m_leftImg, m_rightImg, RIGHT_POINT_RETRY, CPImageCtrl::setNewPoint(), hugin_utils::TDiff2D< T >::toDiff2D(), and CPImageCtrl::update(). Referenced by OnFineTuneButton(), and OnKey(). |
|
|
||||||||||||||||
|
calculate rotation required for upright image display from roll, pitch and yaw angles
Definition at line 1900 of file CPEditorPanel.cpp. Referenced by panoramaImagesChanged(), setLeftImage(), and setRightImage(). |
|
|
Definition at line 521 of file CPEditorPanel.cpp. References HuginBase::Panorama::getOptions(), HuginBase::PanoramaOptions::getProjection(), and m_pano. Referenced by CreateNewPoint(), and OnCPEvent(). |
|
||||||||||||
|
map a global point nr to a local one, if possible
Definition at line 591 of file CPEditorPanel.cpp. References currentPoints. Referenced by SelectGlobalPoint(). |
|
|
Definition at line 213 of file CPEditorPanel.cpp. References HuginBase::Panorama::addObserver(), and m_pano. |
|
||||||||||||||||||||
|
Definition at line 1759 of file CPEditorPanel.cpp. References hugin_utils::FDiff2D, HUGIN_FT_LOCAL_SEARCH_WIDTH, HUGIN_FT_TEMPLATE_SIZE, vigra_ext::CorrelationResult::maxpos, and PointFineTune(). Referenced by FineTuneNewPoint(), and FineTuneSelectedPoint(). |
|
|
find a local point
Definition at line 607 of file CPEditorPanel.cpp. References currentPoints. Referenced by OnCPEvent(), OnDeleteButton(), and OnKey(). |
|
||||||||||||
|
|
Definition at line 1518 of file CPEditorPanel.cpp. References cpCreationState, and CreateNewPoint(). |
|
|
|
Definition at line 1894 of file CPEditorPanel.cpp. References m_cpList. |
|
|
|
Definition at line 1381 of file CPEditorPanel.cpp. References changeState(), CPImageCtrl::deselect(), EnablePointEdit(), m_leftImg, m_rightImg, and NO_POINT. |
|
|
Definition at line 1370 of file CPEditorPanel.cpp. References changeState(), DEBUG_TRACE, EnablePointEdit(), NO_POINT, and SelectLocalPoint(). |
|
|
Definition at line 1526 of file CPEditorPanel.cpp. References CommandHistory::addCommand(), CPImagesComboBox::CalcCPDistance(), changeState(), cpCreationState, DEBUG_TRACE, GlobalCmdHist::getInstance(), localPNr2GlobalPNr(), m_cpList, m_leftChoice, m_pano, m_rightChoice, and NO_POINT. |
|
|
Definition at line 1686 of file CPEditorPanel.cpp. References cpCreationState, FineTuneNewPoint(), and FineTuneSelectedPoint(). |
|
|
Definition at line 1434 of file CPEditorPanel.cpp. References CommandHistory::addCommand(), changeState(), cpCreationState, DEBUG_DEBUG, FineTuneNewPoint(), FineTuneSelectedPoint(), GlobalCmdHist::getInstance(), localPNr2GlobalPNr(), m_cpList, m_leftImageNr, m_pano, m_rightImageNr, NO_POINT, OnNextImg(), OnPrevImg(), and OnZoom(). Referenced by Create(). |
|
|
Definition at line 1355 of file CPEditorPanel.cpp. References DEBUG_TRACE, m_listenToPageChange, and setLeftImage(). |
|
|
|
|
|
Definition at line 1665 of file CPEditorPanel.cpp. References HuginBase::Panorama::getNrOfImages(), m_leftImageNr, m_pano, m_rightImageNr, setLeftImage(), and setRightImage(). Referenced by OnKey(). |
|
|
Definition at line 1644 of file CPEditorPanel.cpp. References HuginBase::Panorama::getNrOfImages(), m_leftImageNr, m_pano, m_rightImageNr, setLeftImage(), and setRightImage(). Referenced by OnKey(). |
|
|
Definition at line 1363 of file CPEditorPanel.cpp. References DEBUG_TRACE, m_listenToPageChange, and setRightImage(). |
|
|
|
Definition at line 1393 of file CPEditorPanel.cpp. References DEBUG_ERROR, m_detailZoomFactor, m_leftImg, m_rightImg, m_selectedPoint, SelectLocalPoint(), and CPImageCtrl::setScale(). Referenced by changeState(), Create(), and OnKey(). |
|
|
called when the panorama changes and we should update our display
Definition at line 967 of file CPEditorPanel.cpp. References DEBUG_DEBUG, DEBUG_TRACE, HuginBase::Panorama::getNextCPTypeLineNumber(), m_cpModeChoice, and UpdateTransforms(). |
|
||||||||||||
|
||||||||||||||||||||||||||||||||
|
|
Select a point. This should highlight it in the listview and on the pictures. Does not change the pictures. The control point must be on the two existing images Definition at line 580 of file CPEditorPanel.cpp. References DEBUG_DEBUG, DEBUG_ERROR, globalPNr2LocalPNr(), and SelectLocalPoint(). Referenced by CreateNewPoint(), OnCPEvent(), and ShowControlPoint(). |
|
|
select a local point.
Definition at line 554 of file CPEditorPanel.cpp. References currentPoints, DEBUG_DEBUG, DEBUG_TRACE, EnablePointEdit(), m_cpList, m_cpModeChoice, m_leftImg, m_rightImg, m_selectedPoint, m_x1Text, m_x2Text, m_y1Text, m_y2Text, HuginBase::ControlPoint::mode, CPImageCtrl::selectPoint(), HuginBase::ControlPoint::x1, HuginBase::ControlPoint::x2, HuginBase::ControlPoint::y1, and HuginBase::ControlPoint::y2. Referenced by OnCPEvent(), OnCPListSelect(), OnZoom(), and SelectGlobalPoint(). |
|
|
set left image
Definition at line 237 of file CPEditorPanel.cpp. References changeState(), const_map_get(), DEBUG_TRACE, HuginBase::Panorama::getImage(), HuginBase::Panorama::getImageVariables(), GetRot(), m_leftChoice, m_leftFile, m_leftImageNr, m_leftImg, m_leftRot, m_pano, m_rightChoice, m_selectedPoint, NO_POINT, CPImageCtrl::setImage(), CPImagesComboBox::SetRefImage(), UpdateDisplay(), and UpdateTransforms(). Referenced by OnLeftChoiceChange(), OnNextImg(), OnPrevImg(), panoramaImagesChanged(), ShowControlPoint(), and MainFrame::ShowCtrlPointEditor(). |
|
|
Definition at line 83 of file CPEditorPanel.h. References m_pano. |
|
|
set right image
Definition at line 269 of file CPEditorPanel.cpp. References changeState(), const_map_get(), DEBUG_TRACE, HuginBase::Panorama::getImage(), HuginBase::Panorama::getImageVariables(), GetRot(), m_leftChoice, m_pano, m_rightChoice, m_rightFile, m_rightImageNr, m_rightImg, m_rightRot, m_selectedPoint, NO_POINT, CPImageCtrl::setImage(), CPImagesComboBox::SetRefImage(), UpdateDisplay(), and UpdateTransforms(). Referenced by OnNextImg(), OnPrevImg(), OnRightChoiceChange(), panoramaImagesChanged(), ShowControlPoint(), and MainFrame::ShowCtrlPointEditor(). |
|
|
show a control point
show control point Definition at line 1555 of file CPEditorPanel.cpp. References changeState(), HuginBase::Panorama::getCtrlPoint(), HuginBase::ControlPoint::image1Nr, HuginBase::ControlPoint::image2Nr, m_pano, NO_POINT, SelectGlobalPoint(), setLeftImage(), and setRightImage(). Referenced by MainFrame::ShowCtrlPoint(). |
|
|
updates the display after another image has been selected. updates control points, and other widgets Definition at line 1150 of file CPEditorPanel.cpp. References CPImageCtrl::clearCtrlPointList(), currentPoints, DEBUG_DEBUG, EnablePointEdit(), HuginBase::ControlPoint::error, HuginBase::Panorama::getCtrlPoints(), m_cpList, m_cpModeChoice, m_leftChoice, m_leftImageNr, m_leftImg, m_pano, m_rightChoice, m_rightImageNr, m_rightImg, m_selectedPoint, m_x1Text, m_x2Text, m_y1Text, m_y2Text, mirroredPoints, HuginBase::ControlPoint::mode, CPImageCtrl::selectPoint(), CPImageCtrl::setCtrlPoint(), CPImageCtrl::setSameImage(), CPImageCtrl::update(), HuginBase::ControlPoint::x1, HuginBase::ControlPoint::x2, HuginBase::ControlPoint::y1, and HuginBase::ControlPoint::y2. Referenced by ClearSelection(), panoramaImagesChanged(), setLeftImage(), and setRightImage(). |
|
|
updated the internal transform object for drawing line in controls
Definition at line 305 of file CPEditorPanel.cpp. References HuginBase::Panorama::getImage(), HuginBase::Panorama::getNrOfImages(), HuginBase::Panorama::getOptions(), m_leftImageNr, m_leftInvTransform, m_leftTransform, m_pano, m_rightImageNr, m_rightInvTransform, and m_rightTransform. Referenced by panoramaChanged(), setLeftImage(), and setRightImage(). |
|
|
Definition at line 224 of file CPEditorPanel.h. Referenced by changeState(), Create(), FineTuneNewPoint(), NewPointChange(), OnAddButton(), OnCPEvent(), OnDeleteButton(), OnFineTuneButton(), and OnKey(). |
|
|
Definition at line 259 of file CPEditorPanel.h. Referenced by EstimatePoint(), FineTuneSelectedPoint(), globalPNr2LocalPNr(), localPNr2GlobalPNr(), NewPointChange(), OnCelesteButton(), OnCPEvent(), OnTextPointChange(), SelectLocalPoint(), and UpdateDisplay(). |
|
|
Definition at line 234 of file CPEditorPanel.h. Referenced by changeState(), Create(), and panoramaImagesChanged(). |
|
|
Definition at line 236 of file CPEditorPanel.h. Referenced by Create(), estimateAndAddOtherPoint(), NewPointChange(), panoramaImagesChanged(), and ~CPEditorPanel(). |
|
|
Definition at line 239 of file CPEditorPanel.h. Referenced by Create(). |
|
|
Definition at line 230 of file CPEditorPanel.h. Referenced by ClearSelection(), Create(), OnColumnWidthChange(), OnDeleteButton(), OnKey(), OnTextPointChange(), SelectLocalPoint(), and UpdateDisplay(). |
|
|
Definition at line 233 of file CPEditorPanel.h. Referenced by Create(), CreateNewPoint(), EnablePointEdit(), OnTextPointChange(), panoramaChanged(), panoramaImagesChanged(), SelectLocalPoint(), and UpdateDisplay(). |
|
|
Definition at line 235 of file CPEditorPanel.h. Referenced by changeState(), Create(), EnablePointEdit(), and panoramaImagesChanged(). |
|
|
Definition at line 249 of file CPEditorPanel.h. Referenced by Create(), estimateAndAddOtherPoint(), NewPointChange(), and OnZoom(). |
|
|
Definition at line 232 of file CPEditorPanel.h. |
|
|
Definition at line 238 of file CPEditorPanel.h. Referenced by Create(), NewPointChange(), panoramaImagesChanged(), and ~CPEditorPanel(). |
|
|
Definition at line 237 of file CPEditorPanel.h. Referenced by changeState(), Create(), estimateAndAddOtherPoint(), NewPointChange(), panoramaImagesChanged(), and ~CPEditorPanel(). |
|
|
Definition at line 227 of file CPEditorPanel.h. Referenced by Create(), CreateNewPoint(), OnCPEvent(), OnDeleteButton(), panoramaImagesChanged(), setLeftImage(), setRightImage(), and UpdateDisplay(). |
|
|
Definition at line 246 of file CPEditorPanel.h. Referenced by panoramaImagesChanged(), and setLeftImage(). |
|
|
Definition at line 244 of file CPEditorPanel.h. Referenced by changeState(), Create(), OnCelesteButton(), OnKey(), OnNextImg(), OnPrevImg(), panoramaImagesChanged(), setLeftImage(), UpdateDisplay(), and UpdateTransforms(). |
|
|
Definition at line 229 of file CPEditorPanel.h. Referenced by changeState(), ClearSelection(), Create(), CreateNewPoint(), FineTuneNewPoint(), OnCPEvent(), OnCPListDeselect(), OnZoom(), panoramaImagesChanged(), SelectLocalPoint(), setLeftImage(), and UpdateDisplay(). |
|
|
Definition at line 252 of file CPEditorPanel.h. Referenced by Create(), and UpdateTransforms(). |
|
|
Definition at line 264 of file CPEditorPanel.h. Referenced by Create(), panoramaImagesChanged(), and setLeftImage(). |
|
|
Definition at line 251 of file CPEditorPanel.h. Referenced by Create(), and UpdateTransforms(). |
|
|
Definition at line 248 of file CPEditorPanel.h. Referenced by Create(), OnLeftChoiceChange(), OnRightChoiceChange(), and panoramaImagesChanged(). |
|
|
|
Definition at line 228 of file CPEditorPanel.h. Referenced by Create(), CreateNewPoint(), OnCPEvent(), OnDeleteButton(), panoramaImagesChanged(), setLeftImage(), setRightImage(), and UpdateDisplay(). |
|
|
Definition at line 247 of file CPEditorPanel.h. Referenced by panoramaImagesChanged(), and setRightImage(). |
|
|
Definition at line 245 of file CPEditorPanel.h. Referenced by Create(), EstimatePoint(), OnKey(), OnNextImg(), OnPrevImg(), panoramaImagesChanged(), setRightImage(), UpdateDisplay(), and UpdateTransforms(). |
|
|
Definition at line 229 of file CPEditorPanel.h. Referenced by changeState(), ClearSelection(), Create(), CreateNewPoint(), FineTuneNewPoint(), OnCPEvent(), OnCPListDeselect(), OnZoom(), panoramaImagesChanged(), SelectLocalPoint(), setRightImage(), and UpdateDisplay(). |
|
|
Definition at line 254 of file CPEditorPanel.h. Referenced by Create(), and UpdateTransforms(). |
|
|
Definition at line 265 of file CPEditorPanel.h. Referenced by Create(), panoramaImagesChanged(), and setRightImage(). |
|
|
Definition at line 253 of file CPEditorPanel.h. Referenced by Create(), and UpdateTransforms(). |
|
|
Definition at line 256 of file CPEditorPanel.h. Referenced by changeState(), ClearSelection(), Create(), FineTuneSelectedPoint(), OnZoom(), SelectLocalPoint(), setLeftImage(), setRightImage(), and UpdateDisplay(). |
|
|
Definition at line 232 of file CPEditorPanel.h. Referenced by Create(), EnablePointEdit(), OnTextPointChange(), SelectLocalPoint(), UpdateDisplay(), and ~CPEditorPanel(). |
|
|
Definition at line 232 of file CPEditorPanel.h. Referenced by Create(), EnablePointEdit(), OnTextPointChange(), SelectLocalPoint(), UpdateDisplay(), and ~CPEditorPanel(). |
|
|
Definition at line 232 of file CPEditorPanel.h. Referenced by Create(), EnablePointEdit(), OnTextPointChange(), SelectLocalPoint(), UpdateDisplay(), and ~CPEditorPanel(). |
|
|
Definition at line 232 of file CPEditorPanel.h. Referenced by Create(), EnablePointEdit(), OnTextPointChange(), SelectLocalPoint(), UpdateDisplay(), and ~CPEditorPanel(). |
|
|
Definition at line 262 of file CPEditorPanel.h. Referenced by FineTuneSelectedPoint(), OnTextPointChange(), and UpdateDisplay(). |
1.3.9.1