public ChangePathController(IChangePhotoPathGui gui)
 {
     gui_controller = gui;
     total_photos = photo_store.TotalPhotos;
     orig_base_path = EnsureEndsWithOneDirectorySeparator (FindOrigBasePath());			// NOT URI
     string new_base_path = EnsureEndsWithOneDirectorySeparator (FSpot.Global.PhotoDirectory);	// NOT URI
     gui_controller.DisplayDefaultPaths (orig_base_path, new_base_path);
     user_cancelled = false;
 }
示例#2
0
        public ChangePathController(IChangePhotoPathGui gui)
        {
            gui_controller = gui;
            total_photos   = photo_store.TotalPhotos;
            orig_base_path = EnsureEndsWithOneDirectorySeparator(FindOrigBasePath());                                   // NOT URI
            string new_base_path = EnsureEndsWithOneDirectorySeparator(FSpot.Core.Global.PhotoUri.LocalPath);           // NOT URI

            gui_controller.DisplayDefaultPaths(orig_base_path, new_base_path);
            user_cancelled = false;
        }