From d9f0f1c296e42f81e587a664b0c9d895250d66b4 Mon Sep 17 00:00:00 2001 From: "dp%netscape.com" Date: Sat, 12 Jun 1999 15:54:46 +0000 Subject: [PATCH] Removing obsolete files from xpcom. --- xpcom/io/nsIFileWidget.h | 162 --------------------------------------- 1 file changed, 162 deletions(-) delete mode 100644 xpcom/io/nsIFileWidget.h diff --git a/xpcom/io/nsIFileWidget.h b/xpcom/io/nsIFileWidget.h deleted file mode 100644 index 5f263eb84982..000000000000 --- a/xpcom/io/nsIFileWidget.h +++ /dev/null @@ -1,162 +0,0 @@ -/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- - * - * The contents of this file are subject to the Netscape Public License - * Version 1.0 (the "NPL"); you may not use this file except in - * compliance with the NPL. You may obtain a copy of the NPL at - * http://www.mozilla.org/NPL/ - * - * Software distributed under the NPL is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL - * for the specific language governing rights and limitations under the - * NPL. - * - * The Initial Developer of this code under the NPL is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998 Netscape Communications Corporation. All Rights - * Reserved. - */ - -#ifndef nsIFileWidget_h__ -#define nsIFileWidget_h__ - -#include "nsString.h" -#include "nsFileSpec.h" - -class nsIWidget; -class nsIDeviceContext; -class nsIAppShell; -class nsIToolkit; - -// {F8030015-C342-11d1-97F0-00609703C14E} -#define NS_IFILEWIDGET_IID \ -{ 0xf8030015, 0xc342, 0x11d1, { 0x97, 0xf0, 0x0, 0x60, 0x97, 0x3, 0xc1, 0x4e } } - - -/** - * File selector mode - */ - -enum nsFileDlgMode { - /// Load a file or directory - eMode_load, - /// Save a file or directory - eMode_save, - /// Select a fodler/directory - eMode_getfolder - }; - - -enum nsFileDlgResults { - nsFileDlgResults_Cancel, // User hit cancel, ignore selection - nsFileDlgResults_OK, // User hit Ok, process selection - nsFileDlgResults_Replace // User acknowledged file already exists so ok to replace, process selection -}; - -/** - * File selector widget. - * Modally selects files for loading or saving from a list. - */ - -class nsIFileWidget : public nsISupports -{ - -public: - - - NS_DEFINE_STATIC_IID_ACCESSOR(NS_IFILEWIDGET_IID) - - /** - * Create the file filter. This differs from the standard - * widget Create method because it passes in the mode - * - * @param aParent the parent to place this widget into - * @param aTitle The title for the file widget - * @param aMode load or save - * @return void - * - */ - NS_IMETHOD Create(nsIWidget *aParent, - const nsString& aTitle, - nsFileDlgMode aMode, - nsIDeviceContext *aContext = nsnull, - nsIAppShell *aAppShell = nsnull, - nsIToolkit *aToolkit = nsnull, - void *aInitData = nsnull) = 0; - - - /** - * Set the list of file filters - * - * @param aNumberOfFilter number of filters. - * @param aTitle array of filter titles - * @param aFilter array of filters to associate with titles - * @return void - * - */ - - NS_IMETHOD SetFilterList(PRUint32 aNumberOfFilters,const nsString aTitles[],const nsString aFilters[]) = 0; - - /** - * Show File Dialog. The dialog is displayed modally. - * - * @return PR_TRUE if user selects OK, PR_FALSE if user selects CANCEL - * - */ - - virtual PRBool Show() = 0; - - /** - * Get the nsFileSpec for the file or directory. - * - * @param aFile on exit it contains the file or directory selected - */ - - NS_IMETHOD GetFile(nsFileSpec& aFile) = 0; - - - /** - * Set the default string that appears in file open/save dialog - * - * @param aString the name of the file - * @return void - * - */ - NS_IMETHOD SetDefaultString(const nsString& aString) = 0; - - /** - * Set the directory that the file open/save dialog initially displays - * - * @param aDirectory the name of the directory - * @return void - * - */ - NS_IMETHOD SetDisplayDirectory(const nsFileSpec& aDirectory) = 0; - - /** - * Get the directory that the file open/save dialog was last displaying - * - * @param aDirectory the name of the directory - * @return void - * - */ - NS_IMETHOD GetDisplayDirectory(nsFileSpec& aDirectory) = 0; - - - virtual nsFileDlgResults GetFile( - nsIWidget * aParent, - const nsString & promptString, // Window title for the dialog - nsFileSpec & theFileSpec) = 0; // Populate with initial path for file dialog - - virtual nsFileDlgResults GetFolder( - nsIWidget * aParent, - const nsString & promptString, // Window title for the dialog - nsFileSpec & theFileSpec) = 0; // Populate with initial path for file dialog - - virtual nsFileDlgResults PutFile( - nsIWidget * aParent, - const nsString & promptString, // Window title for the dialog - nsFileSpec & theFileSpec) = 0; // Populate with initial path for file dialog -}; - -#endif // nsIFileWidget_h__ -