summaryrefslogtreecommitdiffstats
path: root/src/create_pdf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/create_pdf.h')
-rw-r--r--src/create_pdf.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/create_pdf.h b/src/create_pdf.h
new file mode 100644
index 0000000..0208657
--- /dev/null
+++ b/src/create_pdf.h
@@ -0,0 +1,52 @@
+/*.
+ * create_pdf.h: The header file for the pdf creation routines
+ *
+ * Copyright https://github.com/PartialVolume/shredos.x86_64
+ *
+ * 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, version 2.
+ *
+ * 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, Boston, MA 02110-1301 USA.
+ *
+ */
+
+#ifndef CREATE_PDF_H_
+#define CREATE_PDF_H_
+
+#define MAX_PDF_FOOTER_TEXT_LENGTH 100
+
+#define STATUS_ICON_GREEN_TICK 1
+#define STATUS_ICON_YELLOW_EXCLAMATION 2
+#define STATUS_ICON_RED_CROSS 3
+
+/* Additional colors that supplement the standard colors in pdfgen.h
+ */
+/*! Utility macro to provide gray */
+#define PDF_DARK_GREEN PDF_RGB( 0, 0x64, 0 )
+
+/*! Utility macro to provide gray */
+#define PDF_GRAY PDF_RGB( 0x5A, 0x5A, 0x5A )
+
+/*! Utility macro to provide gray */
+#define PDF_YELLOW PDF_RGB( 0xFF, 0xFF, 0x5A )
+
+/**
+ * Create the disk erase report in PDF format
+ * @param pointer to a drive context
+ * @return returns 0 on success < 1 on error
+ */
+int create_pdf( nwipe_context_t* ptr );
+
+int nwipe_get_smart_data( nwipe_context_t* );
+
+void create_header_and_footer( nwipe_context_t*, char* );
+
+#endif /* CREATE_PDF_H_ */