Example #1
0
void AMScanDictionary::operateImplementation(const QString &input){
	if(operatingOnName()){

		if(scan_->name() != input)
			scan_->setName(input);
	}
	else if(operatingOnExportName()){

	}
}
Example #2
0
void AMScanDictionary::setOperatingOnName(bool operatingOnName){
	if(operatingOnName && operatingOnExportName())
		operatingOnExportName_ = false;
	operatingOnName_ = operatingOnName;
}
Example #3
0
void AMScanExemplarDictionary::operateImplementation(const QString &input){
	if(operatingOnName())
		exemplar_->setName(input);
	else if(operatingOnExportName())
		exemplar_->setExportName(input);
}