2000-11-04 16:19:57 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
|
|
|
* 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/
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsIProfile.idl"
|
|
|
|
|
|
|
|
interface nsICmdLineService;
|
2001-04-27 14:40:21 +00:00
|
|
|
interface nsIFile;
|
2000-11-04 16:19:57 +00:00
|
|
|
|
2001-06-15 20:33:34 +00:00
|
|
|
%{C++
|
|
|
|
#define NS_ERROR_PROFILE_REQUIRES_INTERACTION NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_PROFILE, 1)
|
|
|
|
%}
|
|
|
|
|
2000-11-04 16:19:57 +00:00
|
|
|
[scriptable, uuid(2f977d42-5485-11d4-87e2-0010a4e75ef2)]
|
|
|
|
interface nsIProfileInternal : nsIProfile {
|
|
|
|
|
2001-06-15 20:33:34 +00:00
|
|
|
/**
|
|
|
|
* Starts up the profile manager
|
|
|
|
*
|
|
|
|
* @param cmdLine Arguments passed from command line - can be null
|
|
|
|
* @param canInteract Whether dialogs can be shown during startup
|
|
|
|
* If false and dialogs would need to be shown, returns NS_ERROR_PROFILE_REQUIRES_INTERRACTION
|
|
|
|
*/
|
|
|
|
[noscript] void startupWithArgs(in nsICmdLineService cmdLine, in boolean canInteract);
|
2000-11-04 16:19:57 +00:00
|
|
|
|
|
|
|
long get4xProfileCount();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The following values are used with getProfileListX
|
|
|
|
*
|
|
|
|
* LIST_ONLY_NEW - the list will contain only migrated profiles
|
|
|
|
* LIST_ONLY_OLD - the list will contain only un-migrated profiles
|
|
|
|
* LIST_ALL - the list will contain all profiles
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
const unsigned long LIST_ONLY_NEW = 1;
|
|
|
|
const unsigned long LIST_ONLY_OLD = 2;
|
|
|
|
const unsigned long LIST_ALL = 3;
|
|
|
|
|
|
|
|
void getProfileListX(in unsigned long which, out unsigned long length, [retval, array, size_is(length)] out wstring profileNames);
|
|
|
|
|
|
|
|
void startApprunner(in wstring profileName);
|
|
|
|
|
|
|
|
void migrateProfileInfo();
|
|
|
|
void migrateAllProfiles();
|
|
|
|
void migrateProfile(in wstring profileName, in boolean showProgressAsModalWindow);
|
|
|
|
void forgetCurrentProfile();
|
|
|
|
|
2001-04-27 14:40:21 +00:00
|
|
|
nsIFile getProfileDir(in wstring profileName);
|
|
|
|
|
2000-11-04 16:19:57 +00:00
|
|
|
attribute boolean automigrate;
|
|
|
|
readonly attribute nsIFile defaultProfileParentDir;
|
|
|
|
readonly attribute wstring firstProfile;
|
|
|
|
|
|
|
|
[noscript] void updateRegistry(in nsIFile regName);
|
|
|
|
[noscript] void setRegStrings(in wstring profileName,
|
|
|
|
in wstring regString,
|
|
|
|
in wstring regName,
|
|
|
|
in wstring regEmail,
|
|
|
|
in wstring regOption);
|
2001-04-27 14:40:21 +00:00
|
|
|
[noscript] string isRegStringSet(in wstring profileName);
|
|
|
|
|
2001-06-27 07:38:53 +00:00
|
|
|
void createNewProfileWithLocales(in wstring profileName,
|
|
|
|
in wstring nativeProfileDir,
|
|
|
|
in wstring UILocale,
|
|
|
|
in wstring contentLocale,
|
|
|
|
in boolean useExistingDir);
|
2001-04-27 14:40:21 +00:00
|
|
|
/**
|
|
|
|
* The remaining methods are deprecated. DO NOT USE THEM.
|
|
|
|
*/
|
|
|
|
|
|
|
|
boolean isCurrentProfileAvailable();
|
|
|
|
[noscript] void getCurrentProfileDir(out nsIFile profileDir);
|
2001-06-27 07:38:53 +00:00
|
|
|
|
2000-11-04 16:19:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsIProfileInternal_h__ */
|