compile
[kdegraphics.git] / okular / core / script / kjs_field_p.h
blobbc0a4628f555512c7ed9701a85dd4cf61fd062a6
1 /***************************************************************************
2 * Copyright (C) 2008 by Pino Toscano <pino@kde.org> *
3 * Copyright (C) 2008 by Harri Porten <porten@kde.org> *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 ***************************************************************************/
11 #ifndef OKULAR_SCRIPT_KJS_FIELD_P_H
12 #define OKULAR_SCRIPT_KJS_FIELD_P_H
14 class KJSContext;
15 class KJSObject;
17 namespace Okular {
19 class FormField;
20 class Page;
22 class JSField
24 public:
25 static void initType( KJSContext *ctx );
26 static KJSObject wrapField( KJSContext *ctx, FormField *field, Page *page );
27 static void clearCachedFields();
32 #endif