OSDN Git Service

648a00a5f91dc7a7d22fc20df54da1853fbd3c07
[qt-creator-jp/qt-creator-jp.git] / src / plugins / cppeditor / cppfilewizard.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #include "cppfilewizard.h"
35 #include "cppeditor.h"
36 #include "cppeditorconstants.h"
37
38 #include <cpptools/abstracteditorsupport.h>
39 #include <utils/codegeneration.h>
40
41 #include <QtCore/QTextStream>
42 #include <QtCore/QFileInfo>
43 #include <QtCore/QDebug>
44
45 using namespace CppEditor;
46 using namespace CppEditor::Internal;
47
48 enum { debugWizard = 0 };
49
50 CppFileWizard::CppFileWizard(const BaseFileWizardParameters &parameters,
51                              FileType type,
52                              QObject *parent) :
53     Core::StandardFileWizard(parameters, parent),
54     m_type(type)
55 {
56 }
57
58 Core::GeneratedFiles CppFileWizard::generateFilesFromPath(const QString &path,
59                                                           const QString &name,
60                                                           QString * /*errorMessage*/) const
61
62 {
63     const QString mimeType = m_type == Source ? QLatin1String(Constants::CPP_SOURCE_MIMETYPE) : QLatin1String(Constants::CPP_HEADER_MIMETYPE);
64     const QString fileName = Core::BaseFileWizard::buildFileName(path, name, preferredSuffix(mimeType));
65
66     Core::GeneratedFile file(fileName);
67     file.setContents(fileContents(m_type, fileName));
68     file.setAttributes(Core::GeneratedFile::OpenEditorAttribute);
69     return Core::GeneratedFiles() << file;
70 }
71
72 QString CppFileWizard::fileContents(FileType type, const QString &fileName) const
73 {
74     QString contents;
75     QTextStream str(&contents);
76     str << CppTools::AbstractEditorSupport::licenseTemplate(fileName);
77     switch (type) {
78     case Header: {
79             const QString guard = Utils::headerGuard(fileName);
80             str << QLatin1String("#ifndef ") << guard
81                 << QLatin1String("\n#define ") <<  guard <<  QLatin1String("\n\n#endif // ")
82                 << guard << QLatin1String("\n");
83         }
84         break;
85     case Source:
86         str << '\n';
87         break;
88     }
89     return contents;
90 }