summaryrefslogtreecommitdiff
path: root/Build/source/libs/graphite-engine/test/RegressionTest/GrJustifier.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/graphite-engine/test/RegressionTest/GrJustifier.h')
-rw-r--r--Build/source/libs/graphite-engine/test/RegressionTest/GrJustifier.h82
1 files changed, 0 insertions, 82 deletions
diff --git a/Build/source/libs/graphite-engine/test/RegressionTest/GrJustifier.h b/Build/source/libs/graphite-engine/test/RegressionTest/GrJustifier.h
deleted file mode 100644
index ea5fc21bec9..00000000000
--- a/Build/source/libs/graphite-engine/test/RegressionTest/GrJustifier.h
+++ /dev/null
@@ -1,82 +0,0 @@
-/*--------------------------------------------------------------------*//*:Ignore this sentence.
-Copyright (C) 2003 SIL International. All rights reserved.
-
-Distributable under the terms of either the Common Public License or the
-GNU Lesser General Public License, as specified in the LICENSING.txt file.
-
-File: GrJustifier.h
-Responsibility: Sharon Correll
-Last reviewed: Not yet.
-
-Description:
- A default justification agent for Graphite.
--------------------------------------------------------------------------------*//*:End Ignore*/
-#pragma once
-#ifndef GRJUSTIFIER_INCLUDED
-#define GRJUSTIFIER_INCLUDED
-
-/*----------------------------------------------------------------------------------------------
- Class: GrJustifier
- This class provides a basic justification/layout algorithm for applications that use
- Graphite.
-----------------------------------------------------------------------------------------------*/
-class GrJustifier : public gr::IGrJustifier
-{
-public:
- // Constructor:
- GrJustifier();
- ~GrJustifier();
-
-/*
- virtual long IncRefCount(void)
- {
- return InterlockedIncrement(&m_cref);
- }
- virtual long DecRefCount(void)
- {
- long cref = InterlockedDecrement(&m_cref);
- if (cref == 0) {
- m_cref = 1;
- delete this;
- }
- return cref;
- }
-*/
-
- virtual gr::GrResult adjustGlyphWidths(gr::GraphiteProcess * pfgje,
- int iGlyphMin, int iGlyphLim,
- float dxCurrWidth, float dxDesiredWidth);
-
- //virtual GrResult suggestShrinkAndBreak(GraphiteProcess * pfgjwe,
- // int iGlyphMin, int iGlyphLim, int dxsWidth, LgLineBreak lbPref, LgLineBreak lbMax,
- // int * pdxShrink, LgLineBreak * plbToTry);
-
- // Return a Graphite-compatible justifier that can be stored in a Graphite segment.
- // TODO: remove
- //virtual void JustifierObject(IGrJustifier ** ppgjus)
- //{
- // *ppgjus = this;
- //}
-
- // When a segment is being destroyed, there is nothing to do, since this is a pointer
- // to an object that is allocated elsewhere.
- // TODO: remove
- //virtual void DeleteJustifierPtr()
- //{
- //}
-
-protected:
- long m_cref;
-
- gr::GraphiteProcess * m_pgreng;
-
- void DistributeRemainder(std::vector<int> & vdxWidths, std::vector<int> & vdxStretch,
- int dx, int iiMin, int iiLim,
- int * pdxStretchAchieved);
- int Lcm(std::vector<int> & vnWeights, std::vector<int> & vnMFactors);
- int PrimeFactors(int n, std::vector<int> & vnPowersPerPrime);
- int NthPower(int nX, int nY);
-};
-
-
-#endif // !GRJUSTIFIER_INCLUDED