This file is indexed.

/usr/include/qedjeloader.h is in libqedje-dev 0.4.0+lgpl-3.

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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
/*
 * Copyright (C) 2008 Instituto Nokia de Tecnologia. All rights reserved.
 *
 * This file is part of QEdje.
 *
 * QEdje is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * QEdje is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with QEdje.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef __QEDJE_LOADER_H__
#define __QEDJE_LOADER_H__

#include "qedje.h"


class QEdje;
class QEdjeLoader;
struct QEdjePartCollection;

struct QEdjeColorClass
{
    QString name;
    QColor color;
    QColor color2;
    QColor color3;
};

struct QEdjeData
{
    QString key;
    QString value;
};

struct QEdjeStyleTag
{
    QString key;
    QString font;
    QString value;
    double fontSize;
    QString textClass;
};

struct QEdjeStyle
{
    QString name;
    QList <QEdjeStyleTag *> tags;
    //Evas_Textblock_Style *style;

    inline void addTag(QString key, QString value, QString font,
                       double fontSize, QString textClass);
};

inline void QEdjeStyle::addTag(QString key, QString value, QString font,
                               double fontSize, QString textClass)
{
    QEdjeStyleTag *tag = new QEdjeStyleTag;
    tag->key = key;
    tag->font = font;
    tag->value = value;
    tag->fontSize = fontSize;
    tag->textClass = textClass;
    tags.append(tag);
}

struct QEdjeFontDirectoryEntry
{
    QString entry;
    QString path;
};

struct QEdjeImageDirectoryEntry
{
    int id;
    QString entry;
    int sourceType;
    int sourceParam;
};

struct QEdjePartCollectionDirectoryEntry
{
    int id;
    QString entry;
};

/*!
  \class QEdjeFile
  \brief Loaded edje data file.

  This class represents in memory the edje data file that will be loaded.
 */
class QEdjeFile
{
public:
    QEdjeFile()
    {
        _references = 0;
    }

    ~QEdjeFile();

    QString path;
    int version;
    int featureVer;
    QString compiler;
    QList <QEdjeFontDirectoryEntry *> fontDir;
    QList <QEdjeImageDirectoryEntry *> imageDir;
    QHash <QString, QEdjePartCollection *> collectionHash;
    QList <QEdjePartCollectionDirectoryEntry *> collectionDir;
    QList <QEdjeData *> data;
    QList <QEdjeStyle *> styles;
    QList <QEdjeColorClass *> colorClasses;
    QHash <QString, QString> fontHash; // (key=entry, val=path)
    QHash <QString, QString> dataCache;

    //Edje_Spectrum_Directory        *spectrum_dir;

    //Evas_Hash			  *font_hash;
    //Evas_List                      *collection_cache;
    //Eet_File                       *ef;
    //unsigned int                    free_strings : 1;

private:
    friend class QEdjeLoader;
    friend QDebug operator<<(QDebug dbg, const QEdjeFile &s);

    int _references;
};

QDebug operator<<(QDebug, const QEdjeFile &);


enum QEdjeAspectPrefer {
    None,
    Vertical,
    Horizontal,
    Both
};


struct QEdjePartDescription
{
    struct
    {
        QString name;
        double value;
    } state;

    struct
    {
        int idX;
        int idY;
        QPoint offset;
        QPointF relative;
    } rel1, rel2;

    struct
    {
        QString text;
        QString textClass;
        QString style;
        QString font;
        QPointF align;
        double elipsis;
        int size;
        int idSource;
        int idTextSource;
        bool fitX;
        bool fitY;
        bool minX;
        bool minY;
        bool maxX;
        bool maxY;
    } text;

    struct
    {
        double min;
        double max;
        QEdjeAspectPrefer prefer;
    } aspect;

    struct
    {
        int top;
        int left;
        int right;
        int bottom;
        bool noFill;
    } border;

    struct
    {
        QPoint abs;
        QPointF rel;
        QPoint posAbs;
        QPointF posRel;
        int angle;
        int spread;
        bool smooth;
        // unsigned char  type;
    } fill;

    struct
    {
        int id;
        QString type;
        QString params;
        bool useRel;

        struct {
            QPoint offset;
            QPointF relative;
        } rel1;

        struct {
            QPoint offset;
            QPointF relative;
        } rel2;
    } gradient;

    QSize min;
    QSize max;
    QPoint step;
    bool visible;
    QPointF align;
    bool fixedWidth;
    bool fixedHeight;

    QColor color;
    QColor color2;
    QColor color3;
    QString colorClass;

    int imageId; // the image id to use
    QList <int> tweenList; // list of image ids
};


struct QEdjePart
{
    static const QString PATH_SEPARATOR_STRING;

    enum TypeFlag {
        RECT = 1,
        TEXT = 2,
        IMAGE = 3,
        SWALLOW = 4,
        TEXTBLOCK = 5,
        GRADIENT = 6,
        GROUP = 7
    };

    // char pointer_mode;
    // Evas_Event_Flags       ignore_flags;

    int id;
    QString name;
    TypeFlag type;
    QString source;

    int effect;
    int clipToId;

    struct
    {
        QPoint step;
        QPoint count;
        int eventsId;
        int confineId;
        bool x;
        bool y;
    } dragable;

    bool mouseEvents;
    bool repeatEvents;
    bool preciseIsInside;
    bool useAlternateFontMetrics;

    QEdjePartDescription defaultDescription;
    QList <QEdjePartDescription *> otherDescriptions;
};


struct QEdjeProgram
{
    enum ActionType {
        ACTION_STATE_SET = 1,
        ACTION_STOP = 2,
        ACTION_SIGNAL_EMIT = 3
    };

    /* program id */
    int id;

    /* name of the action */
    QString name;

    /* if signal emission name matches the glob here... */
    QString signal;

    /* if part that emitted this (name) matches this glob */
    QString source;

    /* type - set state, stop action, set drag pos etc. */
    int action;

    /* what state of alternates to apply, NULL = default */
    QString state;

    /* what other state to use - for signal emit action */
    QString state2;

    /* value of state to apply (if multiple names match) */
    double value;

    /* other value for drag actions */
    double value2;


    double inFrom;
    double inRange;

    /* how to tween - linear, sinusoidal etc. */
    int tweenMode;

    /* time to graduate between current and new state */
    double tweenTime;

    /* list of part id or action id (targets of an action) */
    QList <int> targets;

    /* list of actions id's to execute after */
    QList <int> after;
};


struct QEdjePartCollection
{
    int id;
    QString part;
    int references;
    QList <QEdjeData *> data;
    QList <QEdjePart *> parts;
    QList <QEdjeProgram *> programs;
    QSize propMin;
    QSize propMax;

    //Embryo_Program *script; // all the embryo script code for this group
};


class QEdjeLoader
{
public:
    static QEdjeFile *load(const QString &filename);
    static void unload(const QString &filename);

private:
    static QEdjeFile *loadEdjeFile(const char *filename);
};

#endif