@Override
 public IGalleryFilter get(IGalleryFilter src) {
   if (src != null) {
     get((IGeoRectangle) src);
     mPath.setText(src.getPath());
     mDateFrom.setText(convertDate(src.getDateMin()));
     mDateTo.setText(convertDate(src.getDateMax()));
     mWithNoGeoInfo.setChecked(src.isNonGeoOnly());
     showLatLon(src.isNonGeoOnly());
   }
   return this;
 }