#region CPL License /* Nuclex Framework Copyright (C) 2002-2019 Nuclex Development Labs This library is free software; you can redistribute it and/or modify it under the terms of the IBM Common Public License as published by the IBM Corporation; either version 1.0 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the IBM Common Public License for more details. You should have received a copy of the IBM Common Public License along with this library */ #endregion 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