119 |
119 |
120 @return tuple of four values (string, string, string, boolean) giving |
120 @return tuple of four values (string, string, string, boolean) giving |
121 the selected file type, the source and target directory and |
121 the selected file type, the source and target directory and |
122 a flag indicating a recursive add |
122 a flag indicating a recursive add |
123 """ |
123 """ |
124 filetype = \ |
124 filetype = self.filterComboBox.itemData( |
125 self.filterComboBox.itemData(self.filterComboBox.currentIndex()) |
125 self.filterComboBox.currentIndex()) |
126 return ( |
126 return ( |
127 filetype, |
127 filetype, |
128 self.sourceDirPicker.text(), |
128 self.sourceDirPicker.text(), |
129 self.targetDirPicker.text(), |
129 self.targetDirPicker.text(), |
130 self.recursiveCheckBox.isChecked()) |
130 self.recursiveCheckBox.isChecked()) |