1999-09-10 04:29:08 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
1999-11-06 06:40:37 +03: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-09-10 04:29:08 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03: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-09-10 04:29:08 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-09-10 04:29:08 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:40:37 +03:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-09-10 04:29:08 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
2000-09-09 19:30:09 +04:00
|
|
|
#include "nsIFile.idl"
|
1999-09-10 04:29:08 +04:00
|
|
|
|
|
|
|
interface nsICmdLineService;
|
|
|
|
|
|
|
|
%{C++
|
|
|
|
#include "nsICmdLineService.h"
|
|
|
|
|
|
|
|
#define NS_PROFILE_CID \
|
|
|
|
{ /* {02b0625b-e7f3-11d2-9f5a-006008a6efe9} */ \
|
|
|
|
0x02b0625b, \
|
|
|
|
0xe7f3, \
|
|
|
|
0x11d2, \
|
|
|
|
{ 0x9f, 0x5a, 0x00, 0x60, 0x08, 0xa6, 0xef, 0xe9 } \
|
|
|
|
}
|
|
|
|
|
2000-09-14 03:57:52 +04:00
|
|
|
#define NS_PROFILE_CONTRACTID \
|
|
|
|
"@mozilla.org/profile/manager;1"
|
1999-09-10 04:29:08 +04:00
|
|
|
|
2000-04-22 02:27:58 +04:00
|
|
|
#define NS_PROFILE_STARTUP_CATEGORY \
|
|
|
|
"profile-startup-category"
|
1999-09-10 04:29:08 +04:00
|
|
|
%}
|
|
|
|
|
|
|
|
[scriptable, uuid(02b0625a-e7f3-11d2-9f5a-006008a6efe9)]
|
|
|
|
interface nsIProfile : nsISupports {
|
|
|
|
[noscript] void startupWithArgs(in nsICmdLineService cmdLine);
|
2000-03-30 05:30:03 +04:00
|
|
|
void startup(in wstring filename);
|
1999-09-10 04:29:08 +04:00
|
|
|
|
2000-03-30 05:30:03 +04:00
|
|
|
[noscript] void getProfileDir(in wstring profileName,
|
2000-09-09 19:30:09 +04:00
|
|
|
out nsIFile profileDir);
|
1999-09-10 04:29:08 +04:00
|
|
|
readonly attribute long profileCount;
|
2000-03-30 05:30:03 +04:00
|
|
|
readonly attribute wstring currentProfile;
|
|
|
|
readonly attribute wstring firstProfile;
|
1999-09-10 04:29:08 +04:00
|
|
|
|
1999-09-17 00:36:27 +04:00
|
|
|
// eventually we need to depricate getCurrentProfileDir
|
2000-09-09 19:30:09 +04:00
|
|
|
[noscript] void getCurrentProfileDir(out nsIFile profileDir);
|
1999-09-10 04:29:08 +04:00
|
|
|
|
2000-03-30 05:30:03 +04:00
|
|
|
[noscript] void setProfileDir(in wstring profileName,
|
2000-09-09 19:30:09 +04:00
|
|
|
in nsIFile profileDir);
|
1999-09-10 04:29:08 +04:00
|
|
|
|
2000-03-30 05:30:03 +04:00
|
|
|
boolean profileExists(in wstring profileName);
|
1999-10-08 08:58:32 +04:00
|
|
|
|
1999-09-10 04:29:08 +04:00
|
|
|
void migrateProfileInfo();
|
|
|
|
|
2000-05-03 02:32:11 +04:00
|
|
|
void createNewProfile(in wstring profileName,
|
|
|
|
in wstring nativeProfileDir,
|
2000-06-06 02:13:06 +04:00
|
|
|
in wstring langcode,
|
2000-05-03 02:32:11 +04:00
|
|
|
in boolean useExistingDir);
|
|
|
|
|
2000-03-30 05:30:03 +04:00
|
|
|
void renameProfile(in wstring oldName, in wstring newName);
|
1999-09-10 04:29:08 +04:00
|
|
|
|
2000-03-30 05:30:03 +04:00
|
|
|
void deleteProfile(in wstring name, in boolean canDeleteFiles);
|
1999-09-10 04:29:08 +04:00
|
|
|
|
2000-03-30 05:30:03 +04:00
|
|
|
wstring getProfileList();
|
1999-09-10 04:29:08 +04:00
|
|
|
|
2000-03-30 05:30:03 +04:00
|
|
|
void startApprunner(in wstring profileName);
|
1999-09-10 04:29:08 +04:00
|
|
|
|
2000-03-30 05:30:03 +04:00
|
|
|
void migrateProfile(in wstring profileName, in boolean showProgressAsModalWindow);
|
1999-09-10 04:29:08 +04:00
|
|
|
|
|
|
|
long get4xProfileCount();
|
|
|
|
|
|
|
|
void migrateAllProfiles();
|
2000-03-30 05:30:03 +04:00
|
|
|
void cloneProfile(in wstring profileName);
|
1999-10-07 10:57:38 +04:00
|
|
|
void forgetCurrentProfile();
|
2000-02-03 14:20:25 +03:00
|
|
|
void loadNewProfilePrefs();
|
|
|
|
boolean isCurrentProfileAvailable();
|
1999-12-23 23:05:59 +03:00
|
|
|
|
|
|
|
attribute boolean automigrate;
|
2000-02-06 00:48:09 +03:00
|
|
|
|
2000-09-09 19:30:09 +04:00
|
|
|
readonly attribute nsIFile defaultProfileParentDir;
|
2000-04-22 02:27:58 +04:00
|
|
|
|
2000-08-17 02:40:36 +04:00
|
|
|
[noscript] void updateRegistry(in nsIFile regName);
|
2000-05-13 05:02:29 +04:00
|
|
|
void setRegStrings(in wstring profileName,
|
|
|
|
in wstring regString,
|
|
|
|
in wstring regName,
|
|
|
|
in wstring regEmail,
|
|
|
|
in wstring regOption);
|
2000-04-22 02:27:58 +04:00
|
|
|
string isRegStringSet(in wstring profileName);
|
|
|
|
|
1999-09-10 04:29:08 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsIProfile_h__ */
|