@@ -758,31 +758,31 @@ def __menuBindings(self):
758
758
# For recent items
759
759
self .Bind (wx .EVT_MENU_RANGE , self .onMRUFile , id = wx .ID_FILE1 , id2 = wx .ID_FILE5 )
760
760
761
- ## Edit Menu
761
+ # Edit Menu
762
762
self .Bind (wx .EVT_MENU , self .onDelete , id = self .deleteId )
763
763
self .Bind (wx .EVT_MENU , self .onCopy , id = self .copyId )
764
764
self .Bind (wx .EVT_MENU , self .onPaste , id = self .pasteId )
765
765
self .Bind (wx .EVT_MENU , self .onPasteLink , id = self .pasteLinkId )
766
766
self .Bind (wx .EVT_MENU , self .onPreferences , self .prefItem )
767
767
768
- ## View menu
768
+ # View menu
769
769
self .Bind (wx .EVT_MENU , self .onDefaultLayout , self .defaultLayoutItem )
770
770
self .Bind (wx .EVT_MENU , self .onShowFit , self .showFitItem )
771
771
self .Bind (wx .EVT_MENU , self .onShowPlot , self .showPlotItem )
772
772
self .Bind (wx .EVT_MENU , self .onShowOutput , self .showOutputItem )
773
773
self .Bind (wx .EVT_MENU , self .onShowJournal , self .showJournalItem )
774
774
775
- ## Fits Menu
775
+ # Fits Menu
776
776
self .Bind (wx .EVT_MENU , self .onNewFit , id = self .newFitId )
777
777
self .Bind (wx .EVT_MENU , self .onRun , id = self .runFitId )
778
778
self .Bind (wx .EVT_MENU , self .onStop , id = self .stopFitId )
779
779
self .Bind (wx .EVT_MENU , self .onExportRes , id = self .exportResId )
780
780
self .Bind (wx .EVT_MENU , self .onRSeries , self .rseriesItem )
781
781
self .Bind (wx .EVT_MENU , self .onTSeries , self .tseriesItem )
782
782
self .Bind (wx .EVT_MENU , self .onDSeries , self .dseriesItem )
783
- ## Macros are inserted individually
783
+ # Macros are inserted individually
784
784
785
- ## Phases Menu
785
+ # Phases Menu
786
786
self .Bind (wx .EVT_MENU , self .onInsPhase , id = self .newPhaseId )
787
787
self .Bind (wx .EVT_MENU , self .onPrintBL , id = self .printBLId )
788
788
self .Bind (wx .EVT_MENU , self .onPrintBA , id = self .printBAId )
@@ -791,16 +791,16 @@ def __menuBindings(self):
791
791
self .Bind (wx .EVT_MENU , self .onPlotIStruct , id = self .plotIStructId )
792
792
self .Bind (wx .EVT_MENU , self .onPlotFStruct , id = self .plotFStructId )
793
793
794
- ## Data Menu
794
+ # Data Menu
795
795
self .Bind (wx .EVT_MENU , self .onInsData , id = self .newDataId )
796
796
self .Bind (wx .EVT_MENU , self .onExportPDF , id = self .exportFitPDFId )
797
797
798
- ## Calculations Menu
798
+ # Calculations Menu
799
799
self .Bind (wx .EVT_MENU , self .onInsCalc , id = self .newCalcId )
800
800
self .Bind (wx .EVT_MENU , self .onRun , id = self .runCalcId )
801
801
self .Bind (wx .EVT_MENU , self .onSaveCalc , id = self .exportCalcPDFId )
802
802
803
- ## Help Menu
803
+ # Help Menu
804
804
self .Bind (wx .EVT_MENU , self .onDocumentation , self .docItem )
805
805
self .Bind (wx .EVT_MENU , self .onAbout , self .aboutItem )
806
806
self .Bind (wx .EVT_MENU , self .onRequest , self .requestItem )
@@ -1529,11 +1529,11 @@ def disableSharedMenuItems(self, menu):
1529
1529
noPhases = False
1530
1530
if node :
1531
1531
phases = self .treeCtrlMain .GetPhases (node )
1532
- ## No insert calculation if there are no phases
1532
+ # No insert calculation if there are no phases
1533
1533
if len (phases ) == 0 :
1534
1534
noPhases = True
1535
1535
1536
- ## No insert calculation if there are no phases
1536
+ # No insert calculation if there are no phases
1537
1537
if noPhases :
1538
1538
menu .Enable (self .newCalcId , False )
1539
1539
@@ -1544,7 +1544,7 @@ def disableSharedMenuItems(self, menu):
1544
1544
clipbranchtype = None
1545
1545
cdata = self .treeCtrlMain .GetClipboard ()
1546
1546
1547
- ## No paste if nothing in the clipboard
1547
+ # No paste if nothing in the clipboard
1548
1548
if cdata is None :
1549
1549
menu .Enable (self .pasteId , False )
1550
1550
menu .Enable (self .pasteLinkId , False )
@@ -1573,15 +1573,15 @@ def disableSharedMenuItems(self, menu):
1573
1573
menu .SetLabel (self .pasteId , pastetext )
1574
1574
1575
1575
# Disable certain entries based upon where we clicked.
1576
- ## No copy, paste, or insert on multiple items.
1576
+ # No copy, paste, or insert on multiple items.
1577
1577
if len (selections ) > 1 :
1578
1578
menu .Enable (self .copyId , False )
1579
1579
menu .Enable (self .pasteId , False )
1580
1580
menu .Enable (self .pasteLinkId , False )
1581
1581
menu .Enable (self .newDataId , False )
1582
1582
menu .Enable (self .newPhaseId , False )
1583
1583
menu .Enable (self .newCalcId , False )
1584
- ## Disallow paste of fit if no items selected
1584
+ # Disallow paste of fit if no items selected
1585
1585
elif not selections :
1586
1586
menu .Enable (self .copyId , False )
1587
1587
menu .Enable (self .deleteId , False )
@@ -1708,7 +1708,7 @@ def disableMainMenuItems(self):
1708
1708
if not cdata .Gcalc :
1709
1709
menu .Enable (self .exportFitPDFId , False )
1710
1710
1711
- ## Check the run/stop status.
1711
+ # Check the run/stop status.
1712
1712
if self .runningDict :
1713
1713
menu .Enable (self .newId , False )
1714
1714
menu .Enable (self .runCalcId , False )
@@ -1756,7 +1756,7 @@ def disableMainMenuItems(self):
1756
1756
return
1757
1757
1758
1758
# Shared menu items
1759
- ## The bulk of the code for these methods is in the FitTree class.
1759
+ # The bulk of the code for these methods is in the FitTree class.
1760
1760
def onNewFit (self , event ):
1761
1761
"""Start a new fit tree.
1762
1762
@@ -2377,7 +2377,14 @@ def onExportNewStruct(self, event):
2377
2377
# branchname = self.treeCtrlMain.GetBranchName(node)
2378
2378
name = self .treeCtrlMain .GetItemText (node )
2379
2379
basename = "." .join (name .split ("." )[:- 1 ]) or name
2380
- matchstring = "PDFfit structure file (*.stru)|*.stru|Crystallographic Information File (*.cif)|*.cif|Protein Data Bank file (*.pdb)|*.pdb|Labeled coordinate file (*.xyz)|*.xyz|Raw corrdinate file (*.xyz)|*.xyz|AtomEye configuration file|*"
2380
+ matchstring = (
2381
+ "PDFfit structure file (*.stru)|*.stru|"
2382
+ "Crystallographic Information File (*.cif)|*.cif|"
2383
+ "Protein Data Bank file (*.pdb)|*.pdb|"
2384
+ "Labeled coordinate file (*.xyz)|*.xyz|"
2385
+ "Raw coordinate file (*.xyz)|*.xyz|"
2386
+ "AtomEye configuration file|*"
2387
+ )
2381
2388
d = wx .FileDialog (
2382
2389
None ,
2383
2390
"Save as..." ,
@@ -2416,7 +2423,14 @@ def onExportStruct(self, event):
2416
2423
# branchname = self.treeCtrlMain.GetBranchName(node)
2417
2424
name = self .treeCtrlMain .GetItemText (node )
2418
2425
basename = "." .join (name .split ("." )[:- 1 ]) or name
2419
- matchstring = "PDFfit structure file (*.stru)|*.stru|Crystallographic Information File (*.cif)|*.cif|Protein Data Bank file (*.pdb)|*.pdb|Labeled coordinate file (*.xyz)|*.xyz|Raw corrdinate file (*.xyz)|*.xyz|AtomEye configuration file|*"
2426
+ matchstring = (
2427
+ "PDFfit structure file (*.stru)|*.stru|"
2428
+ "Crystallographic Information File (*.cif)|*.cif|"
2429
+ "Protein Data Bank file (*.pdb)|*.pdb|"
2430
+ "Labeled coordinate file (*.xyz)|*.xyz|"
2431
+ "Raw coordinate file (*.xyz)|*.xyz|"
2432
+ "AtomEye configuration file|*"
2433
+ )
2420
2434
d = wx .FileDialog (
2421
2435
None ,
2422
2436
"Save as..." ,
0 commit comments