File: dockDialog.C

package info (click to toggle)
ball 1.5.0%2Bgit20180813.37fc53c-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 239,888 kB
  • sloc: cpp: 326,149; ansic: 4,208; python: 2,303; yacc: 1,778; lex: 1,099; xml: 958; sh: 322; makefile: 95
file content (879 lines) | stat: -rw-r--r-- 28,333 bytes parent folder | download | duplicates (4)
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
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//

#include <QtWidgets/QPushButton>
#include <QtWidgets/QComboBox>
#include <QtCore/QStringList>
#include <QtWidgets/QMessageBox>
#include <QtWidgets/QCheckBox>
#include <QtWidgets/QLineEdit>
#include <QtWidgets/QRadioButton>
#include <QtWidgets/QFileDialog>
#include <QtWidgets/QTabWidget>
#include <QtWidgets/QButtonGroup>

#include <BALL/VIEW/DIALOGS/dockDialog.h>
#include <BALL/STRUCTURE/fragmentDB.h>
#include <BALL/VIEW/WIDGETS/molecularStructure.h>
#include <BALL/VIEW/WIDGETS/dockingController.h>
#include <BALL/VIEW/KERNEL/mainControl.h>
#include <BALL/VIEW/KERNEL/message.h>
#include <BALL/FORMAT/INIFile.h>
#include <BALL/KERNEL/system.h>
#include <BALL/DATATYPE/options.h>

#ifdef BALL_HAS_FFTW
#include <BALL/DOCKING/geometricFit.h>
#include <BALL/VIEW/DIALOGS/geometricFitDialog.h>
#endif


//#define BALL_VIEW_DEBUG
namespace BALL
{
	namespace VIEW
	{
		// Default constructor
		DockDialog::DockDialog(QWidget* parent,  const char* name)
			: QDialog(parent),
				Ui_DockDialogData(),
				PreferencesEntry(),
				docking_partner1_(0),
				docking_partner2_(0)
		{
		#ifdef BALL_VIEW_DEBUG
			Log.info() << "new DockDialog " << this << std::endl;
		#endif

			setupUi(this);
			setObjectName(name);
			
			// register QWidgets of Dialog with PreferenceEntry
			// entries of them in the INIFile will be generated
			setINIFileSectionName("DOCKING");
			registerWidgets_();
			unregisterObject_(systems1);
			unregisterObject_(systems2);
			
			// set flag
			is_redock_ = false;
			
			hide(); 

			connect( cancel_button, SIGNAL( clicked() ), this, SLOT( cancelPressed() ) );
			connect( ok_button, SIGNAL( clicked() ), this, SLOT( okPressed() ) );
			connect( reset_button, SIGNAL( clicked() ), this, SLOT( resetPressed() ) );
			connect( alg_advanced_button, SIGNAL( clicked() ), this, SLOT( algAdvancedPressed() ) );
			connect( scoring_advanced_button, SIGNAL( clicked() ), this, SLOT( scoringAdvancedPressed() ) );
			connect( systems1, SIGNAL( activated(const QString&) ), this, SLOT( partner1Chosen() ) );
			connect( systems2, SIGNAL( activated(const QString&) ), this, SLOT( partner2Chosen() ) );
			connect( scoring_functions, SIGNAL( activated(const QString&) ), this, SLOT( scoringFuncChosen() ) );
			connect( charges_data_browse, SIGNAL( clicked() ), this, SLOT( browseChargesData() ) );
			connect( charges_rules_browse, SIGNAL( clicked() ), this, SLOT( browseChargesRules() ) );
			connect( radii_data_browse, SIGNAL( clicked() ), this, SLOT( browseRadiiData() ) );
			connect( radii_rules_browse, SIGNAL( clicked() ), this, SLOT( browseRadiiRules() ) );
			connect( algorithms, SIGNAL( activated(const QString&) ), this, SLOT( algorithmChosen() ) );
		}
		
		// Copy constructor.
		DockDialog::DockDialog(const DockDialog& dock_dialog)
			: QDialog(),
				Ui_DockDialogData(),
				PreferencesEntry(dock_dialog),
				is_redock_(dock_dialog.is_redock_),
				has_changed_(dock_dialog.has_changed_),
				algorithm_dialogs_(dock_dialog.algorithm_dialogs_),
				scoring_dialogs_(dock_dialog.scoring_dialogs_),
				allowed_sf_(dock_dialog.allowed_sf_),
				docking_partner1_(dock_dialog.docking_partner1_),
				docking_partner2_(dock_dialog.docking_partner2_),
				algorithm_opt_(dock_dialog.algorithm_opt_),
				scoring_opt_(dock_dialog.scoring_opt_),
				backup_(dock_dialog.backup_),
				radius_rule_processor_(dock_dialog.radius_rule_processor_),
				charge_rule_processor_(dock_dialog.charge_rule_processor_),
				radius_processor_(dock_dialog.radius_processor_),
				charge_processor_(dock_dialog.charge_processor_)
		{
			setupUi(this);
		}
		
		// Destructor
		DockDialog::~DockDialog()
		{
			#ifdef BALL_VIEW_DEBUG
				Log.info() << "Destructing object " << this << " of class DockDialog" << std::endl;
			#endif 
			
			// remark: QDialogs in HashMaps are deleted automatically because their parent is DockDialog
			// remark: Systems are deleted by Maincontrol
		}
		
		// Assignment operator
		const DockDialog& DockDialog::operator =(const DockDialog& dock_dialog)
		{
			if (&dock_dialog != this)
			{
				is_redock_ = dock_dialog.is_redock_;
				has_changed_ = dock_dialog.has_changed_;
				// dialogs in hashmaps are dynamically allocated in method initializeWidget()
				HashMap<int, QDialog*>::Iterator it = algorithm_dialogs_.begin();
				for (; it != algorithm_dialogs_.end(); ++it)
				{
					delete it->second;
					algorithm_dialogs_.erase(it);
				}
				algorithm_dialogs_ = dock_dialog.algorithm_dialogs_;
				for (it = scoring_dialogs_.begin(); it != scoring_dialogs_.end(); ++it)
				{
					delete it->second;
					scoring_dialogs_.erase(it);
				}
				scoring_dialogs_ = dock_dialog.scoring_dialogs_;
				allowed_sf_ = dock_dialog.allowed_sf_;
				docking_partner1_ = dock_dialog.docking_partner1_;
				docking_partner2_ = dock_dialog.docking_partner2_;
				algorithm_opt_ = dock_dialog.algorithm_opt_;
				scoring_opt_ = dock_dialog.scoring_opt_;
				backup_ = dock_dialog.backup_;
				radius_rule_processor_ = dock_dialog.radius_rule_processor_;
				charge_rule_processor_ = dock_dialog.charge_rule_processor_;
				radius_processor_ = dock_dialog.radius_processor_;
				charge_processor_ = dock_dialog.charge_processor_;
			}
			return *this;
		}

		// Sets two systems as docking partners.
		void DockDialog::setSystems(System* system1, System* system2)
		{
			docking_partner1_ = system1;
			docking_partner2_ = system2;
		}
		
		System* DockDialog::getSystem1()
		{
			return docking_partner1_;
		}
					
		System* DockDialog::getSystem2()
		{
		 	return docking_partner2_;
		}
		
		Options& DockDialog::getAlgorithmOptions()
		{
			return algorithm_opt_;
		}
					
		Options& DockDialog::getScoringOptions()
		{
			return scoring_opt_;
		}
		
		// Sets the flags 'is_redock_' and 'has_changed_'
		void DockDialog::isRedock(bool is_redock)
		{
			if (is_redock_ == is_redock)
			{
			 	has_changed_ = false;
			}
			else
			{
				has_changed_ = true;
			 	is_redock_ = is_redock;
			}
		}
		
		// Adds docking algorithm to Combobox and its advanced option dialogs to HashMap.
		void DockDialog::addAlgorithm(const QString& name, const int algorithm, QDialog* dialog)
		{
			if (dialog)
			{
				// add dialog to HashMap
				algorithm_dialogs_[algorithm] = dialog;
			}
			// add to ComboBox
			algorithms->addItem(name, algorithm);
		}
		
		// Adds scoring function to Combobox and its advanced option dialogs to HashMap, if it has such an dialog.
		void DockDialog::addScoringFunction(const QString& name, const int score_func, QDialog* dialog)
		{
			if (dialog)
			{
				// add scoring function to HashMap for scoring option dialogs
				scoring_dialogs_[score_func] = dialog;
			}
			// add to ComboBox
			scoring_functions->addItem(name, score_func);
		}
		
		// is called by DockingController::initializeWidget()
		// HashMaps for algorithm advanced option dialogs and scoring function advanced option dialogs are built
		// also HashMap with the allowed scoring functions for the different algorithms
		void DockDialog::initializeWidget()
		{
			//build HashMap for algorithm advanced option dialogs
			//make sure the order of added algorithms is consistent to the enum order
			//because the algorithm with enum value i should be at position i in the combobox
			//otherwise you get the wrong option dialog for an algorithm
#ifdef BALL_HAS_FFTW
			GeometricFitDialog* geo_fit = new GeometricFitDialog(this);
			addAlgorithm("Geometric Fit", DockingController::GEOMETRIC_FIT, geo_fit);
#endif
			
			//build HashMap for scoring function advanced option dialogs
			//make sure the order of added scoring functions is consistent to the enum order
			//because the scoring function with enum value i should be at position i in the Combobox
			//otherwise you get the wrong option dialog for a scoring function
			addScoringFunction("Default", DockingController::DEFAULT);
			MolecularStructure* mol_struct = MolecularStructure::getInstance(0);
			if (!mol_struct)
			{
				Log.error() << "Error while building HashMap for scoring function advanced option dialogs! " 
										<< __FILE__ << " " << __LINE__ << std::endl;
				return;
			}
			addScoringFunction("Amber Force Field", DockingController::AMBER_FF, &(mol_struct->getAmberConfigurationDialog()));
			addScoringFunction("MMFF94 Force Field", DockingController::MMFF94_FF, &(mol_struct->getMMFF94ConfigurationDialog()));
			addScoringFunction("Selected Force Field", DockingController::SELECTED_FF, 0);
			
			vector<int> sf;
			sf.push_back(DockingController::DEFAULT);
			sf.push_back(DockingController::AMBER_FF);
			sf.push_back(DockingController::MMFF94_FF);
			sf.push_back(DockingController::SELECTED_FF);
			allowed_sf_[DockingController::GEOMETRIC_FIT] = sf;
		}
		  
		// Read the preferences from the INIFile.
		void DockDialog::fetchPreferences(INIFile& file)
		{
			// read preferences of INI-section docking into the QWidget of the dialog
			PreferencesEntry::readPreferenceEntries(file);
			// read the redocking values from INIFile into vector backup_
			// if INIFile has not yet a section REDOCKING, fill backup_ vector with default values 
			fetchPreferences_(file, "redock_entry_0", "<select>");
			fetchPreferences_(file, "redock_entry_1", "Default");
			fetchPreferences_(file, "redock_entry_2", "100");
			fetchPreferences_(file, "redock_entry_3", "1");
			
			// call this function to check which algorithm / scoring function is the current item in the combobox
			// and set advanced button enabled if necessary
			algorithmChosen();
			scoringFuncChosen();
			
			HashMap<int, QDialog*>::Iterator it = algorithm_dialogs_.begin();
			for (; it != algorithm_dialogs_.end(); ++it)
			{
#ifdef BALL_HAS_FFTW
				GeometricFitDialog* dialog = dynamic_cast<GeometricFitDialog*>(it->second);
				if(dialog)
				{
					dialog->fetchPreferences(file);
				}
#endif
			}
		}
		 
		// function to read the redocking values from INIFile into vector backup_
		// if INIFile has not yet a section REDOCKING, fill backup_ vector with default values
		void DockDialog::fetchPreferences_(INIFile& file, const String& entry, const QString& default_value)
		{
			if (!file.hasEntry("REDOCKING", entry))
			{
			 	backup_.push_back(default_value);
			}
			else
			{
				backup_.push_back(QString(file.getValue("REDOCKING", entry).c_str()));
			}
		}
		
		// Write the preferences to the INIFile.
		void DockDialog::writePreferences(INIFile& file)
		{
			// swap values if dialog is in redocking-modus, because for PreferencesEntry::writePreferenceEntries 
			// the dialog's widgets has to contain the docking values
			if (is_redock_)
			{
				swapValues_();
			}
			PreferencesEntry::writePreferenceEntries(file);
			
			file.appendSection("REDOCKING");
			for (Position i = 0; i < backup_.size(); i++)
			{
				String entry = String("redock_entry_") + String(i);
				file.insertValue("REDOCKING", entry, ascii(backup_[i]));
			}
			
			HashMap<int, QDialog*>::Iterator it = algorithm_dialogs_.begin();
			for (; it != algorithm_dialogs_.end();  ++it)
			{
#ifdef BALL_HAS_FFTW
				GeometricFitDialog* dialog = dynamic_cast<GeometricFitDialog*>(it->second);
				if(dialog)
				{
					dialog->writePreferences(file);
				}
#endif
			}
		}
		
		/// Reset the dialog to the standard values
		void DockDialog::reset()
		{
			if (tab_pages->currentIndex() == 0)
			{
				// comboboxes
				algorithms->setCurrentIndex(0);
				scoring_functions->setCurrentIndex(0);
				
				// buttons
				alg_advanced_button->setEnabled(false);
				scoring_advanced_button->setEnabled(false);
				
				// options
				best_num->setText("100");
				verbosity->setText("1");
				
				if(is_redock_)
				{
					// euler angles
				  phi_min->setText("-15");
					phi_max->setText("15");
					delta_phi->setText("3");
					
					psi_min->setText("-15");
					psi_max->setText("15");
					delta_psi->setText("3");
					
					theta_min->setText("-15");
					theta_max->setText("15");
					delta_theta->setText("3");
				}
				else
				{
					// system comboboxes
					systems1->setCurrentIndex(0);
					systems2->setCurrentIndex(0);
				}
			}
			
			if (tab_pages->currentIndex() == 1)
			{
				// radii / charges config files
				radii_data_lineedit->setText("radii/PARSE.siz");
				radii_rules_lineedit->setText("solvation/PARSE.rul");
				charges_data_lineedit->setText("charges/PARSE.crg");
				charges_rules_lineedit->setText("solvation/PARSE.rul");
			
				// processors
				normalize_names->setChecked(false);
				assign_charges->setChecked(true);
				assign_radii->setChecked(true);
				build_bonds->setChecked(false);
				add_hydrogens->setChecked(false);
			}
		}
		
		// set options with values user has chosen 
		void DockDialog::applyValues_()
		{
			algorithm_opt_.clear();
			scoring_opt_.clear();
			// options for all docking algorithms
			///////////////// TODO common options should be in class DockingAlgorithm ////////////////////////////////////////////
			//options_[DockingAlgorithm::Option::BEST_NUM] = String(best_num->text().ascii()).toInt();
			try
			{
#ifdef BALL_HAS_FFTW
				algorithm_opt_[GeometricFit::Option::BEST_NUM] = ascii(best_num->text()).toInt();
				algorithm_opt_[GeometricFit::Option::VERBOSITY] = ascii(verbosity->text()).toInt();
#endif
			}
			catch (Exception::InvalidFormat&)
			{
				Log.error() << "Conversion from String to int failed: invalid format! " << __FILE__ << " " << __LINE__<< std::endl;
				return;
			}
			// options for chosen algorithm; options are filled by the corresponding dialog
			Index index = algorithms->currentIndex();
			switch(index)
			{
				case DockingController::GEOMETRIC_FIT:
#ifdef BALL_HAS_FFTW
					GeometricFitDialog* dialog = RTTI::castTo<GeometricFitDialog>(*(algorithm_dialogs_[index]));
					dialog->getOptions(algorithm_opt_);
#endif
					break;
			}
			
			// options for redocking (euler angles)
			if(is_redock_)
			{
				try
					{
#ifdef BALL_HAS_FFTW	
						algorithm_opt_[GeometricFit::Option::PHI_MIN] = ascii(phi_min->text()).toFloat();
						algorithm_opt_[GeometricFit::Option::PHI_MAX] = ascii(phi_max->text()).toFloat();
						algorithm_opt_[GeometricFit::Option::DEG_PHI] = ascii(delta_phi->text()).toFloat();
						algorithm_opt_[GeometricFit::Option::PSI_MIN] = ascii(psi_min->text()).toFloat();
						algorithm_opt_[GeometricFit::Option::PSI_MAX] = ascii(psi_max->text()).toFloat();
						algorithm_opt_[GeometricFit::Option::DEG_PSI] = ascii(delta_psi->text()).toFloat();
						algorithm_opt_[GeometricFit::Option::THETA_MIN] = ascii(theta_min->text()).toFloat();
						algorithm_opt_[GeometricFit::Option::THETA_MAX] = ascii(theta_max->text()).toFloat();
						algorithm_opt_[GeometricFit::Option::DEG_THETA] = ascii(delta_theta->text()).toFloat();
#endif
					}
				catch(Exception::InvalidFormat&)
					{
						Log.error() << "Conversion from String to float failed: invalid format! " << __FILE__ << " " << __LINE__<< std::endl;
						return;
					}
			}
			else
				{
#ifdef BALL_HAS_FFTW
					algorithm_opt_[GeometricFit::Option::PHI_MIN] = GeometricFit::Default::PHI_MIN;
					algorithm_opt_[GeometricFit::Option::PHI_MAX] = GeometricFit::Default::PHI_MAX;
					algorithm_opt_[GeometricFit::Option::DEG_PHI] = (float) 
																				algorithm_opt_.getReal(GeometricFit::Option::DEGREE_INTERVAL);

					algorithm_opt_[GeometricFit::Option::PSI_MIN] = GeometricFit::Default::PSI_MIN;
					algorithm_opt_[GeometricFit::Option::PSI_MAX] = GeometricFit::Default::PSI_MAX;
					algorithm_opt_[GeometricFit::Option::DEG_PSI] = (float)
																				algorithm_opt_.getReal(GeometricFit::Option::DEGREE_INTERVAL);

					algorithm_opt_[GeometricFit::Option::THETA_MIN] = GeometricFit::Default::THETA_MIN;
					algorithm_opt_[GeometricFit::Option::THETA_MAX] = GeometricFit::Default::THETA_MAX;
					algorithm_opt_[GeometricFit::Option::DEG_THETA] = (float) 
																				algorithm_opt_.getReal(GeometricFit::Option::DEGREE_INTERVAL);
#endif
				}
			
			// options for chosen scoring function
			index = scoring_functions->currentIndex();
			switch(index)
			{
				case DockingController::AMBER_FF:
				{
					MolecularStructure* mol_struct = MolecularStructure::getInstance(0);
					if (!mol_struct)
					{
						Log.error() << "Error while applying options of AMBER_FF scoring function! " 
												<< __FILE__ << " " << __LINE__<< std::endl;
						return;
					}
					AmberFF& ff = mol_struct->getAmberFF();
					AmberConfigurationDialog* dialog = RTTI::castTo<AmberConfigurationDialog>(*(scoring_dialogs_[index]));
					
					// now the Amber force field gets its options
					dialog->applyTo(ff);
					scoring_opt_ = ff.options;
				}
			}
		}
		
		// apply processors to the systems
		bool DockDialog::applyProcessors_()
		{
			if ((docking_partner1_ == 0) || (docking_partner2_ == 0)) 
			{
				Log.error() << "No two systems given! Aborting... " << __FILE__ << " " << __LINE__<< std::endl;
				return false;
			}
			
			MainControl* main_control = MainControl::getInstance(0);
			if (!main_control)
			{
				Log.error() << "Error while adding hydrogens! " << __FILE__ << " " << __LINE__ << std::endl;
				return false;
			}
			FragmentDB& frag_db = const_cast<FragmentDB&>(main_control->getFragmentDB());
			
			// add hydrogens to systems and normalize names
			if (add_hydrogens->isChecked())
			{
				if (!docking_partner1_->apply(frag_db.add_hydrogens)) return false;
				if (!docking_partner2_->apply(frag_db.add_hydrogens)) return false;
				if (!docking_partner1_->apply(frag_db.normalize_names)) return false;
				if (!docking_partner2_->apply(frag_db.normalize_names)) return false;
			}
			else if (normalize_names->isChecked())
			{
				if (!docking_partner1_->apply(frag_db.normalize_names)) return false;
				if (!docking_partner2_->apply(frag_db.normalize_names)) return false;
			}
			
			// add bonds to systems
			if (build_bonds->isChecked())
			{
				if (!docking_partner1_->apply(frag_db.build_bonds)) return false;
				if (!docking_partner2_->apply(frag_db.build_bonds)) return false;
			}

			// assign charges and radii
			try
			{
				if (assign_charges->isChecked())
				{
					if (charges_data_button->isChecked())
					{
						charge_processor_.setFilename(ascii(charges_data_lineedit->text()));
						if (!docking_partner1_->apply(charge_processor_)) return false;
						if (!docking_partner2_->apply(charge_processor_)) return false;
					}
					else
					{
						INIFile inifile(ascii(charges_rules_lineedit->text()));
						charge_rule_processor_ = ChargeRuleProcessor(inifile);
						if (!docking_partner1_->apply(charge_rule_processor_)) return false;
						if (!docking_partner2_->apply(charge_rule_processor_)) return false;
					}
				}
				if (assign_radii->isChecked())
				{
					if (radii_data_button->isChecked())
					{
						radius_processor_.setFilename(ascii(radii_data_lineedit->text()));
						if (!docking_partner1_->apply(radius_processor_)) return false;
						if (!docking_partner2_->apply(radius_processor_)) return false;
					}
					else
					{
						INIFile inifile(ascii(radii_rules_lineedit->text()));
						radius_rule_processor_ = RadiusRuleProcessor(inifile);
						if (!docking_partner1_->apply(radius_rule_processor_)) return false;
						if (!docking_partner2_->apply(radius_rule_processor_)) return false;
					}
				}
			}
			catch (Exception::FileNotFound& e)
			{
				Log.error() << "Invalid file " << e.getFilename() << " " << __FILE__ << " " << __LINE__ << std::endl;
				return false;
			}
		
			main_control->setMultithreading(false);
			main_control->update(*docking_partner1_, true);
			main_control->update(*docking_partner2_, true);
			main_control->setMultithreading(true);
			return true;
		}
		
		// show chosen file in the dialog
		void DockDialog::selectFile_(QLineEdit& lineedit)
		{
			MainControl* main_control = MainControl::getInstance(0);
			if (!main_control)
			{
				Log.error() << "Error while selecting file! " << __FILE__ << " " << __LINE__ << std::endl;
				return;
			}

			QString s = QFileDialog::getOpenFileName(0, "Choose a file", 
																							 main_control->getWorkingDir().c_str());

			if (s == QString::null) return;
			main_control->setWorkingDir(ascii(s));
			lineedit.setText(s);
		}
		
		// Function to fill the system comboboxes.
		// If the user has already selected one or two systems, they are the current items in the comboboxes.
		void DockDialog::fillSystemComboboxes_()
		{
			// pointer to selected systems
			docking_partner1_ = NULL;
			docking_partner2_ = NULL;
			
			// vector of pointers to the loaded systems
			loaded_systems_.clear();

			QStringList current_system_list;
			// put <select> in list as the first element
			current_system_list.append("<select>");
			
			// get the composites
			MainControl* main_control = getMainControl();
			if (!main_control)
			{
				BALLVIEW_DEBUG
				return;
			}
			CompositeManager& composite_manager = main_control->getCompositeManager();
			
			// iterate over all composites; add systems to list
			HashSet<Composite*>::Iterator composite_it = composite_manager.begin();
			
			// fill current system list and check if user has already selected two systems;
			// vector of pointers to all loaded systems is also filled (same order as current system list)
			for (; +composite_it; ++composite_it)
			{
				System* system = dynamic_cast<System*>(*composite_it);
				if (system == 0) continue;

				current_system_list << system->getName().c_str();
				loaded_systems_.push_back(system);			
			}

			std::list<Composite*> cl = main_control->getMolecularControlSelection();
			if (cl.size() == 2)
			{
				list<Composite*>::iterator lit = cl.begin();
				System* system1 = dynamic_cast<System*>(*lit);
				lit++;
				System* system2 = dynamic_cast<System*>(*lit);

				if (system1 && system2)
				{
					docking_partner1_ = system1;
					docking_partner2_ = system2;
				}
			}

			// set selection lists of dialog
			systems1->clear();
			systems1->addItems(current_system_list);
			systems2->clear();
			systems2->addItems(current_system_list);
			
			// If the user has selected one or two systems, they are the current items in the comboboxes.
			if (docking_partner1_ != NULL)
			{
				systems1->setCurrentIndex(systems1->findText(docking_partner1_->getName().c_str()));
			}
			if (docking_partner2_ != NULL)
			{
				systems2->setCurrentIndex(systems2->findText(docking_partner2_->getName().c_str()));
			}
		}
		
		// Swaps the option values between vector backup_ and dialog
		// Is called in show() if has_changed_ is true
		// and in writePreferences if is_redock_ is true
		void DockDialog::swapValues_()
		{
			QString temp = algorithms->currentText();
			algorithms->setCurrentIndex(algorithms->findText(backup_[0]));
			backup_[0] = temp;

			temp = scoring_functions->currentText();
			scoring_functions->setCurrentIndex(scoring_functions->findText(backup_[1]));
			backup_[1] = temp;

			temp = best_num->text();
			best_num->setText(backup_[2]);
			backup_[2] = temp;

			temp = verbosity->text();
			verbosity->setText(backup_[3]);
			backup_[3] = temp;

			algorithmChosen();
			scoringFuncChosen();
		}
		
		
		// -------------------------------- SLOTS ------------------------------------------------
		// ---------------------------------------------------------------------------------------

		// Shows and raises the dialog.
		// In case of docking, the comboboxes for the docking partners are filled with the loaded systems in BALLView.
		int DockDialog::exec()
		{
			if (is_redock_)
			{
				setWindowTitle("Redocking Options");
				tab_pages->setTabEnabled(1, false);
				systems_group->setHidden(true);
				euler_group->setHidden(false);
			}
			else
			{
				setWindowTitle("Docking Options");
				tab_pages->setTabEnabled(1, true);
				euler_group->setHidden(true);
				systems_group->setHidden(false);
				fillSystemComboboxes_();
			}
			
			if (has_changed_)
			{
				swapValues_();
			}
			
			tab_pages->adjustSize();
			adjustSize();
			
			// always show the first tab page
			tab_pages->setCurrentIndex(0);
			
			// show dialog to user
			return QDialog::exec();
		}
		
		// Indicates the OK button was pressed.
		// If we are not doing redocking it checks if two different systems are chosen.
		// Hides the dialog and calls applyValues_ and applyProcessors_.
		void DockDialog::okPressed()
		{
			if (!is_redock_)
			{
				// if less than 2 or 2 equal systems are chosen => Error message!
				if ((systems1->currentText() == "<select>") || 
						(systems2->currentText() == "<select>") || 
						(systems1->currentText() == systems2->currentText()))
				{
					QMessageBox error_message("Error","Please select two different docking partners!", 
																		QMessageBox::Critical,
																		QMessageBox::Ok,
																		QMessageBox::NoButton,
																		QMessageBox::NoButton);
					error_message.exec();
					return;
				}
			}
			// if no algorithm is chosen => Error message!
			if (algorithms->currentText() == "<select>")
			{
				QMessageBox error_message("Error", "Please select docking algorithm!",
																	QMessageBox::Critical,
																	QMessageBox::Ok,
																	QMessageBox::NoButton,
																	QMessageBox::NoButton);
				error_message.exec();
				return;
			}
			hide();
			// set options user has chosen
			applyValues_();
			// apply processors for first docking, e.g. add hydrogens
			if (!is_redock_)
			{
				applyProcessors_();
			}
			// set property for the two docking partners
			// is needed to identify these original partners for redocking
			AtomContainerIterator it;
			for (it = docking_partner1_->beginAtomContainer(); +it; ++it)
			{
				it->setProperty("DOCKING_PARTNER_1");
			}
			for (it = docking_partner2_->beginAtomContainer(); +it; ++it)
			{
				it->setProperty("DOCKING_PARTNER_2");
			}
			accept();
			storeValues();
		}
		
		void DockDialog::cancelPressed()
		{
			restoreValues();
			reject();
		}
		
		//
		void DockDialog::resetPressed()
		{
			reset();
		}
		
		// advanced button for algorithm options pressed
		void DockDialog::algAdvancedPressed()
		{
			// show corresponding options dialog
			Index index = algorithms->currentIndex();
			if (algorithm_dialogs_.has(index))
			{
				switch(index)
				{
					case DockingController::GEOMETRIC_FIT:
#ifdef BALL_HAS_FFTW
						GeometricFitDialog* gfd = dynamic_cast<GeometricFitDialog*> (algorithm_dialogs_[index]);
						gfd->isRedock(is_redock_);
						gfd->exec();
#endif
						break;
				}
			}
		}
			
		// advanced button for scoring function options pressed
		void DockDialog::scoringAdvancedPressed()
		{
			// show corresponding options dialog
			Index index = scoring_functions->currentIndex();
			if (scoring_dialogs_.has(index))
			{
				scoring_dialogs_[index]->exec();
			}
		}
		
		// Indicates a system in the combobox was chosen as docking partner 1.
		void DockDialog::partner1Chosen()
		{
			int chosen_system = systems1->currentIndex();
			// if item 0 (<select>) is chosen, do nothing
			if (chosen_system)
			{
				docking_partner1_ = loaded_systems_[chosen_system - 1];
		 	}
		}
		
		// Indicates a system in the combobox was chosen as docking partner 2.
		void DockDialog::partner2Chosen()
		{
			int chosen_system = systems2->currentIndex();
			// if item 0 (<select>) is chosen, do nothing
			if (chosen_system)
			{
				docking_partner2_ = loaded_systems_[chosen_system - 1];
		 	}
		}
		
		// Indicates that a scoring function in the combobox was chosen.
		void DockDialog::scoringFuncChosen()
		{
			// if chosen scoring function has advanced options, enable advanced_button
			scoring_advanced_button->setEnabled(scoring_dialogs_.has(scoring_functions->currentIndex()));
		}
		
		// Indicates an algorithm in the combobox was chosen.
		void DockDialog::algorithmChosen()
		{
			// if chosen algorithm has advanced options
			alg_advanced_button->setEnabled(algorithm_dialogs_.has(algorithms->currentIndex()));
		}
		
		//
		void DockDialog::browseChargesData()
		{
			selectFile_(*charges_data_lineedit);
		}

		//
		void DockDialog::browseChargesRules()
		{
			selectFile_(*charges_rules_lineedit);
		}

		//
		void DockDialog::browseRadiiData()
		{
			selectFile_(*radii_data_lineedit);
		}

		//
		void DockDialog::browseRadiiRules()
		{
			selectFile_(*radii_rules_lineedit);
		}
		
	} // namespace VIEW
} // namespace BALL