]> Creatis software - creaContours.git/blobdiff - lib/Interface_Icons_NDimensions/interfEditMenu.cxx
Changes with manualBaseModel. It improves the functionality with the new
[creaContours.git] / lib / Interface_Icons_NDimensions / interfEditMenu.cxx
index 9f94b67ec7d5d6d74d2bd6549f970fd825b3f1c5..2aea2621f2396b86c0a4c493957bfae353212fb0 100644 (file)
@@ -15,21 +15,27 @@ void interfEditMenu::initButtons(wxEvtHandler* evtHandler) {
        std::vector<wxObjectEventFunction> funct;
 
        path.push_back(datadir + "/copy.png");
-       nom.push_back("Copy the selected contour");
+       nom.push_back("Copy the selected contour  ctrl + c");
        funct.push_back((wxObjectEventFunction) &interfEditMenu:: onCopy);
 
        path.push_back(datadir + "/paste.png");
-       nom.push_back("Paste the copied contour");
+       nom.push_back("Paste the copied contour  ctrl + v");
        funct.push_back((wxObjectEventFunction) &interfEditMenu:: onPaste);
 
        path.push_back(datadir + "/undo.png");
-       nom.push_back("Undo");
+       nom.push_back("Undo  ctrl + z");
        funct.push_back((wxObjectEventFunction) &interfEditMenu:: onUndo);
 
        path.push_back(datadir + "/redo.png");
-       nom.push_back("Redo");
+       nom.push_back("Redo  ctrl + y");
        funct.push_back((wxObjectEventFunction) &interfEditMenu:: onRedo);
 
+//CMRU 17-08-09 ------------------------------------------------------------------
+       path.push_back(datadir + "/Letter.PNG");
+       nom.push_back("Insert a Label");
+       funct.push_back((wxObjectEventFunction)&interfEditMenu::onPrintLabel);
+//-------------------------------------------------------------------------------
+
     this->addButtons(path, nom);
        this->setVectorFunction(funct);
 
@@ -54,6 +60,9 @@ void interfEditMenu::onUndo(wxCommandEvent& event){
 void interfEditMenu::onRedo(wxCommandEvent& event){
        interfMainPanel::getInstance()->onRedo();
 }
+void interfEditMenu::onPrintLabel(wxCommandEvent& event){
+       interfMainPanel::getInstance()->onPrintLabel();
+}
 
 interfEditMenu::~interfEditMenu()
 {