Commit graph

412 commits

Author SHA1 Message Date
John McNamara
5c4d02a433 Fix for broken tests compilation. 2019-11-17 13:35:56 +00:00
John McNamara
d87fbddd72 Refactored the chart pattern struct.
Refactored the chart pattern struct to remove hidden fields.

See #252
2019-11-17 13:09:45 +00:00
John McNamara
3d7aff58f0 Minor doc update for lxw_row_col_options. 2019-11-17 12:58:16 +00:00
John McNamara
4b1ab45f8d Refactored the worksheet protection struct.
Refactored the worksheet protection struct to remove hidden fields.

See #252
2019-11-17 12:51:10 +00:00
John McNamara
aacdd525a5 Refactored the data validation struct.
Refactored the data validation struct to remove hidden fields.

See #252
2019-11-17 11:27:56 +00:00
John McNamara
3e3ce69aab Made deprection of new_workbook() function explicit.
Made the deprecation of new_workbook() funtion more explicit
and removed instances from the examples and test code. The
workbook_new() function should be used instead.

See #252
2019-11-16 20:32:37 +00:00
John McNamara
a1e7e54808 Documented hidden field in lxw_doc_properties.
Documented optional file creation datetime in lxw_doc_properties.

See #252
2019-11-16 17:45:30 +00:00
John McNamara
d840235a02 Refactored the chart fonts struct.
Refactored the chart fonts struct to document or remove hidden
fields.

See #252
2019-11-16 16:33:31 +00:00
John McNamara
035a3c6fdf Refactored the insert image and chart APIs.
See #252
2019-11-11 20:56:00 +00:00
John McNamara
239f5afbd4 Allow user defined image descriptions
Allow user defined/override of the image description used by
worksheet_insert_image(), which defaults to the filename.

Issue #238
2019-10-12 05:14:48 +01:00
John McNamara
15b2511406 Add Windows portable version of fopen to handle utf8 filenames.
Issue #238
2019-10-11 21:05:47 +01:00
John McNamara
4e1ee88760 Add support for East Asian vertical chart fonts. 2019-08-31 17:32:54 +01:00
John McNamara
8ff6465f51 Add option to set chart font rotation as stacked.
Added the option to allow chart fonts to be rotation to 270 deg
to give a stacked orientation.
2019-08-24 09:55:47 +01:00
John McNamara
1a731651e3 Fix for missing strings.h in Windows build. 2019-06-25 20:59:48 +01:00
John McNamara
4df6e8716e Prep for release 0.8.7. 2019-06-21 00:07:52 +01:00
John McNamara
32658fef2f Add docs and an example for add_vba_project.
Issue #29
2019-06-19 00:21:04 +01:00
John McNamara
cb87c73a95 Initial support for adding macros to workbooks.
Initial support for adding macros extracted from existing xlsm
files to new xlsm files.

Issue #29 add_vba_project()
2019-06-16 15:46:09 +01:00
John McNamara
7d372b91c7 Fix for handling > 65k image files.
Issue #225
2019-06-12 01:06:18 +01:00
John McNamara
6c096b98e6 Minor doc fix.
Closes #232
2019-06-09 16:03:51 +01:00
John McNamara
ebab9831b3 Refactor use_zip64 into the constructor.
Issue #228
2019-06-08 16:40:17 +01:00
John McNamara
024f25704e Fix error handling/reporting to propogate zip.c errors.
Issue #227
2019-06-08 15:05:24 +01:00
John McNamara
a0931c58b7 Added support for ZIP64 files.
Closes #228
2019-06-08 00:24:40 +01:00
John McNamara
34290c1cab Add case insensitive worksheet name check.
Add case insensitive worksheet name check, in add_worksheet() and
in workbook_validate_sheet_name(). Ignores UTF-8 chars which may
contain upper/lowercase duplicates.

Closes #230
2019-06-07 21:28:08 +01:00
John McNamara
267a09a242 Added check for reserved worksheet name.
The worksheet name "History" is reserved by Excel.
2019-06-07 20:09:54 +01:00
John McNamara
ee18f0c4c0 Add error code for worksheet name with apostrophe.
Issue #223
2019-06-07 16:58:19 +01:00
John McNamara
f34673a92f Fix for sheet names that start or end with an apostrophe.
Excel doesn't allow worksheet names to start or end with
and apostrophe.

Closes #223.
2019-06-07 00:01:15 +01:00
John McNamara
339c300cd6 Prep for release 0.8.6. 2019-04-07 16:56:23 +01:00
John McNamara
f00ab0c4fa Fix the mime-type reported by file(1)
The mime-type reported by "file --mime-type"/magic was incorrect
since it expects the [Content_types] to be the first file in the
zip container, followed by 3 others.
2019-03-29 18:10:20 +00:00
John McNamara
af07916f72 Prep for release 0.8.5. 2019-02-10 22:50:49 +00:00
John McNamara
72c9b219cb Updated copyright year. 2019-02-10 21:11:46 +00:00
Evan Miller
ebba115435 Fix compile-time warnings with strict prototypes enabled.
The C standard and -Wstrict-prototypes requires that functions which
take no arguments be declared as foobar(void) instead of foobar().

Fixes #208
2019-01-30 14:00:00 +00:00
John McNamara
fb5c43b8fc Prep for release 0.8.4. 2018-11-10 15:27:33 +00:00
John McNamara
fa4d194a58 Minor doc fix. 2018-11-10 15:01:32 +00:00
John McNamara
cefa74bba5 Minor doc fix. 2018-10-08 23:15:48 +01:00
John McNamara
9a20ee2fcc Prep for release 0.8.3. 2018-10-01 22:54:02 +01:00
John McNamara
8df3ce882c Add validation checks to worksheet_write_rich_string().
Issue #37
2018-10-01 21:30:32 +01:00
John McNamara
936a6ca006 Add docs for rich strings.
Issue #37
2018-09-30 23:24:45 +01:00
John McNamara
eb4e8d37af Added support for constant_memory rich strings.
Issue #37
2018-09-29 02:46:46 +01:00
John McNamara
e85ad362ec Initial working rich strings.
Issue #37
2018-09-28 16:55:29 +01:00
John McNamara
8d50d03b65 Added additional chartsheet features. 2018-09-20 21:06:19 +01:00
John McNamara
2aa2ed3281 Prep for release 0.8.2. 2018-09-16 20:12:56 +01:00
John McNamara
f44437aaf5 Added chartsheet_set_tab_color() function. 2018-09-16 12:16:22 +01:00
John McNamara
228d3c91d7 Added chartsheet_set_zoom() function. 2018-09-16 11:42:24 +01:00
John McNamara
cac695482a Prep for release 0.8.1. 2018-09-15 14:48:27 +01:00
John McNamara
4a67554236 Added chartsheet protect() function. 2018-09-15 14:36:47 +01:00
John McNamara
5933f440e9 Add chartsheet hide() function. 2018-09-12 22:47:36 +01:00
John McNamara
f52e816717 Prep for release 0.8.0. 2018-09-11 22:50:29 +01:00
John McNamara
8672666b74 Add docs for chartsheets.
Issue #90
2018-09-11 21:22:00 +01:00
John McNamara
2620e3d8a1 Minor fix for chart_axis_set_name() examples/docs. 2018-09-09 12:55:15 +01:00
John McNamara
2ea3ba2a71 First fully functional chartsheet implementation.
Issue #90
2018-09-09 01:09:44 +01:00