Skip to content

Commit 168cc2e

Browse files
committed
Add type SEGraphicContentItem
1 parent 4c8e855 commit 168cc2e

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/main/java/SELayer.mdl

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,12 @@ type SEMarkedContent extends SEGroupedContent {
245245
type SEUnmarkedContent extends SEGroupedContent {
246246
}
247247

248+
% graphic content item (text, image or lineart)
249+
type SEGraphicContentItem extends SESimpleContentItem {
250+
}
251+
248252
% text content item (originated from operators Tj and TJ)
249-
type SETextItem extends SESimpleContentItem {
253+
type SETextItem extends SEGraphicContentItem {
250254
% font name of text item
251255
property fontName: String;
252256
% scale factor of text item
@@ -256,15 +260,15 @@ type SETextItem extends SESimpleContentItem {
256260
}
257261

258262
% lineart content item (originated from path painting operators)
259-
type SELineArtItem extends SESimpleContentItem {
263+
type SELineArtItem extends SEGraphicContentItem {
260264
}
261265

262266
% shading content item (originated from operator sh)
263267
type SEShadingItem extends SESimpleContentItem {
264268
}
265269

266270
% image content item (inline or image XObject)
267-
type SEImageItem extends SESimpleContentItem {
271+
type SEImageItem extends SEGraphicContentItem {
268272
}
269273

270274
% inline image content item

0 commit comments

Comments
 (0)