summaryrefslogtreecommitdiff
path: root/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-08-23 15:07:20 +0200
committerBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-08-23 15:07:20 +0200
commit18b27513f13bda279f2fe4cb93f0df56b1928864 (patch)
tree1b8597320c9b2e8389cce9016e45631a23d648c8 /sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx
parentc8e1c7822ef95330737b5f820b66e20e1d5dc23c (diff)
recreated tag OOO_BUILD_3_2_98_1 which had these commits:
commit 14dabe1c7117cf14295b3435228b6f24f0143f0d (tag: refs/tags/OOO_BUILD_3_2_98_1) Author: Petr Mladek <pmladek@walk.suse.cz> Date: Wed Sep 15 19:03:25 2010 +0200 Release ooo-build-3.2.98.1, tag OOO_BUILD_3_2_98_1 (3.3-alpha1) commit f0ba077fb96691d302489a28c1cb67c9bf150f39 Author: Fridrich Štrba <fridrich.strba@bluewin.ch> Date: Tue Sep 14 17:27:42 2010 +0200 moving languagetool to the right repository .../languagetool/JLanguageTool-1.0.0.patch | 137 ++++++++++++++++++++ languagetool/languagetool/makefile.mk | 67 ++++++++++ languagetool/languagetool/prj/build.lst | 3 + languagetool/languagetool/prj/d.lst | 1 + 4 files changed, 208 insertions(+), 0 deletions(-) commit f62b698d7387ddd78bf205bc44af3fb3adbed295 Author: Kalman Szalai - KAMI <kamihir@freemail.hu> Date: Tue Sep 14 16:57:26 2010 +0200 extensions_deliver.diff: Deliver extensions to the solver sdext/prj/d.lst | 3 +++ swext/prj/d.lst | 1 + 2 files changed, 4 insertions(+), 0 deletions(-) commit 7553ed5a48ee9d1eff4dce30509ce0d682687b20 Author: Fridrich Štrba <fridrich.strba@bluewin.ch> Date: Tue Sep 14 10:50:46 2010 +0200 win32-pdfimport-use-temporary-file.diff: avoid locking issues on win32 sdext/source/pdfimport/pdfiadaptor.cxx | 2 +- sdext/source/pdfimport/wrapper/wrapper.cxx | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) commit 8483892bd836c37b4e4a171745e37ceae88d0a16 Merge: 6a13c46 89ba628 Author: Jan Holesovsky <kendy@suse.cz> Date: Tue Sep 7 09:33:01 2010 +0200 Merge commit 'ooo/OOO330_m6' commit 89ba628baeac602f71f4b096e08d50b16c715c47 (tag: refs/tags/ooo/OOO330_m7, tag: refs/tags/ooo/OOO330_m6, tag: refs/tags/ooo/OOO330_m5) Merge: 4571732 ed49424 Author: Kurt Zenker <kz@openoffice.org> Date: Wed Aug 18 16:59:10 2010 +0200 CWS-TOOLING: integrate CWS txtl10n commit ed494241621de2f1c37b632d2d970f259df8deef Merge: f1aba18 4571732 Author: Ivo Hinkelmann <ihi@openoffice.org> Date: Tue Jul 27 16:50:00 2010 +0200 merged OOO330 m2 commit f1aba18563ab79ae2c3ca594d43130adf70f72c1 Author: Ivo Hinkelmann <ihi@openoffice.org> Date: Fri Jul 23 13:02:53 2010 +0200 txtl10n: removal of verbose switch swext/mediawiki/help/makefile.mk | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
Notes
Notes: split repo tag: extensions_OOO_BUILD_3_2_98_1
Diffstat (limited to 'sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx')
-rw-r--r--sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx56
1 files changed, 28 insertions, 28 deletions
diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx
index dfb578d06862..2bbfc03a1d85 100644
--- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx
+++ b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx
@@ -15,12 +15,12 @@
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ *
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
@@ -139,14 +139,14 @@ namespace pdfi
bool isBold;
bool isItalic;
bool isUnderline;
- double size;
+ double size;
};
class PDFOutDev : public OutputDev
{
// not owned by this class
PDFDoc* m_pDoc;
- mutable std::hash_map< long long,
+ mutable std::hash_map< long long,
FontAttributes > m_aFontMap;
UnicodeMap* m_pUtf8Map;
@@ -156,50 +156,50 @@ namespace pdfi
public:
explicit PDFOutDev( PDFDoc* pDoc );
-
+
//----- get info about output device
-
+
// Does this device use upside-down coordinates?
// (Upside-down means (0,0) is the top left corner of the page.)
virtual GBool upsideDown() { return gTrue; }
-
+
// Does this device use drawChar() or drawString()?
virtual GBool useDrawChar() { return gTrue; }
-
+
// Does this device use beginType3Char/endType3Char? Otherwise,
// text in Type 3 fonts will be drawn with drawChar/drawString.
virtual GBool interpretType3Chars() { return gFalse; }
-
+
// Does this device need non-text content?
virtual GBool needNonText() { return gTrue; }
-
+
//----- initialization and control
-
+
// Set default transform matrix.
virtual void setDefaultCTM(double *ctm);
-
+
// Start a page.
virtual void startPage(int pageNum, GfxState *state);
-
+
// End a page.
virtual void endPage();
-
+
// Dump page contents to display.
// virtual void dump() {}
-
+
//----- coordinate conversion
-
+
// Convert between device and user coordinates.
// virtual void cvtDevToUser(double dx, double dy, double *ux, double *uy);
// virtual void cvtUserToDev(double ux, double uy, int *dx, int *dy);
-
+
//----- link borders
virtual void processLink(Link *link, Catalog *catalog);
-
+
//----- save/restore graphics state
virtual void saveState(GfxState *state);
virtual void restoreState(GfxState *state);
-
+
//----- update graphics state
// virtual void updateAll(GfxState *state);
virtual void updateCTM(GfxState *state, double m11, double m12,
@@ -215,7 +215,7 @@ namespace pdfi
virtual void updateFillOpacity(GfxState *state);
virtual void updateStrokeOpacity(GfxState *state);
virtual void updateBlendMode(GfxState *state);
-
+
//----- update text state
virtual void updateFont(GfxState *state);
// virtual void updateTextMat(GfxState *state);
@@ -226,16 +226,16 @@ namespace pdfi
// virtual void updateHorizScaling(GfxState *state) {}
// virtual void updateTextPos(GfxState *state) {}
// virtual void updateTextShift(GfxState *state, double shift) {}
-
+
//----- path painting
virtual void stroke(GfxState *state);
virtual void fill(GfxState *state);
virtual void eoFill(GfxState *state);
-
+
//----- path clipping
virtual void clip(GfxState *state);
virtual void eoClip(GfxState *state);
-
+
//----- text drawing
virtual void drawChar(GfxState *state, double x, double y,
double dx, double dy,
@@ -243,7 +243,7 @@ namespace pdfi
CharCode code, int nBytes, Unicode *u, int uLen);
virtual void drawString(GfxState *state, GooString *s);
virtual void endTextObject(GfxState *state);
-
+
//----- image drawing
virtual void drawImageMask(GfxState *state, Object *ref, Stream *str,
int width, int height, GBool invert,
@@ -262,18 +262,18 @@ namespace pdfi
Stream *maskStr,
int maskWidth, int maskHeight,
GfxImageColorMap *maskColorMap);
-
+
//----- OPI functions
// virtual void opiBegin(GfxState *state, Dict *opiDict);
// virtual void opiEnd(GfxState *state, Dict *opiDict);
-
+
//----- Type 3 font operators
// virtual void type3D0(GfxState *state, double wx, double wy) {}
// virtual void type3D1(GfxState *state, double wx, double wy,
// double llx, double lly, double urx, double ury) {}
-
+
//----- PostScript XObjects
- // virtual void psXObject(Stream *psStream, Stream *level1Stream) {}
+ // virtual void psXObject(Stream *psStream, Stream *level1Stream) {}
void setPageNum( int nNumPages );
};