add bindings for QGraphicsSceneDragDropEvent
[qtscriptgenerator.git] / generator / shellheadergenerator.h
blobf0d501c4b73eba69fb31686c0b251ed7ed3c7408
1 /****************************************************************************
2 **
3 ** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
4 **
5 ** This file is part of the Qt Script Generator project on Trolltech Labs.
6 **
7 ** This file may be used under the terms of the GNU General Public
8 ** License version 2.0 as published by the Free Software Foundation
9 ** and appearing in the file LICENSE.GPL included in the packaging of
10 ** this file. Please review the following information to ensure GNU
11 ** General Public Licensing requirements will be met:
12 ** http://www.trolltech.com/products/qt/opensource.html
14 ** If you are unsure which license is appropriate for your use, please
15 ** review the following information:
16 ** http://www.trolltech.com/products/qt/licensing.html or contact the
17 ** sales department at sales@trolltech.com.
19 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
20 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
22 ****************************************************************************/
24 #ifndef SHELL_HEADER_GENERATOR
25 #define SHELL_HEADER_GENERATOR
27 #include "shellgenerator.h"
28 #include "metaqtscript.h"
30 class ShellHeaderGenerator : public ShellGenerator
32 Q_OBJECT
34 public:
35 ShellHeaderGenerator(PriGenerator *pri)
37 priGenerator = pri;
40 virtual QString fileNameForClass(const AbstractMetaClass *cls) const;
42 void write(QTextStream &s, const AbstractMetaClass *meta_class);
43 void writeInjectedCode(QTextStream &s, const AbstractMetaClass *meta_class);
46 #endif // SHELL_HEADER_GENERATOR