2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1999-07-03 00:08:27 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.1 (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.mozilla.org/NPL/
|
1999-07-03 00:08:27 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1999-07-03 00:08:27 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 06:40:37 +03:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the NPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-07-03 00:08:27 +04:00
|
|
|
#ifndef __nsmimeinfoimpl_h___
|
|
|
|
#define __nsmimeinfoimpl_h___
|
|
|
|
|
|
|
|
#include "nsIMIMEInfo.h"
|
|
|
|
#include "nsIAtom.h"
|
2000-03-26 11:55:46 +04:00
|
|
|
#include "nsString.h"
|
2000-01-24 18:41:03 +03:00
|
|
|
#include "nsVoidArray.h"
|
2000-06-21 10:34:43 +04:00
|
|
|
#include "nsIFile.h"
|
2000-01-24 18:41:03 +03:00
|
|
|
#include "nsCOMPtr.h"
|
2001-07-16 06:40:48 +04:00
|
|
|
#include "nsIURI.h"
|
1999-07-03 00:08:27 +04:00
|
|
|
|
|
|
|
class nsMIMEInfoImpl : public nsIMIMEInfo {
|
2000-06-21 10:34:43 +04:00
|
|
|
public:
|
1999-07-03 00:08:27 +04:00
|
|
|
NS_DECL_ISUPPORTS
|
2000-01-24 18:41:03 +03:00
|
|
|
NS_DECL_NSIMIMEINFO
|
1999-07-03 00:08:27 +04:00
|
|
|
|
|
|
|
// nsMIMEInfoImpl methods
|
2000-04-05 07:03:50 +04:00
|
|
|
nsMIMEInfoImpl();
|
2000-01-24 18:41:03 +03:00
|
|
|
nsMIMEInfoImpl(const char *aMIMEType);
|
|
|
|
virtual ~nsMIMEInfoImpl() {};
|
2000-01-25 05:40:16 +03:00
|
|
|
PRUint32 GetExtCount(); // returns the number of extensions associated.
|
1999-07-03 00:08:27 +04:00
|
|
|
|
2000-01-24 18:41:03 +03:00
|
|
|
// member variables
|
2000-07-12 03:11:59 +04:00
|
|
|
nsCStringArray mExtensions; // array of file extensions associated w/ this MIME obj
|
2000-01-24 18:41:03 +03:00
|
|
|
nsAutoString mDescription; // human readable description
|
|
|
|
nsCOMPtr<nsIURI> mURI; // URI pointing to data associated w/ this obj
|
2000-04-05 07:03:50 +04:00
|
|
|
PRUint32 mMacType, mMacCreator; // Mac file type and creator
|
2000-01-24 18:41:03 +03:00
|
|
|
protected:
|
2000-07-12 03:11:59 +04:00
|
|
|
nsCString mMIMEType;
|
|
|
|
nsCOMPtr<nsIFile> mPreferredApplication; // preferred application associated with this type.
|
2000-06-21 10:34:43 +04:00
|
|
|
nsMIMEInfoHandleAction mPreferredAction; // preferred action to associate with this type
|
|
|
|
nsString mPreferredAppDescription;
|
2001-06-28 06:18:13 +04:00
|
|
|
|
|
|
|
void CheckPrefForMimeType(const char * prefName, PRBool * aMimeTypeIsPresent);
|
|
|
|
void SetRememberPrefForMimeType(const char * prefName);
|
1999-07-03 00:08:27 +04:00
|
|
|
};
|
|
|
|
|
1999-07-06 18:37:24 +04:00
|
|
|
#endif //__nsmimeinfoimpl_h___
|