X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FcreaImageIOWxDescriptorPanel.cpp;fp=src%2FcreaImageIOWxDescriptorPanel.cpp;h=d78d1e40b1236f65695b9a1276561dc49bfffe28;hb=2a8a9b27d2eba4985b76d2f0218fd4ba83784ca9;hp=d50de1fecfaae7803d68b00bec5fd8540b633312;hpb=904a0f40b42aa61b7632fbaeca5441da76ce3970;p=creaImageIO.git diff --git a/src/creaImageIOWxDescriptorPanel.cpp b/src/creaImageIOWxDescriptorPanel.cpp index d50de1f..d78d1e4 100644 --- a/src/creaImageIOWxDescriptorPanel.cpp +++ b/src/creaImageIOWxDescriptorPanel.cpp @@ -35,28 +35,32 @@ namespace creaImageIO wxButton *LoadDescriptor = new wxButton(this, -1,_T("Load a descriptor"), wxPoint(150,7) ); Connect( LoadDescriptor->GetId(), wxEVT_COMMAND_BUTTON_CLICKED , (wxObjectEventFunction) &WxDescriptorPanel::OnLoad ); - + + /// \TODO fix warning: unused variable line1 wxStaticLine *line1 = new wxStaticLine(this, -1, wxPoint(5,40), wxSize(540,2)); // LEVEL + /// \TODO fix warning: unused variable LevelText wxStaticText * LevelText=new wxStaticText(this,-1,_T(" Level: "), wxPoint(5,50)); LevelCtrl=new wxTextCtrl(this, ID_GR_CTRL,_T("patient"), wxPoint(50,50), wxSize(50,25)); wxButton *addLevel = new wxButton(this, ID_LEVEL_ADD,_T("add a level"), wxPoint(150,50) ); Connect( addLevel->GetId(), wxEVT_COMMAND_BUTTON_CLICKED , (wxObjectEventFunction) &WxDescriptorPanel::OnAddLevel ); + /// \TODO fix warning: unused variable line2 wxStaticLine *line2 = new wxStaticLine(this, -1, wxPoint(5,75), wxSize(540,2)); // ATTRIBUTES + /// \TODO fix warning: unused variable GR wxStaticText * GR=new wxStaticText(this,-1,_T(" DICOM Group: "), wxPoint(5,110)); GRCtrl=new wxTextCtrl(this, ID_GR_CTRL,_T("0x0010"), wxPoint(82,110), wxSize(50,25)); Connect( GRCtrl->GetId(), wxEVT_COMMAND_TEXT_UPDATED , (wxObjectEventFunction) &WxDescriptorPanel::OnDicomAttribute ); + /// \TODO fix warning: unused variable EL wxStaticText * EL=new wxStaticText(this,-1,_T(" DICOM Element: "), wxPoint(140,110)); ELCtrl=new wxTextCtrl(this, ID_EL_CTRL,_T("0x0010"), wxPoint(230,110), wxSize(50,25)); Connect( ELCtrl->GetId(), wxEVT_COMMAND_TEXT_UPDATED , (wxObjectEventFunction) &WxDescriptorPanel::OnDicomAttribute ); - wxString choices[3]; choices[0] = _T("Unknow Attribute"); std::map::iterator it_att =ownatt.begin(); @@ -72,7 +76,7 @@ namespace creaImageIO wxButton *addAttribute = new wxButton(this, ID_ATTRIBUTE_ADD,_T("add an attribute"), wxPoint(440,110) ); Connect( addAttribute->GetId(), wxEVT_COMMAND_BUTTON_CLICKED , (wxObjectEventFunction) &WxDescriptorPanel::OnAddAttribute ); - + /// \TODO fix warning: unused variable line3 wxStaticLine *line3 = new wxStaticLine(this, -1, wxPoint(5,140), wxSize(540,2)); // RESULT @@ -81,6 +85,7 @@ namespace creaImageIO wxButton *RemoveCtrl = new wxButton(this, ID_REMOVE_ADD,_T("Remove an entry"), wxPoint(280,200) ); Connect( RemoveCtrl->GetId(), wxEVT_COMMAND_BUTTON_CLICKED , (wxObjectEventFunction) &WxDescriptorPanel::OnRemove ); + /// \TODO fix warning: unused variable line4 wxStaticLine *line4 = new wxStaticLine(this, -1, wxPoint(5,470), wxSize(540,2)); // VALIDATION BUTTON wxButton *Ok = new wxButton(this, -1,_T("OK"), wxPoint(10,480) ); @@ -89,6 +94,7 @@ namespace creaImageIO wxButton *Apply = new wxButton(this, -1,_T("APPLY"), wxPoint(150,480) ); Connect( Apply->GetId(), wxEVT_COMMAND_BUTTON_CLICKED , (wxObjectEventFunction) &WxDescriptorPanel::OnApply ); + /// \TODO fix warning: unused variable Cancel wxButton *Cancel = new wxButton(this, wxID_CANCEL,_T("CANCEL"), wxPoint(250,480) ); // Connect( Cancel->GetId(), wxEVT_COMMAND_BUTTON_CLICKED , (wxCloseEvent) &wxWindow::Close ); @@ -233,7 +239,7 @@ namespace creaImageIO ////////////////////////////////////////////////// void WxDescriptorPanel::OnDicomAttribute(wxCommandEvent& event) { - int i = 0; + //int i = 0; if(!GRCtrl->GetValue().IsEmpty() && !ELCtrl->GetValue().IsEmpty() && GRCtrl->GetValue().Len() == 6 && ELCtrl->GetValue().Len() == 6 && AttributeCombo->GetSelection() == 0) {