/* * This file is part of QDevelop, an open-source cross-platform IDE * Copyright (C) 2006 Jean-Luc Biord * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Contact e-mail: Jean-Luc Biord * Program URL : http://qdevelop.org * */ #include "addsetgetimpl.h" #include "mainimpl.h" #include "treeclasses.h" #include "tabwidget.h" #include "editor.h" #include #include #include #include // AddSetGetImpl::AddSetGetImpl(MainImpl * parent, TreeClasses *treeClasses, QString declaration, QString implementation, QString classname, QString type, QString variableName) : QDialog(parent), m_mainImpl(parent), m_treeClasses(treeClasses), m_declaration(declaration), m_implementation(implementation), m_classname(classname), m_type(type), m_variableName(variableName) { setupUi(this); groupBox->setTitle( groupBox->title() + " " + m_variableName ); setName->setText( "set"+m_variableName.toUpper().left(1)+m_variableName.mid(1) ); getName->setText( "get"+m_variableName.toUpper().left(1)+m_variableName.mid(1) ); } // void AddSetGetImpl::on_okButton_clicked() { if ( get->isChecked() && getName->text().isEmpty() ) { QMessageBox::warning(this, "QDevelop", "The get method name is empty", tr("Cancel") ); return; } if ( set->isChecked() && setName->text().isEmpty() ) { QMessageBox::warning(this, "QDevelop", "The set method name is empty", tr("Cancel") ); return; } // Add get/set methods QString insertedText; if ( get->isChecked() ) { if ( getInline->isChecked() || m_implementation.isEmpty() ) { insertedText = "\t" + m_type + " " + getName->text() + "() { return " + m_variableName + "; }"; insertInDeclaration("public", insertedText); } else { insertedText = "\t" + m_type + " " + getName->text() + "();"; insertInDeclaration("public", insertedText); insertedText = m_type + " " + m_classname+"::" + getName->text() + "()\n{\n\treturn " + m_variableName + ";\n}\n"; insertInImplementation(insertedText); } } if ( set->isChecked() ) { if ( setInline->isChecked() || m_implementation.isEmpty() ) { insertedText = "\tvoid " + setName->text() + "( "+m_type+" value) { " + m_variableName + " = value; }"; insertInDeclaration("public", insertedText); } else { insertedText = "\tvoid " + setName->text() + "( "+m_type+" value);"; insertInDeclaration("public", insertedText); insertedText = "void " + m_classname+"::"+setName->text() + "("+m_type+" value)\n{\n\t" + m_variableName + " = value;\n}\n"; insertInImplementation(insertedText); } } accept(); } // void AddSetGetImpl::insertInDeclaration(QString scope, QString insertedText) { QStringList lines; Editor *editor = 0; foreach(Editor *ed, m_mainImpl->allEditors() ) { if ( ed->filename() == m_declaration.section("|", 0, 0)) { editor = ed; } } // if ( editor ) { // Get content of opened editor lines = editor->toPlainText().split("\n"); } else { // The file is not opened, get content from file QFile file(m_declaration.section("|", 0, 0)); file.open(QIODevice::ReadOnly | QIODevice::Text); lines = QString(file.readAll()).split("\n"); file.close(); } int indexScope = -1; int indexBracket = -1; int indexQ_OBJECT = -1; for (int ind = m_declaration.section("|", 1, 1).toInt(); lines.count()>0 && indinsertText(insertedText, afterLine+1); } else { foreach(QString s, insertedText.split("\n") ) { lines.insert(afterLine++, s); } QFile file(m_declaration.section("|", 0, 0)); file.open(QIODevice::WriteOnly | QIODevice::Text); file.write( lines.join("\n").toLocal8Bit() ); file.close(); m_mainImpl->slotUpdateClasses(m_declaration.section("|", 0, 0), lines.join("\n").toLocal8Bit()); } } // void AddSetGetImpl::insertInImplementation(QString insertedText) { QStringList lines; Editor *editor = 0; foreach(Editor *ed, m_mainImpl->allEditors() ) { if ( ed->filename() == m_implementation.section("|", 0, 0)) { editor = ed; } } // if ( editor ) { // Get content of opened editor insertedText += "\n"; editor->insertText(insertedText, -1); } else { // The file is not opened, get content from file QFile file(m_implementation.section("|", 0, 0)); file.open(QIODevice::ReadOnly | QIODevice::Text); lines = QString(file.readAll()).split("\n"); file.close(); foreach(QString s, insertedText.split("\n") ) { lines.append(s); } file.open(QIODevice::WriteOnly | QIODevice::Text); file.write( lines.join("\n").toLocal8Bit() ); file.close(); m_mainImpl->slotUpdateClasses(m_implementation.section("|", 0, 0), lines.join("\n").toLocal8Bit()); } }