summaryrefslogtreecommitdiff
path: root/hyp2mat/lib/pdf.h
diff options
context:
space:
mode:
Diffstat (limited to 'hyp2mat/lib/pdf.h')
-rw-r--r--hyp2mat/lib/pdf.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/hyp2mat/lib/pdf.h b/hyp2mat/lib/pdf.h
new file mode 100644
index 0000000..98d654e
--- /dev/null
+++ b/hyp2mat/lib/pdf.h
@@ -0,0 +1,59 @@
+/*
+ * hyp2mat - convert hyperlynx files to matlab scripts
+ * Copyright 2012 Koen De Vleeschauwer.
+ *
+ * This file is part of hyp2mat.
+ *
+ * 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 3 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef PDF_H
+#define PDF_H
+
+#include <cmath>
+#include <hpdf.h>
+
+#include "palette.h"
+#include "hyp2mat.h"
+
+class PDF: public Palette {
+public:
+ PDF();
+ void Write(const std::string& filename, Hyp2Mat::PCB& pcb);
+
+private:
+ Palette palette;
+ double x_max; /* board dimensions */
+ double y_max;
+ double x_min;
+ double y_min;
+ double text_height; /* in points */
+ double margin; /* in points */
+ double m_to_points; /* convert meter to points */
+ void set_page_size(HPDF_Page page);
+ void set_color(HPDF_Page page, int color_idx);
+ void set_color_black(HPDF_Page page);
+ void draw_composite_view(HPDF_Doc pdf, HPDF_Font font, Hyp2Mat::PCB& pcb);
+ void draw_layer_view(HPDF_Doc pdf, HPDF_Font font, Hyp2Mat::PCB& pcb);
+ void draw_caption(HPDF_Page page, HPDF_Font font, std::string txt);
+ void draw(HPDF_Page page, Hyp2Mat::FloatPolygons& polygons); /* output a polygon */
+ void draw(HPDF_Page page, Hyp2Mat::FloatPolygon& polygon); /* output a polygon edge */
+ void draw(HPDF_Page page, Hyp2Mat::Via& via); /* output a via */
+ void page_fill(HPDF_Page page); /* fill */
+ void page_stroke(HPDF_Page page); /* draw lines */
+ };
+
+#endif
+
+/* not truncated */