00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifndef LASiWrapper_INCLUDED
00033 #define LASiWrapper_INCLUDED
00034
00035 #include <iostream>
00036
00037
00038
00039
00040 #ifdef LASI
00041 #include <LASi.h>
00042 #endif
00043 #include "DrawingMetrics.h"
00044
00045 class LASiWrapper{
00046
00047 private:
00048 #ifdef LASI
00049 LASi::PostscriptDocument _doc1;
00050 #endif
00051 double _yMaximum;
00052 double _yMinimum;
00053 double _lineHeight;
00054 double _avgCharWidth;
00055 public:
00056 LASiWrapper(){
00057
00058 #ifndef LASI
00059 _lineHeight = 13.75;
00060 _yMinimum = -1.87184;
00061 _yMaximum = 6.84582;
00062 _avgCharWidth = 6.0;
00063 #endif
00064 }
00065
00066 void setFont(const char* font);
00067 void setFontSize(double fontSize);
00068 void getDimensions(std::string sampleString,double* lineHeight,double* xAdvance, double* yMinimum, double* yMaximum);
00069
00070 };
00071
00072 #endif