#region Apache License 2.0 /* Nuclex .NET Framework Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #endregion // Apache License 2.0 using System; namespace Nuclex.Windows.Forms.CommonDialogs { /// Displays common dialogs for selecting files and directories public interface ICommonDialogService { /// Asks the user for a location to save a file under /// Caption of the dialog /// /// File masks in the form "Description|*.dat" or "Description2|*.da2;*.da3" /// /// The full path of the file the user wishes to save as string AskForSaveLocation(string caption, params string[] masks); /// Asks the user to select a file to open /// Caption of the dialog /// /// File masks in the form "Description|*.dat" or "Description2|*.da2;*.da3" /// /// The full path of the file the user selected string AskForFileToOpen(string caption, params string[] masks); /// Asks the user to select one or more files to open /// Caption of the dialog /// /// File masks in the form "Description|*.dat" or "Description2|*.da2;*.da3" /// /// The full path of all files the user selected string[] AskForFilesToOpen(string caption, params string[] masks); /// Asks the user to select a directory /// The directory the user has selected string AskForDirectory(string caption); } } // namespace Nuclex.Windows.Forms.CommonDialogs