2007-01-01 21:02:22 +00:00
|
|
|
/* ====================================================================
|
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
|
(the "License"); you may not use this file except in compliance with
|
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
==================================================================== */
|
|
|
|
|
package org.apache.poi.hssf.usermodel;
|
|
|
|
|
|
2014-04-24 15:42:53 +00:00
|
|
|
import org.apache.poi.ddf.DefaultEscherRecordFactory;
|
|
|
|
|
import org.apache.poi.ddf.EscherBSERecord;
|
|
|
|
|
import org.apache.poi.ddf.EscherContainerRecord;
|
|
|
|
|
import org.apache.poi.ddf.EscherOptRecord;
|
|
|
|
|
import org.apache.poi.ddf.EscherProperties;
|
|
|
|
|
import org.apache.poi.ddf.EscherSimpleProperty;
|
|
|
|
|
import org.apache.poi.hssf.record.CommonObjectDataSubRecord;
|
|
|
|
|
import org.apache.poi.hssf.record.EndSubRecord;
|
|
|
|
|
import org.apache.poi.hssf.record.NoteRecord;
|
|
|
|
|
import org.apache.poi.hssf.record.NoteStructureSubRecord;
|
|
|
|
|
import org.apache.poi.hssf.record.ObjRecord;
|
|
|
|
|
import org.apache.poi.hssf.record.TextObjectRecord;
|
2014-11-04 23:55:23 +00:00
|
|
|
import org.apache.poi.ss.usermodel.ClientAnchor;
|
2008-01-24 10:10:55 +00:00
|
|
|
import org.apache.poi.ss.usermodel.Comment;
|
2007-01-01 21:02:22 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Represents a cell comment - a sticky note associated with a cell.
|
|
|
|
|
*/
|
2008-01-24 10:10:55 +00:00
|
|
|
public class HSSFComment extends HSSFTextbox implements Comment {
|
2007-01-01 21:02:22 +00:00
|
|
|
|
2012-07-28 10:21:40 +00:00
|
|
|
private final static int FILL_TYPE_SOLID = 0;
|
|
|
|
|
private final static int FILL_TYPE_PICTURE = 3;
|
|
|
|
|
|
2013-02-02 23:10:34 +00:00
|
|
|
private final static int GROUP_SHAPE_PROPERTY_DEFAULT_VALUE = 655362;
|
|
|
|
|
private final static int GROUP_SHAPE_HIDDEN_MASK = 0x1000002;
|
|
|
|
|
private final static int GROUP_SHAPE_NOT_HIDDEN_MASK = 0xFEFFFFFD;
|
|
|
|
|
|
2012-06-28 10:56:55 +00:00
|
|
|
/*
|
|
|
|
|
* TODO - make HSSFComment more consistent when created vs read from file.
|
|
|
|
|
* Currently HSSFComment has two main forms (corresponding to the two constructors). There
|
|
|
|
|
* are certain operations that only work on comment objects in one of the forms (e.g. deleting
|
|
|
|
|
* comments).
|
|
|
|
|
* POI is also deficient in its management of RowRecord fields firstCol and lastCol. Those
|
|
|
|
|
* fields are supposed to take comments into account, but POI does not do this yet (feb 2009).
|
|
|
|
|
* It seems like HSSFRow should manage a collection of local HSSFComments
|
|
|
|
|
*/
|
|
|
|
|
|
2009-02-05 07:39:57 +00:00
|
|
|
private NoteRecord _note;
|
2012-06-28 10:56:55 +00:00
|
|
|
|
|
|
|
|
public HSSFComment(EscherContainerRecord spContainer, ObjRecord objRecord, TextObjectRecord textObjectRecord, NoteRecord _note) {
|
|
|
|
|
super(spContainer, objRecord, textObjectRecord);
|
|
|
|
|
this._note = _note;
|
|
|
|
|
}
|
2007-01-31 16:14:23 +00:00
|
|
|
|
2007-01-01 21:02:22 +00:00
|
|
|
/**
|
|
|
|
|
* Construct a new comment with the given parent and anchor.
|
|
|
|
|
*
|
|
|
|
|
* @param parent
|
2012-06-28 10:56:55 +00:00
|
|
|
* @param anchor defines position of this anchor in the sheet
|
2007-01-01 21:02:22 +00:00
|
|
|
*/
|
2009-02-05 07:39:57 +00:00
|
|
|
public HSSFComment(HSSFShape parent, HSSFAnchor anchor) {
|
|
|
|
|
super(parent, anchor);
|
2012-06-28 10:56:55 +00:00
|
|
|
_note = createNoteRecord();
|
2007-01-01 21:02:22 +00:00
|
|
|
//default color for comments
|
2012-06-18 20:59:32 +00:00
|
|
|
setFillColor(0x08000050);
|
2007-01-01 21:02:22 +00:00
|
|
|
|
|
|
|
|
//by default comments are hidden
|
2012-06-28 10:56:55 +00:00
|
|
|
setVisible(false);
|
|
|
|
|
setAuthor("");
|
2012-08-06 21:06:12 +00:00
|
|
|
CommonObjectDataSubRecord cod = (CommonObjectDataSubRecord) getObjRecord().getSubRecords().get(0);
|
|
|
|
|
cod.setObjectType(CommonObjectDataSubRecord.OBJECT_TYPE_COMMENT);
|
2007-01-01 21:02:22 +00:00
|
|
|
}
|
|
|
|
|
|
2009-02-05 07:39:57 +00:00
|
|
|
protected HSSFComment(NoteRecord note, TextObjectRecord txo) {
|
2012-06-26 11:21:13 +00:00
|
|
|
this(null, new HSSFClientAnchor());
|
2009-02-05 07:39:57 +00:00
|
|
|
_note = note;
|
2007-01-31 16:14:23 +00:00
|
|
|
}
|
2007-01-01 21:02:22 +00:00
|
|
|
|
2012-07-06 17:00:20 +00:00
|
|
|
@Override
|
|
|
|
|
void afterInsert(HSSFPatriarch patriarch) {
|
|
|
|
|
super.afterInsert(patriarch);
|
2012-07-19 19:02:43 +00:00
|
|
|
patriarch._getBoundAggregate().addTailRecord(getNoteRecord());
|
2012-07-06 17:00:20 +00:00
|
|
|
}
|
|
|
|
|
|
2012-07-11 12:08:38 +00:00
|
|
|
@Override
|
|
|
|
|
protected EscherContainerRecord createSpContainer() {
|
|
|
|
|
EscherContainerRecord spContainer = super.createSpContainer();
|
|
|
|
|
EscherOptRecord opt = spContainer.getChildById(EscherOptRecord.RECORD_ID);
|
2012-07-28 10:21:40 +00:00
|
|
|
opt.removeEscherProperty(EscherProperties.TEXT__TEXTLEFT);
|
|
|
|
|
opt.removeEscherProperty(EscherProperties.TEXT__TEXTRIGHT);
|
|
|
|
|
opt.removeEscherProperty(EscherProperties.TEXT__TEXTTOP);
|
|
|
|
|
opt.removeEscherProperty(EscherProperties.TEXT__TEXTBOTTOM);
|
2013-02-02 23:10:34 +00:00
|
|
|
opt.setEscherProperty(new EscherSimpleProperty(EscherProperties.GROUPSHAPE__PRINT, false, false, GROUP_SHAPE_PROPERTY_DEFAULT_VALUE));
|
2012-07-11 12:08:38 +00:00
|
|
|
return spContainer;
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-28 10:56:55 +00:00
|
|
|
@Override
|
|
|
|
|
protected ObjRecord createObjRecord() {
|
|
|
|
|
ObjRecord obj = new ObjRecord();
|
|
|
|
|
CommonObjectDataSubRecord c = new CommonObjectDataSubRecord();
|
|
|
|
|
c.setObjectType(OBJECT_TYPE_COMMENT);
|
|
|
|
|
c.setLocked(true);
|
|
|
|
|
c.setPrintable(true);
|
|
|
|
|
c.setAutofill(false);
|
|
|
|
|
c.setAutoline(true);
|
|
|
|
|
|
|
|
|
|
NoteStructureSubRecord u = new NoteStructureSubRecord();
|
|
|
|
|
EndSubRecord e = new EndSubRecord();
|
|
|
|
|
obj.addSubRecord(c);
|
|
|
|
|
obj.addSubRecord(u);
|
|
|
|
|
obj.addSubRecord(e);
|
|
|
|
|
return obj;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private NoteRecord createNoteRecord(){
|
|
|
|
|
NoteRecord note = new NoteRecord();
|
2012-07-11 12:08:38 +00:00
|
|
|
note.setFlags(NoteRecord.NOTE_HIDDEN);
|
2012-06-28 10:56:55 +00:00
|
|
|
note.setAuthor("");
|
|
|
|
|
return note;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
void setShapeId(int shapeId) {
|
|
|
|
|
super.setShapeId(shapeId);
|
2012-07-11 12:08:38 +00:00
|
|
|
CommonObjectDataSubRecord cod = (CommonObjectDataSubRecord) getObjRecord().getSubRecords().get(0);
|
2012-07-19 19:02:43 +00:00
|
|
|
cod.setObjectId((short) (shapeId % 1024));
|
|
|
|
|
_note.setShapeId(shapeId % 1024);
|
2012-06-28 10:56:55 +00:00
|
|
|
}
|
|
|
|
|
|
2007-01-01 21:02:22 +00:00
|
|
|
/**
|
|
|
|
|
* Returns whether this comment is visible.
|
|
|
|
|
*
|
|
|
|
|
* @param visible <code>true</code> if the comment is visible, <code>false</code> otherwise
|
|
|
|
|
*/
|
2012-06-28 10:56:55 +00:00
|
|
|
public void setVisible(boolean visible) {
|
|
|
|
|
_note.setFlags(visible ? NoteRecord.NOTE_VISIBLE : NoteRecord.NOTE_HIDDEN);
|
2013-02-02 23:10:34 +00:00
|
|
|
setHidden(!visible);
|
2007-01-01 21:02:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Sets whether this comment is visible.
|
|
|
|
|
*
|
|
|
|
|
* @return <code>true</code> if the comment is visible, <code>false</code> otherwise
|
|
|
|
|
*/
|
2009-02-05 07:39:57 +00:00
|
|
|
public boolean isVisible() {
|
2012-06-28 10:56:55 +00:00
|
|
|
return _note.getFlags() == NoteRecord.NOTE_VISIBLE;
|
2007-01-01 21:02:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Return the row of the cell that contains the comment
|
|
|
|
|
*
|
|
|
|
|
* @return the 0-based row of the cell that contains the comment
|
|
|
|
|
*/
|
2009-02-05 07:39:57 +00:00
|
|
|
public int getRow() {
|
2012-06-28 10:56:55 +00:00
|
|
|
return _note.getRow();
|
2007-01-01 21:02:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the row of the cell that contains the comment
|
|
|
|
|
*
|
|
|
|
|
* @param row the 0-based row of the cell that contains the comment
|
|
|
|
|
*/
|
2009-02-05 07:39:57 +00:00
|
|
|
public void setRow(int row) {
|
2012-06-28 10:56:55 +00:00
|
|
|
_note.setRow(row);
|
2007-01-01 21:02:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Return the column of the cell that contains the comment
|
|
|
|
|
*
|
|
|
|
|
* @return the 0-based column of the cell that contains the comment
|
|
|
|
|
*/
|
2012-06-28 10:56:55 +00:00
|
|
|
public int getColumn() {
|
|
|
|
|
return _note.getColumn();
|
2007-01-01 21:02:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the column of the cell that contains the comment
|
|
|
|
|
*
|
|
|
|
|
* @param col the 0-based column of the cell that contains the comment
|
|
|
|
|
*/
|
2009-11-27 17:39:17 +00:00
|
|
|
public void setColumn(int col) {
|
2012-06-28 10:56:55 +00:00
|
|
|
_note.setColumn(col);
|
2007-01-01 21:02:22 +00:00
|
|
|
}
|
2012-06-28 10:56:55 +00:00
|
|
|
|
2009-11-27 17:39:17 +00:00
|
|
|
/**
|
|
|
|
|
* @deprecated (Nov 2009) use {@link HSSFComment#setColumn(int)} }
|
|
|
|
|
*/
|
|
|
|
|
@Deprecated
|
|
|
|
|
public void setColumn(short col) {
|
2012-06-28 10:56:55 +00:00
|
|
|
setColumn((int) col);
|
2009-11-27 17:39:17 +00:00
|
|
|
}
|
2007-01-01 21:02:22 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Name of the original comment author
|
|
|
|
|
*
|
|
|
|
|
* @return the name of the original author of the comment
|
|
|
|
|
*/
|
2009-02-05 07:39:57 +00:00
|
|
|
public String getAuthor() {
|
2012-06-28 10:56:55 +00:00
|
|
|
return _note.getAuthor();
|
2007-01-01 21:02:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Name of the original comment author
|
|
|
|
|
*
|
|
|
|
|
* @param author the name of the original author of the comment
|
|
|
|
|
*/
|
2012-06-28 10:56:55 +00:00
|
|
|
public void setAuthor(String author) {
|
|
|
|
|
if (_note != null) _note.setAuthor(author);
|
2007-01-01 21:02:22 +00:00
|
|
|
}
|
2012-06-28 10:56:55 +00:00
|
|
|
|
Merged revisions 638786-638802,638805-638811,638813-638814,638816-639230,639233-639241,639243-639253,639255-639486,639488-639601,639603-639835,639837-639917,639919-640056,640058-640710,640712-641156,641158-641184,641186-641795,641797-641798,641800-641933,641935-641963,641965-641966,641968-641995,641997-642230,642232-642562,642564-642565,642568-642570,642572-642573,642576-642736,642739-642877,642879,642881-642890,642892-642903,642905-642945,642947-643624,643626-643653,643655-643669,643671,643673-643830,643832-643833,643835-644342,644344-644472,644474-644508,644510-645347,645349-645351,645353-645559,645561-645565,645568-645951,645953-646193,646195-646311,646313-646404,646406-646665,646667-646853,646855-646869,646871-647151,647153-647185,647187-647277,647279-647566,647568-647573,647575,647578-647711,647714-647737,647739-647823,647825-648155,648157-648202,648204-648273,648275,648277-648302,648304-648333,648335-648588,648590-648622,648625-648673,648675-649141,649144,649146-649556,649558-649795,649799,649801-649910,649912-649913,649915-650128,650131-650132,650134-650137,650140-650914,650916-651991,651993-652284,652286-652287,652289,652291,652293-652297,652299-652328,652330-652425,652427-652445,652447-652560,652562-652933,652935,652937-652993,652995-653116,653118-653124,653126-653483,653487-653519,653522-653550,653552-653607,653609-653667,653669-653674,653676-653814,653817-653830,653832-653891,653893-653944,653946-654055,654057-654355,654357-654365,654367-654648,654651-655215,655217-655277,655279-655281,655283-655911,655913-656212,656214,656216-656251,656253-656698,656700-656756,656758-656892,656894-657135,657137-657165,657168-657179,657181-657354,657356-657357,657359-657701,657703-657874,657876-658032,658034-658284,658286,658288-658301,658303-658307,658309-658321,658323-658335,658337-658348,658351,658353-658832,658834-658983,658985,658987-659066,659068-659402,659404-659428,659430-659451,659453-659454,659456-659461,659463-659477,659479-659524,659526-659571,659574,659576-660255,660257-660262,660264-660279,660281-660343,660345-660473,660475-660827,660829-660833,660835-660888,660890-663321,663323-663435,663437-663764,663766-663854,663856-664219,664221-664489,664494-664514,664516-668013,668015-668142,668144-668152,668154,668156-668256,668258,668260-669139,669141-669455,669457-669657,669659-669808,669810-670189,670191-671321,671323-672229,672231-672549,672551-672552,672554-672561,672563-672566,672568,672571-673049,673051-673852,673854-673862,673864-673986,673988-673996,673998-674347,674349-674890,674892-674910,674912-674936,674938-674952,674954-675078,675080-675085,675087-675217,675219-675660,675662-675670,675672-675716,675718-675726,675728-675733,675735-675775,675777-675782,675784,675786-675791,675794-675852,675854-676200,676202,676204,676206-676220,676222-676309,676311-676456,676458-676994,676996-677027,677030-677040,677042-677056,677058-677375,677377-677968,677970-677971,677973,677975-677994,677996-678286,678288-678538,678540-680393,680395-680469,680471-682349 via svnmerge from
https://svn.apache.org/repos/asf/poi/trunk
........
r680530 | nick | 2008-07-28 23:10:07 +0100 (Mon, 28 Jul 2008) | 1 line
Some work on bug #45466 - Partial support for removing excel comments (won't work for all excel versions yet)
........
r680853 | nick | 2008-07-29 22:40:47 +0100 (Tue, 29 Jul 2008) | 1 line
Support for creating new HSLF CurrentUserAtoms
........
r681530 | josh | 2008-07-31 23:44:48 +0100 (Thu, 31 Jul 2008) | 1 line
Fix for bug 45519 - keep data validation records together
........
r681572 | josh | 2008-08-01 02:04:28 +0100 (Fri, 01 Aug 2008) | 1 line
Small update for c681530 bug 45519
........
r682225 | josh | 2008-08-03 23:11:26 +0100 (Sun, 03 Aug 2008) | 1 line
Extensive fixes for data validation (bug 44953)
........
r682227 | josh | 2008-08-03 23:15:46 +0100 (Sun, 03 Aug 2008) | 1 line
should have been submitted with c682225 - Extensive fixes for data validation (bug 44953)
........
r682229 | josh | 2008-08-03 23:49:58 +0100 (Sun, 03 Aug 2008) | 1 line
fixed BiffViewer to add some missing record types. Formatted switch/case for readability
........
r682230 | josh | 2008-08-04 00:13:17 +0100 (Mon, 04 Aug 2008) | 1 line
Small tweaks for data validation (bug 44953)
........
r682282 | josh | 2008-08-04 09:00:11 +0100 (Mon, 04 Aug 2008) | 1 line
Consolidating various duplicates of CellRangeAddress
........
r682336 | yegor | 2008-08-04 12:40:25 +0100 (Mon, 04 Aug 2008) | 1 line
support for headers / footers in HSLF
........
git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@682485 13f79535-47bb-0310-9956-ffa450edef68
2008-08-04 20:02:29 +00:00
|
|
|
/**
|
|
|
|
|
* Returns the underlying Note record
|
|
|
|
|
*/
|
2009-02-05 07:39:57 +00:00
|
|
|
protected NoteRecord getNoteRecord() {
|
2012-06-28 10:56:55 +00:00
|
|
|
return _note;
|
|
|
|
|
}
|
2014-04-24 15:42:53 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Do we know which cell this comment belongs to?
|
|
|
|
|
*/
|
|
|
|
|
public boolean hasPosition() {
|
|
|
|
|
if (_note == null) return false;
|
|
|
|
|
if (getColumn() < 0 || getRow() < 0) return false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2012-06-28 10:56:55 +00:00
|
|
|
|
2014-11-04 23:55:23 +00:00
|
|
|
@Override
|
|
|
|
|
public ClientAnchor getClientAnchor() {
|
|
|
|
|
HSSFAnchor ha = super.getAnchor();
|
|
|
|
|
if (ha instanceof ClientAnchor) {
|
|
|
|
|
return (ClientAnchor) ha;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
throw new IllegalStateException("Anchor can not be changed in "
|
|
|
|
|
+ ClientAnchor.class.getSimpleName());
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-11 12:08:38 +00:00
|
|
|
@Override
|
|
|
|
|
public void setShapeType(int shapeType) {
|
|
|
|
|
throw new IllegalStateException("Shape type can not be changed in "+this.getClass().getSimpleName());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void afterRemove(HSSFPatriarch patriarch){
|
2012-07-19 20:29:42 +00:00
|
|
|
super.afterRemove(patriarch);
|
2012-07-11 12:08:38 +00:00
|
|
|
patriarch._getBoundAggregate().removeTailRecord(getNoteRecord());
|
2012-06-28 10:56:55 +00:00
|
|
|
}
|
2012-07-19 19:02:43 +00:00
|
|
|
|
|
|
|
|
@Override
|
2012-07-28 10:21:40 +00:00
|
|
|
protected HSSFShape cloneShape() {
|
2012-07-19 19:02:43 +00:00
|
|
|
TextObjectRecord txo = (TextObjectRecord) getTextObjectRecord().cloneViaReserialise();
|
|
|
|
|
EscherContainerRecord spContainer = new EscherContainerRecord();
|
|
|
|
|
byte [] inSp = getEscherContainer().serialize();
|
|
|
|
|
spContainer.fillFields(inSp, 0, new DefaultEscherRecordFactory());
|
|
|
|
|
ObjRecord obj = (ObjRecord) getObjRecord().cloneViaReserialise();
|
|
|
|
|
NoteRecord note = (NoteRecord) getNoteRecord().cloneViaReserialise();
|
|
|
|
|
return new HSSFComment(spContainer, obj, txo, note);
|
|
|
|
|
}
|
2012-07-28 10:21:40 +00:00
|
|
|
|
|
|
|
|
public void setBackgroundImage(int pictureIndex){
|
|
|
|
|
setPropertyValue(new EscherSimpleProperty( EscherProperties.FILL__PATTERNTEXTURE, false, true, pictureIndex));
|
|
|
|
|
setPropertyValue(new EscherSimpleProperty( EscherProperties.FILL__FILLTYPE, false, false, FILL_TYPE_PICTURE));
|
2012-08-08 19:41:14 +00:00
|
|
|
EscherBSERecord bse = getPatriarch().getSheet().getWorkbook().getWorkbook().getBSERecord(pictureIndex);
|
2012-07-28 10:21:40 +00:00
|
|
|
bse.setRef(bse.getRef() + 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void resetBackgroundImage(){
|
|
|
|
|
EscherSimpleProperty property = getOptRecord().lookup(EscherProperties.FILL__PATTERNTEXTURE);
|
|
|
|
|
if (null != property){
|
2012-08-08 19:41:14 +00:00
|
|
|
EscherBSERecord bse = getPatriarch().getSheet().getWorkbook().getWorkbook().getBSERecord(property.getPropertyValue());
|
2012-07-28 10:21:40 +00:00
|
|
|
bse.setRef(bse.getRef() - 1);
|
|
|
|
|
getOptRecord().removeEscherProperty(EscherProperties.FILL__PATTERNTEXTURE);
|
|
|
|
|
}
|
|
|
|
|
setPropertyValue(new EscherSimpleProperty( EscherProperties.FILL__FILLTYPE, false, false, FILL_TYPE_SOLID));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getBackgroundImageId(){
|
|
|
|
|
EscherSimpleProperty property = getOptRecord().lookup(EscherProperties.FILL__PATTERNTEXTURE);
|
|
|
|
|
return property == null ? 0 : property.getPropertyValue();
|
|
|
|
|
}
|
2013-02-02 23:10:34 +00:00
|
|
|
|
|
|
|
|
private void setHidden(boolean value){
|
|
|
|
|
EscherSimpleProperty property = getOptRecord().lookup(EscherProperties.GROUPSHAPE__PRINT);
|
|
|
|
|
// see http://msdn.microsoft.com/en-us/library/dd949807(v=office.12).aspx
|
|
|
|
|
if (value){
|
|
|
|
|
setPropertyValue(new EscherSimpleProperty(EscherProperties.GROUPSHAPE__PRINT, false, false, property.getPropertyValue() | GROUP_SHAPE_HIDDEN_MASK));
|
|
|
|
|
} else {
|
|
|
|
|
setPropertyValue(new EscherSimpleProperty(EscherProperties.GROUPSHAPE__PRINT, false, false, property.getPropertyValue() & GROUP_SHAPE_NOT_HIDDEN_MASK));
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-01-01 21:02:22 +00:00
|
|
|
}
|