intl/hyphenation/public/nsHyphenationManager.h

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

michael@0 1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
michael@0 2 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 5
michael@0 6 #ifndef nsHyphenationManager_h__
michael@0 7 #define nsHyphenationManager_h__
michael@0 8
michael@0 9 #include "nsInterfaceHashtable.h"
michael@0 10 #include "nsRefPtrHashtable.h"
michael@0 11 #include "nsHashKeys.h"
michael@0 12 #include "nsIObserver.h"
michael@0 13 #include "mozilla/Omnijar.h"
michael@0 14
michael@0 15 class nsHyphenator;
michael@0 16 class nsIAtom;
michael@0 17 class nsIURI;
michael@0 18
michael@0 19 class nsHyphenationManager
michael@0 20 {
michael@0 21 public:
michael@0 22 nsHyphenationManager();
michael@0 23
michael@0 24 already_AddRefed<nsHyphenator> GetHyphenator(nsIAtom *aLocale);
michael@0 25
michael@0 26 static nsHyphenationManager *Instance();
michael@0 27
michael@0 28 static void Shutdown();
michael@0 29
michael@0 30 private:
michael@0 31 ~nsHyphenationManager();
michael@0 32
michael@0 33 protected:
michael@0 34 class MemoryPressureObserver MOZ_FINAL : public nsIObserver
michael@0 35 {
michael@0 36 public:
michael@0 37 NS_DECL_ISUPPORTS
michael@0 38 NS_DECL_NSIOBSERVER
michael@0 39 };
michael@0 40
michael@0 41 void LoadPatternList();
michael@0 42 void LoadPatternListFromOmnijar(mozilla::Omnijar::Type aType);
michael@0 43 void LoadPatternListFromDir(nsIFile *aDir);
michael@0 44 void LoadAliases();
michael@0 45
michael@0 46 nsInterfaceHashtable<nsISupportsHashKey,nsIAtom> mHyphAliases;
michael@0 47 nsInterfaceHashtable<nsISupportsHashKey,nsIURI> mPatternFiles;
michael@0 48 nsRefPtrHashtable<nsISupportsHashKey,nsHyphenator> mHyphenators;
michael@0 49
michael@0 50 static nsHyphenationManager *sInstance;
michael@0 51 };
michael@0 52
michael@0 53 #endif // nsHyphenationManager_h__

mercurial