Commit 91b19b166486ac97d5c36492e4f3c775c39bfdef

Authored by Paulo Henrique Junqueira Amorim
1 parent 490289b9

ENH: Updated about

invesalius/gui/dialogs.py
@@ -631,8 +631,8 @@ def ShowAboutDialog(parent): @@ -631,8 +631,8 @@ def ShowAboutDialog(parent):
631 info = wx.AboutDialogInfo() 631 info = wx.AboutDialogInfo()
632 info.Name = "InVesalius" 632 info.Name = "InVesalius"
633 info.Version = "3.0 - Beta 3" 633 info.Version = "3.0 - Beta 3"
634 - info.Copyright = _("(c) 2007-2010 Renato Archer Information Technology Centre")  
635 - info.Description = wordwrap(_("InVesalius is a medical imaging program for 3D reconstruction. It uses a sequence of 2D DICOM image files acquired with CT or MRI scanners. InVesalius allows for the export of 3D volumes or surfaces as STL files for creating physical models of a patient's anatomy using rapid prototyping technologies."), 350, wx.ClientDC(parent)) 634 + info.Copyright = _("(c) 2007-2012 Renato Archer Information Technology Centre - CTI")
  635 + info.Description = wordwrap(_("InVesalius is a medical imaging program for 3D reconstruction. It uses a sequence of 2D DICOM image files acquired with CT or MRI scanners. InVesalius allows for the export of 3D volumes or surfaces as STL files for creating physical models of a patient's anatomy using rapid prototyping technologies. The software has the support of the CTI, CNPq and Ministry of Health"), 350, wx.ClientDC(parent))
636 636
637 # _("InVesalius is a software for medical imaging 3D reconstruction. ")+\ 637 # _("InVesalius is a software for medical imaging 3D reconstruction. ")+\
638 # _("Its input is a sequency of DICOM 2D image files acquired with CT or MR.\n\n")+\ 638 # _("Its input is a sequency of DICOM 2D image files acquired with CT or MR.\n\n")+\
@@ -644,7 +644,8 @@ def ShowAboutDialog(parent): @@ -644,7 +644,8 @@ def ShowAboutDialog(parent):
644 644
645 info.Developers = ["Tatiana Al-Chueyr", 645 info.Developers = ["Tatiana Al-Chueyr",
646 "Paulo Henrique Junqueira Amorim", 646 "Paulo Henrique Junqueira Amorim",
647 - "Thiago Franco de Moraes"] 647 + "Thiago Franco de Moraes",
  648 + "Jorge Vicente Lopes da Silva"]
648 649
649 info.Translators = ["Alex P. Natsios", 650 info.Translators = ["Alex P. Natsios",
650 "Andreas Loupasakis", 651 "Andreas Loupasakis",
@@ -659,7 +660,7 @@ def ShowAboutDialog(parent): @@ -659,7 +660,7 @@ def ShowAboutDialog(parent):
659 "Sebastian Hilbert", 660 "Sebastian Hilbert",
660 "Semarang Pari"] 661 "Semarang Pari"]
661 662
662 - info.DocWriters = ["Fabio Francisco da Silva (PT)"] 663 + #info.DocWriters = ["Fabio Francisco da Silva (PT)"]
663 664
664 info.Artists = ["Otavio Henrique Junqueira Amorim"] 665 info.Artists = ["Otavio Henrique Junqueira Amorim"]
665 666
invesalius/gui/frame.py
@@ -467,7 +467,7 @@ class MenuBar(wx.MenuBar): @@ -467,7 +467,7 @@ class MenuBar(wx.MenuBar):
467 file_menu = wx.Menu() 467 file_menu = wx.Menu()
468 app = file_menu.Append 468 app = file_menu.Append
469 app(const.ID_DICOM_IMPORT, _("Import DICOM...\tCtrl+I")) 469 app(const.ID_DICOM_IMPORT, _("Import DICOM...\tCtrl+I"))
470 - #####app(const.ID_DICOM_NETWORK, _("Retrieve DICOM from PACS")) 470 + #app(const.ID_DICOM_NETWORK, _("Retrieve DICOM from PACS"))
471 file_menu.AppendMenu(const.ID_IMPORT_OTHERS_FILES, _("Import Others Files"), others_file_menu) 471 file_menu.AppendMenu(const.ID_IMPORT_OTHERS_FILES, _("Import Others Files"), others_file_menu)
472 app(const.ID_PROJECT_OPEN, _("Open Project...\tCtrl+O")) 472 app(const.ID_PROJECT_OPEN, _("Open Project...\tCtrl+O"))
473 app(const.ID_PROJECT_SAVE, _("Save Project\tCtrl+S")) 473 app(const.ID_PROJECT_SAVE, _("Save Project\tCtrl+S"))
invesalius/gui/import_network_panel.py
@@ -431,6 +431,8 @@ class TextPanel(wx.Panel): @@ -431,6 +431,8 @@ class TextPanel(wx.Panel):
431 evt.Skip() 431 evt.Skip()
432 432
433 def OnActivate(self, evt): 433 def OnActivate(self, evt):
  434 +
  435 +
434 item = evt.GetItem() 436 item = evt.GetItem()
435 item_parent = self.tree.GetItemParent(item) 437 item_parent = self.tree.GetItemParent(item)
436 438