| 1 | /* export.h |
|---|
| 2 | * Export to CAD-like formats (DXF, Skencil, SVG, EPS, HPGL) and also Compass |
|---|
| 3 | * PLT. |
|---|
| 4 | */ |
|---|
| 5 | |
|---|
| 6 | /* Copyright (C) 2004,2005,2012,2014,2015 Olly Betts |
|---|
| 7 | * |
|---|
| 8 | * This program is free software; you can redistribute it and/or modify |
|---|
| 9 | * it under the terms of the GNU General Public License as published by |
|---|
| 10 | * the Free Software Foundation; either version 2 of the License, or |
|---|
| 11 | * (at your option) any later version. |
|---|
| 12 | * |
|---|
| 13 | * This program is distributed in the hope that it will be useful, |
|---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 16 | * GNU General Public License for more details. |
|---|
| 17 | * |
|---|
| 18 | * You should have received a copy of the GNU General Public License |
|---|
| 19 | * along with this program; if not, write to the Free Software |
|---|
| 20 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|
| 21 | */ |
|---|
| 22 | |
|---|
| 23 | #ifndef SURVEX_INCLUDED_EXPORT_H |
|---|
| 24 | #define SURVEX_INCLUDED_EXPORT_H |
|---|
| 25 | |
|---|
| 26 | #include "wx.h" |
|---|
| 27 | |
|---|
| 28 | #include <time.h> |
|---|
| 29 | |
|---|
| 30 | class MainFrm; |
|---|
| 31 | |
|---|
| 32 | typedef enum { |
|---|
| 33 | FMT_DXF, |
|---|
| 34 | FMT_EPS, |
|---|
| 35 | FMT_GPX, |
|---|
| 36 | FMT_HPGL, |
|---|
| 37 | FMT_KML, |
|---|
| 38 | FMT_PLT, |
|---|
| 39 | FMT_SK, |
|---|
| 40 | FMT_SVG |
|---|
| 41 | } export_format; |
|---|
| 42 | |
|---|
| 43 | #define LEGS 0x00000001 |
|---|
| 44 | #define SURF 0x00000002 |
|---|
| 45 | #define STNS 0x00000004 |
|---|
| 46 | #define LABELS 0x00000008 |
|---|
| 47 | #define XSECT 0x00000010 |
|---|
| 48 | #define WALL1 0x00000020 |
|---|
| 49 | #define WALL2 0x00000040 |
|---|
| 50 | #define WALLS (WALL1|WALL2) |
|---|
| 51 | #define PASG 0x00000080 |
|---|
| 52 | #define EXPORT_3D 0x10000000 |
|---|
| 53 | #define CENTRED 0x00000200 |
|---|
| 54 | #define ENTS 0x00000400 |
|---|
| 55 | #define FIXES 0x00000800 |
|---|
| 56 | #define EXPORTS 0x00001000 |
|---|
| 57 | #define PROJ 0x00002000 |
|---|
| 58 | #define GRID 0x00004000 |
|---|
| 59 | #define TEXT_HEIGHT 0x00008000 |
|---|
| 60 | #define MARKER_SIZE 0x00010000 |
|---|
| 61 | #define SCALE 0x00020000 |
|---|
| 62 | #define FULL_COORDS 0x00040000 |
|---|
| 63 | |
|---|
| 64 | bool Export(const wxString &fnm_out, const wxString &title, |
|---|
| 65 | const wxString &datestamp, time_t datestamp_numeric, |
|---|
| 66 | const MainFrm * mainfrm, |
|---|
| 67 | double pan, double tilt, int show_mask, export_format format, |
|---|
| 68 | const char * input_projection, |
|---|
| 69 | double grid_, double text_height_, double marker_size_, |
|---|
| 70 | double scale); |
|---|
| 71 | |
|---|
| 72 | #endif |
|---|