This file is indexed.

/usr/include/libetonyek-0.0/libetonyek/KEYPresentationInterface.h is in libetonyek-dev 0.0.3-0ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
 * This file is part of the libetonyek project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#ifndef LIBETONYEK_KEYPRESENTATIONINTERFACE_H_INCLUDED
#define LIBETONYEK_KEYPRESENTATIONINTERFACE_H_INCLUDED

#include <libwpd/libwpd.h>

namespace libetonyek
{

/** Interface for import of presentations.
  */
class KEYPresentationInterface
{
public:
  virtual ~KEYPresentationInterface() {}

  // none of the other callback functions will be called before this function is called
  virtual void startDocument(const ::WPXPropertyList &propList) = 0;

  // none of the other callback functions will be called after this function is called
  virtual void endDocument() = 0;

  /**
  Called when all document metadata should be set. This is always the first callback made.
  \param propList Property list for the metadata. May contain:
  \li \c dc:creator
  \li \c dc:language The document's keywords
  \li \c dc:publisher The document's publisher
  \li \c dc:source
  \li \c dc:subject The document's subject
  \li \c dc:type The document's type
  \li \c dcterms:available Date when the document was completed
  \li \c dcterms:issued: Date of the version of the document
  \li \c libwpd:abstract Abstract of the document's contents
  \li \c libwpd:account Account
  \li \c libwpd:address Address
  \li \c libwpd:attachments
  \li \c libwpd:authorization
  \li \c libwpd:bill-to
  \li \c libwpd:blind-copy
  \li \c libwpd:carbon-copy
  \li \c libwpd:checked-by
  \li \c libwpd:client
  \li \c libwpd:comments
  \li \c libwpd:department
  \li \c libwpd:descriptive-name The descriptive name for the document
  \li \c libwpd:descriptive-type The descriptive type for the document
  \li \c libwpd:destination
  \li \c libwpd:disposition
  \li \c libwpd:division
  \li \c libwpd:document-number
  \li \c libwpd:editor
  \li \c libwpd:forward-to
  \li \c libwpd:group
  \li \c libwpd:mail-stop
  \li \c libwpd:matter
  \li \c libwpd:office
  \li \c libwpd:owner
  \li \c libwpd:project
  \li \c libwpd:purpose
  \li \c libwpd:received-from
  \li \c libwpd:recorded-by
  \li \c libwpd:recorded-date Date when the document was recorded
  \li \c libwpd:reference
  \li \c libwpd:revision-notes
  \li \c libwpd:revision-number
  \li \c libwpd:section
  \li \c libwpd:security
  \li \c libwpd:status
  \li \c libwpd:telephone-number
  \li \c libwpd:version-notes
  \li \c libwpd:version-number
  \li \c meta:creation-date Document creation date
  \li \c meta:initial-creator The document's author
  \li \c meta:keyword The document's keywords
  \li \c
  */
  virtual void setDocumentMetaData(const ::WPXPropertyList &propList) = 0;

  virtual void startSlide(const ::WPXPropertyList &propList) = 0;

  virtual void endSlide() = 0;

  virtual void setStyle(const ::WPXPropertyList &propList, const ::WPXPropertyListVector &gradient) = 0;

  virtual void startLayer(const ::WPXPropertyList &propList) = 0;

  virtual void endLayer() = 0;

  virtual void startEmbeddedGraphics(const ::WPXPropertyList &propList) = 0;

  virtual void endEmbeddedGraphics() = 0;

  virtual void startGroup(const ::WPXPropertyList &propList) = 0;

  virtual void endGroup() = 0;

  // Different primitive shapes
  virtual void drawRectangle(const ::WPXPropertyList &propList) = 0;

  virtual void drawEllipse(const ::WPXPropertyList &propList) = 0;

  virtual void drawPolygon(const ::WPXPropertyListVector &vertices) = 0;

  virtual void drawPolyline(const ::WPXPropertyListVector &vertices) = 0;

  virtual void drawPath(const ::WPXPropertyListVector &path) = 0;

  // Embedded binary/raster data
  virtual void drawGraphicObject(const ::WPXPropertyList &propList, const ::WPXBinaryData &binaryData) = 0;

  /** Draw a connector between two objects.
    */
  virtual void drawConnector(const ::WPXPropertyList &propList, const ::WPXPropertyListVector &path) = 0;

  /** Start a text object.
    */
  virtual void startTextObject(const ::WPXPropertyList &propList, const ::WPXPropertyListVector &path) = 0;

  /** End a text object.
    */
  virtual void endTextObject() = 0;

  /**
  Called when a TAB character should be inserted
  */
  virtual void insertTab() = 0;

  /**
  Called when an explicit space should be inserted
  */
  virtual void insertSpace() = 0;

  /**
  Called when a string of text should be inserted
  \param text A textbuffer encoded as a UTF8 string
  */
  virtual void insertText(const WPXString &text) = 0;

  /**
  Called when a line break should be inserted
  */
  virtual void insertLineBreak() = 0;

  /**
  Called when a field should be inserted. Field types may include:
  \li \c text:page-number Current page number
  \li \c text:page-count Total # of pages in document
  \param propList Defines a set of properties for the field. May contain:
  \li \c style:num-format Type of page number (for page number)
  */
  virtual void insertField(const WPXString &type, const ::WPXPropertyList &propList) = 0;

  /**
  Called when a new ordered list level should be opened
  \param propList Defines a set of properties for the list. May contain:
  \li \c libwpd:level The level of the list in the hierarchy
  \li \c style:num-format Type of list
  \li \c style:num-prefix Text that comes before the number in the list
  \li \c style:num-suffix Text that comes after the number in the list
  \li \c text:start-value The starting number of the list
  \li \c text:min-label-width The distance between the list label and the actual text, stored in inches
  \li \c text:space-before The indentation level of the lists, stored in inches
  */
  virtual void openOrderedListLevel(const ::WPXPropertyList &propList) = 0;

  /**
  Called when a new unordered list level should be opened
  \param propList Defines a set of properties for the list level. May contain:
  \li \c libwpd:level The level of the list in the hierarchy
  \li \c text:bullet-char The string that should be used as a bullet
  \li \c text:min-label-width The distance between the bullet and the actual text, stored in inches
  \li \c text:space-before The indentation level of the lists, stored in inches
  */
  virtual void openUnorderedListLevel(const ::WPXPropertyList &propList) = 0;

  /**
  Called when an unordered list level should be closed
  */
  virtual void closeOrderedListLevel() = 0;

  /**
  Called when an ununordered list level should be closed
  */
  virtual void closeUnorderedListLevel() = 0;

  /**
  Called when a list element should be opened
  \param propList Property list for the paragraph. May contain:
  \li \c fo:text-align The justification of this paragraph (left, center, end, full, or justify)
  \li \c fo:margin-left The left indentation of this paragraph, in inches
  \li \c fo:margin-right The right indentation of this paragraph, in inches
  \li \c fo:margin-top The amount of extra spacing to be placed before the paragraph, in inches
  \li \c fo:margin-bottom The amount of extra spacing to be placed after the paragraph, in inches
  \li \c fo:text-indent The indentation of first line, in inches (difference relative to margin-left)
  \li \c fo:line-height The amount of spacing between lines, in number of lines (1.0 is single spacing)
  \li \c fo:break-before Whether this paragraph should be placed in a new column or page (the value is set to column or page if so)
  \param tabStops List of tabstop definitions for the paragraph. If the list is empty, default tabstop definition should be used. Each tab stop may contain:
  \li \c style:type Type of tab (left, right, center, or char)
  \li \c style:char Alingnment character for char aligned tabs
  \li \c style:leader-text The leader character
  \li \c style:position Position of the tab
  */
  virtual void openListElement(const ::WPXPropertyList &propList, const ::WPXPropertyListVector &tabStops) = 0;

  /**
  Called when a list element should be closed
  */
  virtual void closeListElement() = 0;

  /**
  Called when a new paragraph is opened. This (or openListElement) will always be called before any text or span is placed into the document.
  \param propList Property list for the paragraph. May contain:
  \li \c fo:text-align The justification of this paragraph (left, center, end, full, or justify)
  \li \c fo:margin-left The left indentation of this paragraph, in inches
  \li \c fo:margin-right The right indentation of this paragraph, in inches
  \li \c fo:margin-top The amount of extra spacing to be placed before the paragraph, in inches
  \li \c fo:margin-bottom The amount of extra spacing to be placed after the paragraph, in inches
  \li \c fo:text-indent The indentation of first line, in inches (difference relative to margin-left)
  \li \c fo:line-height The amount of spacing between lines, in number of lines (1.0 is single spacing)
  \li \c fo:break-before Whether this paragraph should be placed in a new column or page (the value is set to column or page if so)
  \param tabStops List of tabstop definitions for the paragraph. If the list is empty, default tabstop definition should be used. Each tab stop may contain:
  \li \c style:type Type of tab (left, right, center, or char)
  \li \c style:char Alingnment character for char aligned tabs
  \li \c style:leader-text The leader character
  \li \c style:position Position of the tab
  */
  virtual void openParagraph(const ::WPXPropertyList &propList, const ::WPXPropertyListVector &tabStops) = 0;

  /**
  Called when a paragraph is closed.
  */
  virtual void closeParagraph() = 0;

  /**
  Called when a text span is opened
  \param propList Property list for the span. May contain:
  \li \c fo:font-style Font style (italic or normal)
  \li \c fo:font-weight Font style (bold or normal)
  \li \c style:text-line-through-type (double or single, if present)
  \li \c style:text-underline-type (double or single, if present)
  \li \c style:text-outline (true or false)
  \li \c fo:font-variant (small-caps, if present)
  \li \c style:font-name The name of the font used in the span, a text string in ascii
  \li \c fo:font-size The size of the font used in the span, in points (72 points per inch)
  \li \c fo:color The color of the font used in the span (encoded in hex: \#RRGGBB)
  \li \c fo:background-color The background color of the text in the span (encoded in hex: \#RRGGBB)
  \li \c style:text-blinking Whether the text should blink (true or false)
  \li \c fo:text-shadow
  */
  virtual void openSpan(const ::WPXPropertyList &propList) = 0;

  /**
  Called when a text span is closed
  */
  virtual void closeSpan() = 0;

  /**
  Called when a table should be opened
  \param propList Defines a set of properties for the table. May contain:
  \li \c table:align The alignment (left, right, center, or margins)
  \li \c fo:margin-left The left indentation of the table, in inches
  \li \c fo:margin-right The right indentation of the table, in inches
  \li \c style:width Total width of the table, in inches
  \li \c fo:break-before Whether this table should be placed in a new column or page (the value is set to column or page if so)
  \param columns Column definitions for the table. May contain
  \li \c style:column-width Width of a column, in inches
  */
  virtual void openTable(const ::WPXPropertyList &propList, const ::WPXPropertyListVector &columns) = 0;
  /**
  Called when a new table row is opened
  \param propList Defines a set of properties for the table row. May contain:
  \li \c style:row-height The row's height, in inches
  \li \c style:min-row-height The row's minimum height, in inches
  \li \c libwpd:is-header-row This row contains headings of columns and should repeat at every page (for tables that span several pages)
  */
  virtual void openTableRow(const ::WPXPropertyList &propList) = 0;
  /**
  Called when the current table row is closed
  */
  virtual void closeTableRow() = 0;
  /**
  Called when a new table cell is opened
  \param propList Property list for the table cell. May contain:
  \li \c libwpd:column Number of the column in which the cell is positioned
  \li \c libwpd:row Number of the row in which the cell is positioned
  \li \c table:number-columns-spanned Number of columns that the cell spans
  \li \c table:number-rows-spanned Number of rows that the cell spans
  \li \c fo:border-left Properties of the left border of the cell
  \li \c fo:border-right Properties of the right border of the cell
  \li \c fo:border-top Properties of the top border of the cell
  \li \c fo:border-bottom Properties of the bottom border of the cell
  \li \c fo:background-color Color of the cell (encoded in hex: \#RRGGBB)
  \li \c style:vertical-align Vertical alignment of the content in the cell (top, middle, or bottom)
  */
  virtual void openTableCell(const ::WPXPropertyList &propList) = 0;
  /**
  Called when the current table cell is closed
  */
  virtual void closeTableCell() = 0;
  /**
  Called when a covered (spanned by another cell in the table) table cell is opened
  \param propList Property list for the table cell. May contain:
  \li \c libwpd:column Number of the column in which the cell is positioned
  \li \c libwpd:row Number of the row in which the cell is positioned
  */
  virtual void insertCoveredTableCell(const ::WPXPropertyList &propList) = 0;
  /**
  Called when the current table is closed
  */
  virtual void closeTable() = 0;

  /** Start a comment.
    */
  virtual void startComment(const ::WPXPropertyList &propList) = 0;

  /** End a comment.
    */
  virtual void endComment() = 0;

  /** Start slide notes.
    */
  virtual void startNotes(const ::WPXPropertyList &propList) = 0;

  /** End slide notes.
    */
  virtual void endNotes() = 0;
};

}

#endif // LIBETONYEK_KEYPRESENTATIONINTERFACE_H_INCLUDED

/* vim:set shiftwidth=2 softtabstop=2 expandtab: */