File: polChemDefWnd.cpp

package info (click to toggle)
massxpert 2.3.6-1squeeze1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 20,736 kB
  • ctags: 3,541
  • sloc: cpp: 44,108; xml: 7,381; sh: 604; makefile: 108; ansic: 7
file content (977 lines) | stat: -rw-r--r-- 21,631 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
/* massXpert - the true massist's program.
   --------------------------------------
   Copyright(C) 2006,2007 Filippo Rusconi

   http://www.filomace.org/massXpert

   This file is part of the massXpert project.

   The massxpert project is the successor to the "GNU polyxmass"
   project that is an official GNU project package(see
   www.gnu.org). The massXpert project is not endorsed by the GNU
   project, although it is released ---in its entirety--- under the
   GNU General Public License. A huge part of the code in massXpert
   is actually a C++ rewrite of code in GNU polyxmass. As such
   massXpert was started at the Centre National de la Recherche
   Scientifique(FRANCE), that granted me the formal authorization to
   publish it under this Free Software License.

   This software is free software; you can redistribute it and/or
   modify it under the terms of the GNU  General Public
   License version 3, as published by the Free Software Foundation.
   

   This software is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this software; if not, write to the

   Free Software Foundation, Inc.,

   51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/


/////////////////////// Qt includes
#include <QMessageBox>


/////////////////////// Local includes
#include "polChemDefWnd.hpp"
#include "application.hpp"


namespace massXpert
{

  PolChemDefWnd::PolChemDefWnd(const QString &filePath)
  {
    m_forciblyClose = false;
    m_noDelistWnd = false;

    // Init to 0 all the window pointers, because we'll need to check
    // the construction of the these windows.

    mpa_atomDefDlg = 0;
    mpa_monomerDefDlg = 0;
    mpa_modifDefDlg = 0;
    mpa_cleaveSpecDefDlg = 0;
    mpa_fragSpecDefDlg = 0;
    mpa_crossLinkerDefDlg = 0;

    if (!filePath.isEmpty())
      m_polChemDef.setFilePath(filePath);
  
    if (!initialize())
      {
	QMessageBox::warning(0, 
			      tr("massXpert - Polymer Chemistry Definition"),
			      tr("%1@%2\n"
				  "Failed to initialize the polymer "
				  "chemistry definition window.")
			      .arg(__FILE__)
			      .arg(__LINE__),
			      QMessageBox::Ok);
      }
  
    QSettings settings 
     (static_cast<Application *>(qApp)->configSettingsFilePath(), 
       QSettings::IniFormat);
    restoreGeometry(settings.value
		    ("pol_chem_def_wnd/geometry").toByteArray());
  
    show();
  }


  PolChemDefWnd::~PolChemDefWnd()
  {
    // These values must have been set to 0 in the constructor !!!
    delete mpa_atomDefDlg;
    delete mpa_monomerDefDlg;
    delete mpa_modifDefDlg;
    delete mpa_cleaveSpecDefDlg;
    delete mpa_fragSpecDefDlg;
    delete mpa_crossLinkerDefDlg;
  }


  void 
  PolChemDefWnd::closeEvent(QCloseEvent *event)
  {
    Application *application = static_cast<Application *>(qApp);

    // We are asked to close the window even if it has unsaved data.
    if (m_forciblyClose)
      {
	m_forciblyClose = false;
      
	// We have to delist the window.
	if(!m_noDelistWnd)
	  {
	    m_noDelistWnd = false;
	    int index = application->polChemDefWndList()->indexOf(this);
	  
	    application->polChemDefWndList()->takeAt(index);
	  }
      
	QSettings settings 
     (static_cast<Application *>(qApp)->configSettingsFilePath(), 
       QSettings::IniFormat);
	settings.setValue("pol_chem_def_wnd/geometry", saveGeometry());

	event->accept();
      
	return;
      }

    if (maybeSave())
      {
	// We are asked not to remove this window from the list of all
	// the polymer chemistry definition windows. This occurs when
	// all the windows are closed in a raw in the application
	// object.

	if(m_noDelistWnd)
	  {
	    m_noDelistWnd = false;
	  
	    QSettings settings 
     (static_cast<Application *>(qApp)->configSettingsFilePath(), 
       QSettings::IniFormat);
	    settings.setValue("pol_chem_def_wnd/geometry", 
			       saveGeometry());

	    event->accept();
	  
	    return;
	  }
      
	// We must remove this window from the application's list of
	// such windows:

	int index = application->polChemDefWndList()->indexOf(this);
      
	application->polChemDefWndList()->takeAt(index);
  
	QSettings settings 
     (static_cast<Application *>(qApp)->configSettingsFilePath(), 
       QSettings::IniFormat);

	settings.setValue("pol_chem_def_wnd/geometry", 
			   saveGeometry());
      
	event->accept();
      }
    else 
      {
	event->ignore();
      }
  }


  bool
  PolChemDefWnd::initialize()
  {
    m_ui.setupUi(this);

    QPixmap pixmap(":/images/massxpert-icon-32.png");
    QIcon icon(pixmap);
    setWindowIcon(icon);

    setAttribute(Qt::WA_DeleteOnClose);
    statusBar()->setSizeGripEnabled(true);

    m_ui.ionizeChargeSpinBox->setRange(-1000000000, 1000000000);
    m_ui.ionizeLevelSpinBox->setRange(0, 1000000000);
  

    ////// Connection of the SIGNALS and SLOTS //////



    // SINGULAR ENTITIES
    connect(m_ui.nameLineEdit,
	     SIGNAL(editingFinished()),
	     this,
	     SLOT(nameEditFinished()));
  
    connect(m_ui.leftCapLineEdit,
	     SIGNAL(editingFinished()),
	     this,
	     SLOT(leftCapEditFinished()));
  
    connect(m_ui.rightCapLineEdit,
	     SIGNAL(editingFinished()),
	     this,
	     SLOT(rightCapEditFinished()));

    connect(m_ui.ionizeFormulaLineEdit,
	     SIGNAL(editingFinished()),
	     this,
	     SLOT(ionizeFormulaEditFinished()));
  
    connect(m_ui.ionizeChargeSpinBox,
	     SIGNAL(valueChanged(int)),
	     this,
	     SLOT(ionizeChargeChanged()));

    connect(m_ui.ionizeLevelSpinBox,
	     SIGNAL(valueChanged(int)),
	     this,
	     SLOT(ionizeLevelChanged()));


    // PLURAL ENTITIES
    connect(m_ui.atomPushButton,
	     SIGNAL(clicked()),
	     this,
	     SLOT(atomPushButtonClicked()));

    connect(m_ui.monomerPushButton,
	     SIGNAL(clicked()),
	     this,
	     SLOT(monomerPushButtonClicked()));

    connect(m_ui.modifPushButton,
	     SIGNAL(clicked()),
	     this,
	     SLOT(modifPushButtonClicked()));

    connect(m_ui.crossLinkerPushButton,
	     SIGNAL(clicked()),
	     this,
	     SLOT(crossLinkerPushButtonClicked()));

    connect(m_ui.cleavagePushButton,
	     SIGNAL(clicked()),
	     this,
	     SLOT(cleavagePushButtonClicked()));

    connect(m_ui.fragmentationPushButton,
	     SIGNAL(clicked()),
	     this,
	     SLOT(fragmentationPushButtonClicked()));


    // SAVE/SAVE AS
    connect(m_ui.savePushButton,
	     SIGNAL(clicked()),
	     this,
	     SLOT(save()));
  
    connect(m_ui.saveAsPushButton,
	     SIGNAL(clicked()),
	     this,
	     SLOT(saveAs()));
  

    // VALIDATION
    connect(m_ui.validatePushButton,
	     SIGNAL(clicked()),
	     this,
	     SLOT(validate()));
  

  
    // We have to set the name with the [*] placeholder right now
    // because the functions below complain, otherwise.

    updateWindowTitle();

    if (!m_polChemDef.filePath().isEmpty())
      {
	if(!m_polChemDef.renderXmlPolChemDefFile())
	  {
	    QMessageBox::warning 
	     (this, 
	       tr("massXpert - Polymer Chemistry Definition"), 
	       tr("%1@%2\n"
		   "Failed to render the polymer chemistry definition file.")
	       .arg(__FILE__)
	       .arg(__LINE__),
	       QMessageBox::Ok);
	  
	    return false;
	  }
      
	m_ui.nameLineEdit->setText(m_polChemDef.name());
      }
  
    if (!setSingularData())
      return false;
  
    if (!m_polChemDef.name().isEmpty())
      statusBar()->showMessage(tr("Correctly opened file."));
  
    setWindowModified(false);
  
    return true;
  }



  void
  PolChemDefWnd::nameEditFinished()
  {
    if (m_ui.nameLineEdit->text().isEmpty())
      statusBar()->showMessage(tr("Name of the polymer chemistry "
				     "definition cannot be empty."));
    else
      {
	if(m_ui.nameLineEdit->isModified())
	  {
	    m_polChemDef.setName(m_ui.nameLineEdit->text());
	  
	    m_ui.nameLineEdit->setModified(true);
	  
	    setWindowModified(true);
	  }
      }
  }


  void
  PolChemDefWnd::leftCapEditFinished()
  {
    if (!m_ui.leftCapLineEdit->isModified())
      return;
  
    if (!checkAtomList())
      {
	return;
      }
  
    const QList<Atom*> &atomList = m_polChemDef.atomList();

    Formula formula = Formula(m_ui.leftCapLineEdit->text());
  
    if (!formula.validate(atomList))
      {
	statusBar()->showMessage(tr("Formula(%1) is invalid.")
				   .arg(formula.formula()));

	m_ui.leftCapLineEdit->setText(m_polChemDef.leftCap().formula());
      }
    else
      {
	m_polChemDef.setLeftCap(formula);

	m_ui.leftCapLineEdit->setModified(false);
      
	setWindowModified(true);
      }

    return;
  }


  void
  PolChemDefWnd::rightCapEditFinished()
  {
    if (!m_ui.rightCapLineEdit->isModified())
      return;
  
    if (!checkAtomList())
      {
	return;
      }
  
    const QList<Atom*> &atomList = m_polChemDef.atomList();

    Formula formula = Formula(m_ui.rightCapLineEdit->text());
  
    if (!formula.validate(atomList))
      {
	statusBar()->showMessage(tr("Formula(%1) is invalid.")
				   .arg(formula.formula()));

	m_ui.rightCapLineEdit->setText(m_polChemDef.rightCap().formula());
      }
    else
      {
	m_polChemDef.setRightCap(formula);

	m_ui.rightCapLineEdit->setModified(false);
      
	setWindowModified(true);
      }

    return;
  }


  void
  PolChemDefWnd::ionizeFormulaEditFinished()
  {
    if (!m_ui.ionizeFormulaLineEdit->isModified())
      return;
  
    if (!checkAtomList())
      return;

    const QList<Atom*> &atomList = m_polChemDef.atomList();

    Formula formula = Formula(m_ui.ionizeFormulaLineEdit->text());
  
    if (!formula.validate(atomList))
      {
	statusBar()->showMessage(tr("Formula(%1) is invalid.")
				   .arg(formula.formula()));

	m_ui.ionizeFormulaLineEdit->setText 
	 (m_polChemDef.ionizeRule().formula());
      }
    else
      {
	m_polChemDef.ionizeRulePtr()->setFormula(formula.formula());

	m_ui.ionizeFormulaLineEdit->setModified(false);
      
	setWindowModified(true);
      }

    return;
  }


  void
  PolChemDefWnd::ionizeChargeChanged()
  {
    int charge = m_ui.ionizeChargeSpinBox->value();
  
    m_polChemDef.ionizeRulePtr()->setCharge(charge);
  
    setWindowModified(true);
  
    return;
  }


  void
  PolChemDefWnd::ionizeLevelChanged()
  {
    int level = m_ui.ionizeLevelSpinBox->value();
  
    m_polChemDef.ionizeRulePtr()->setLevel(level);
  
    setWindowModified(true);
  
    return;
  }


  bool
  PolChemDefWnd::setSingularData()
  {
    Formula formula = m_polChemDef.leftCap();
    m_ui.leftCapLineEdit->setText(formula.formula());
  
    formula = m_polChemDef.rightCap();
    m_ui.rightCapLineEdit->setText(formula.formula());
  
    IonizeRule ionizeRule = m_polChemDef.ionizeRule();
    formula = ionizeRule.formula();
    m_ui.ionizeFormulaLineEdit->setText(formula.formula());

    m_ui.ionizeChargeSpinBox->setValue(ionizeRule.charge());
    m_ui.ionizeLevelSpinBox->setValue(ionizeRule.level());
  
    return true;
  }


  bool
  PolChemDefWnd::checkAtomList()
  {
    const QList<Atom*> &atomList = m_polChemDef.atomList();
  
    if (atomList.size() < 1)
      {
	QMessageBox::warning 
	 (this, tr("massXpert - Polymer Chemistry Definition"),
	   tr("Edit the atom definition first."),
	   QMessageBox::Ok);
      
	return false;
      }
  
    return true;
  }


  void
  PolChemDefWnd::updateWindowTitle()
  {
    QString shownName = tr("Untitled");
  
    if (!m_polChemDef.filePath().isEmpty())
      {
	shownName = QFileInfo(m_polChemDef.filePath()).fileName();
      }
  
    setWindowTitle(tr("%1 %2[*]")
		    .arg(tr("massXpert - Polymer Chemistry Definition:"))
		    .arg(shownName));
  }


  void
  PolChemDefWnd::atomPushButtonClicked()
  {
    // Check if the atom definition window was constructed already. If
    // not we construct it.

    if (!mpa_atomDefDlg)
      {
	mpa_atomDefDlg = new AtomDefDlg(&m_polChemDef, this);
	mpa_atomDefDlg->show();
	m_ui.atomPushButton->setChecked(true);

	return;
      }
  
    if (mpa_atomDefDlg->isVisible())
      {
	mpa_atomDefDlg->hide();
	m_ui.atomPushButton->setChecked(false);

	return;
      }
    else
      {
	mpa_atomDefDlg->show();
	m_ui.atomPushButton->setChecked(true);

	return;
      }  
  }


  void
  PolChemDefWnd:: monomerPushButtonClicked()
  {
    // Check if the monomer definition window was constructed
    // already. If not we construct it.

    if (!mpa_monomerDefDlg)
      {
	mpa_monomerDefDlg = new MonomerDefDlg(&m_polChemDef, this);
	mpa_monomerDefDlg->show();
	m_ui.monomerPushButton->setChecked(true);

	return;
      }
  
    if (mpa_monomerDefDlg->isVisible())
      {
	mpa_monomerDefDlg->hide();
	m_ui.monomerPushButton->setChecked(false);

	return;
      }
    else
      {
	mpa_monomerDefDlg->show();
	m_ui.monomerPushButton->setChecked(true);

	return;
      }  
  }


  void
  PolChemDefWnd:: modifPushButtonClicked()
  {
    // Check if the modif definition window was constructed
    // already. If not we construct it.

    if (!mpa_modifDefDlg)
      {
	mpa_modifDefDlg = new ModifDefDlg(&m_polChemDef, this);
	mpa_modifDefDlg->show();
	m_ui.modifPushButton->setChecked(true);

	return;
      }
  
    if (mpa_modifDefDlg->isVisible())
      {
	mpa_modifDefDlg->hide();
	m_ui.modifPushButton->setChecked(false);

	return;
      }
    else
      {
	mpa_modifDefDlg->show();
	m_ui.monomerPushButton->setChecked(true);

	return;
      }  
  }


  void
  PolChemDefWnd:: crossLinkerPushButtonClicked()
  {
    // Check if the crossLinker definition window was constructed
    // already. If not we construct it.

    if (!mpa_crossLinkerDefDlg)
      {
	mpa_crossLinkerDefDlg = new CrossLinkerDefDlg(&m_polChemDef, this);
	mpa_crossLinkerDefDlg->show();
	m_ui.crossLinkerPushButton->setChecked(true);

	return;
      }
  
    if (mpa_crossLinkerDefDlg->isVisible())
      {
	mpa_crossLinkerDefDlg->hide();
	m_ui.crossLinkerPushButton->setChecked(false);

	return;
      }
    else
      {
	mpa_crossLinkerDefDlg->show();
	m_ui.crossLinkerPushButton->setChecked(true);

	return;
      }  
  }


  void
  PolChemDefWnd:: cleavagePushButtonClicked()
  {
    // Check if the cleaveSpec definition window was constructed already. If
    // not we construct it.

    if (!mpa_cleaveSpecDefDlg)
      {
	mpa_cleaveSpecDefDlg = new CleaveSpecDefDlg(&m_polChemDef, this);
	mpa_cleaveSpecDefDlg->show();
	m_ui.cleavagePushButton->setChecked(true);

	return;
      }
  
    if (mpa_cleaveSpecDefDlg->isVisible())
      {
	mpa_cleaveSpecDefDlg->hide();
	m_ui.cleavagePushButton->setChecked(false);

	return;
      }
    else
      {
	mpa_cleaveSpecDefDlg->show();
	m_ui.cleavagePushButton->setChecked(true);

	return;
      }  
  }


  void
  PolChemDefWnd:: fragmentationPushButtonClicked()
  {
    // Check if the fragSpec definition window was constructed already. If
    // not we construct it.

    if (!mpa_fragSpecDefDlg)
      {
	mpa_fragSpecDefDlg = new FragSpecDefDlg(&m_polChemDef, this);
	mpa_fragSpecDefDlg->show();
	m_ui.fragmentationPushButton->setChecked(true);

	return;
      }
  
    if (mpa_fragSpecDefDlg->isVisible())
      {
	mpa_fragSpecDefDlg->hide();
	m_ui.fragmentationPushButton->setChecked(false);

	return;
      }
    else
      {
	mpa_fragSpecDefDlg->show();
	m_ui.fragmentationPushButton->setChecked(true);

	return;
      }  
  }


  int
  PolChemDefWnd::validate()
  {
    QStringList errorList;
  
    int errorCount = 0;
  
    if (!checkAtomList())
      return -1;

    QString name = m_ui.nameLineEdit->text();
  
    if (name.isEmpty())
      {
	errorList << QString(tr("Name cannot be empty."));
	++errorCount;
      }
  
    const QList<Atom*> &atomList = m_polChemDef.atomList();

    Formula formula = m_polChemDef.leftCap();  
    if (!formula.validate(atomList))
      {
	errorList << QString(tr("Validation of left cap failed."));
	++errorCount;
      }

    formula = m_polChemDef.rightCap();
    if (!formula.validate(atomList))
      {
	errorList << QString(tr("Validation of right cap failed."));
	++errorCount;
      }

    IonizeRule ionizeRule = m_polChemDef.ionizeRule();
    if (!ionizeRule.validate(atomList))
      {
	errorList << QString(tr("Validation of ionization rule failed."));
	++errorCount;
      }
  
    for (int iter = 0; iter < m_polChemDef.atomList().size(); ++iter)
      {
	Atom *atom = m_polChemDef.atomList().at(iter);
      
	errorCount += !atom->validate();
      }
  
    for (int iter = 0; iter < m_polChemDef.monomerList().size(); ++iter)
      {
	Monomer *monomer =  m_polChemDef.monomerList().at(iter);
      
	errorCount += !monomer->validate();
      }
  
    for (int iter = 0; iter < m_polChemDef.modifList().size(); ++iter)
      {
	Modif *modif =  m_polChemDef.modifList().at(iter);
      
	errorCount += !modif->validate();
      }
  
    for (int iter = 0; iter < m_polChemDef.crossLinkerList().size(); ++iter)
      {
	CrossLinker *crossLinker = m_polChemDef.crossLinkerList().at(iter);
      
	errorCount += !crossLinker->validate();
      }
  
    for (int iter = 0; iter < m_polChemDef.cleaveSpecList().size(); ++iter)
      {
	CleaveSpec *cleaveSpec = m_polChemDef.cleaveSpecList().at(iter);
      
	errorCount += !cleaveSpec->validate();
      }
  
    for (int iter = 0; iter < m_polChemDef.fragSpecList().size(); ++iter)
      {
	FragSpec *fragSpec = m_polChemDef.fragSpecList().at(iter);
      
	errorCount += !fragSpec->validate();
      }
  
    if (errorCount > 0)
      {
	QString errorMessage = tr("Total number of errors: %1\n")
	  .arg(errorCount);
      
	errorMessage += errorList.join(QString(""));
      
	QMessageBox::warning(this, 
			      tr("massXpert - Polymer Chemistry Definition"),
			      errorMessage,
			      QMessageBox::Ok);
      }
    else
      statusBar()->showMessage(tr("Polymer chemistry definition "
				  "data validation succeeded."));
  
    return errorCount;
  }


  bool 
  PolChemDefWnd::maybeSave()
  {
    // Returns true if we can continue(either saved ok or discard). If
    // save failed or cancel we return false to indicate to the caller
    // that something is wrong.

    if (isWindowModified())
      {
	QMessageBox::StandardButton ret;
	ret = QMessageBox::warning 
	 (this, tr("massXpert - Polymer Chemistry Definition"),
	   tr("The document has been modified.\n"
	       "Do you want to save your changes?"),
	   QMessageBox::Save | QMessageBox::Discard 
	   | QMessageBox::Cancel);
      
	if(ret == QMessageBox::Save)
	  {
	    // We want to save the file. If the file has no existing
	    // file associate the save as function will be called
	    // automatically.
	    return save();
	  }
	else if (ret == QMessageBox::Discard)
	  return true;
	else if (ret == QMessageBox::Cancel)
	  return false;
      }
  
    return true;
  }


  bool
  PolChemDefWnd::save()
  {
    int ret = 0;
  
    // We must save to an xml file. It might be that the definition is
    // totally new, in which case the filePath() call will return
    // something invalid as a QFile object. In that case we ask the
    // saveAs() to do the job.

    // We only save if the validation is ok.
    ret += validate();
  
    if (ret)
      {
	// Errors encountered.

	QMessageBox msgBox;
	
	msgBox.setText("Failed to save the document.");
	msgBox.setInformativeText("Please, validate the definition "
				  "prior to saving to file.");
	msgBox.setStandardButtons(QMessageBox::Ok);
	
	msgBox.exec();

	return false;
      }
  
    if (!QFile::exists(m_polChemDef.filePath()))  
      return saveAs();
  
    if (!m_polChemDef.writeXmlFile())
      {
	statusBar()->showMessage(tr("File save failed."), 3000);

	QMessageBox msgBox;
	
	msgBox.setText("Failed to save the document.");
	msgBox.setInformativeText("Please, check that you have "
				  "write permissions on the file.");
	msgBox.setStandardButtons(QMessageBox::Ok);
	
	msgBox.exec();

	return false;
      }

    statusBar()->showMessage(tr("File save succeeded."), 3000);

    updateWindowTitle();

    setWindowModified(false);
  
    return true;
  }


  bool
  PolChemDefWnd::saveAs()
  {
    int ret = 0;
  
    // We must save the new contents of the polymer chemistry definition
    // to an xml file that is not the file from which this definition
    // might have been saved.

    // We only save if the validation is ok.
    ret += validate();
  
    if (ret != 0)
      {
	// Errors encountered.

	QMessageBox msgBox;
	
	msgBox.setText("Failed to save the document.");
	msgBox.setInformativeText("Please, validate the definition "
				  "prior to saving to file.");
	msgBox.setStandardButtons(QMessageBox::Ok);
	
	msgBox.exec();

	return false;
      }
  

    QString filePath = 
      QFileDialog::getSaveFileName(this, tr("Save Polymer Chemistry "
					      "Definition File"),
				    QDir::homePath(),
				    tr("XML files(*.xml *.XML)"));
  
    if (filePath.isEmpty())
      {
	statusBar()->showMessage(tr("File path is empty"), 3000);
	return false;
      }

    m_polChemDef.setFilePath(filePath);
  
    if (!m_polChemDef.writeXmlFile())
      {
	statusBar()->showMessage(tr("File save failed."), 3000);

	QMessageBox msgBox;
	
	msgBox.setText("Failed to save the document.");
	msgBox.setInformativeText("Please, check that you have "
				  "write permissions on the file.");
	msgBox.setStandardButtons(QMessageBox::Ok);
	
	msgBox.exec();

	return false;
      }
  
    statusBar()->showMessage(tr("File save succeeded."), 3000);

    updateWindowTitle();

    setWindowModified(false);
  
    return true;
  }

} // namespace massXpert