File: drvpic.h

package info (click to toggle)
pstoedit 3.75-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,132 kB
  • sloc: cpp: 28,684; sh: 4,510; perl: 4,154; ansic: 1,014; java: 860; makefile: 442
file content (87 lines) | stat: -rw-r--r-- 2,684 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#ifndef __drvPIC_h
#define __drvPIC_h

/* 
   drvpic.h : This file is part of pstoedit
   Class declaration for PIC output driver

   Copyright (C) 1999 Egil Kvaleberg, egil@kvaleberg.no

    This program is free software; you can redistribute it and/or 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., 675 Mass Ave, Cambridge, MA 02139, USA.

*/

#include "drvbase.h"

class drvPIC : public drvbase {

public:
	 derivedConstructor(drvPIC);
	~drvPIC() override; // Destructor
	class DriverOptions : public ProgramOptions {
	public:
		// OptionT < bool, BoolTrueExtractor > groff;
		OptionT < bool, BoolTrueExtractor > troff_mode;
		OptionT < bool, BoolTrueExtractor > landscape;
		OptionT < bool, BoolTrueExtractor > portrait;
		OptionT < bool, BoolTrueExtractor > keepFont;
		OptionT < bool, BoolTrueExtractor > textAsText;
		OptionT < bool, BoolTrueExtractor > debug;

		DriverOptions() : 
			// groff(true,"-groff","",0,"groff mode",0,false),
			troff_mode(true,"-troff","",0,"troff mode (default is groff)",nullptr,false),
			landscape(true,"-landscape","",0,"landscape output",nullptr,false),
			portrait(true,"-portrait","",0,"portrait output",nullptr,false),
			keepFont(true,"-keepfont","",0,"print unrecognized literally",nullptr,false),
			textAsText(true,"-text","",0,"try not to make pictures from running text",nullptr,false),
			debug(true,"-debug","",0,"enable debug output",nullptr,false)
		{
			// ADD(groff);
			ADD(troff_mode);
			ADD(landscape);
			ADD(portrait);
			ADD(keepFont);
			ADD(textAsText);
			ADD(debug);
		}
	} *options;

#include "drvfuncs.h"
	void show_text(const TextInfo & textinfo) override;

private:
	void print_coords();
	float x_coord(float x, float y) const ;
	float y_coord(float x, float y) const ;
	void ps_begin();
	void ps_end();

	/*
	int troff_mode;         // troff, as opposed to groff
	int landscape;          // original is in landscape mode
	int keep_font;          // print unrecognized literally
	int text_as_text;       // try not to make pictures from running text
	int debug;              // obvious...
	*/

	float largest_y;
	float pageheight;
	int withinPS;
};

#endif