📄 addexistantimpl.cpp
字号:
/** 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.* 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 <jl.biord@free.fr>* Program URL : http://qdevelop.org**/#include "addexistantimpl.h"#include "projectmanager.h"#include "misc.h"#include <QLineEdit>#include <QFileDialog>#include <QComboBox>#include <QMessageBox>//AddExistantImpl::AddExistantImpl(ProjectManager * parent) : QDialog(0), m_projectManager(parent){ setupUi(this); connect(okButton, SIGNAL(clicked()), this, SLOT(slotAccept()) ); connect(fileButton, SIGNAL(clicked()), this, SLOT(slotFilesChoice()) ); connect(locationButton, SIGNAL(clicked()), this, SLOT(slotLocationChoice()) ); connect(comboProjects, SIGNAL(activated(QString)), this, SLOT(slotComboProjects(QString)) );}//void AddExistantImpl::slotAccept(){ if( filename->text().isEmpty() ) { QMessageBox::warning(0, "QDevelop", tr("Enter a filename."), tr("Cancel") ); return; } if( copy->isChecked() ) { if( location->text().isEmpty() ) { QMessageBox::warning(0, "QDevelop", tr("Enter a location destination."), tr("Cancel") ); return; } location->setText( location->text().replace("\\", "/") ); if( location->text().right(1) != "/" ) location->setText( location->text()+"/" ); QString newList; foreach(QString filenamestr, filename->text().split(",")) { filenamestr = filenamestr.remove("\"").simplified(); filenamestr.replace("\\", "/"); if( !QFile::exists( filenamestr ) ) { QMessageBox::warning(0, "QDevelop", tr("The file %1 doesn't exist.").arg(filenamestr), tr("Cancel") ); return; } QString f = filenamestr.section("/", -1, -1); if( !QFile::copy(filenamestr, location->text()+f) ) { QMessageBox::warning(0, "QDevelop", tr("Unable to copy %1").arg(filenamestr), tr("Cancel") ); return; } newList += "\"" + location->text()+f + "\","; } filename->setText( newList ); } accept();}//void AddExistantImpl::slotLocationChoice(){ QString s = QFileDialog::getExistingDirectory( this, tr("Choose a directory"), m_projectDirectory, QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks); if( s.isEmpty() ) { // Cancel is clicked return; } location->setText( s );}//void AddExistantImpl::slotFilesChoice(){ QStringList s = QFileDialog::getOpenFileNames( this, tr("Choose the file to add"), m_projectDirectory, tr("Files (*.cpp *.h *.ui *.qrc *.ts)") ); if( s.isEmpty() ) { // Cancel is clicked return; } QString line; foreach(QString file, s) line += "\"" + file + "\", "; if( line.length() ) line = line.mid(0, line.length() - 2); filename->setText( line ); }//void AddExistantImpl::slotComboProjects(QString /*projectName*/){ QVariant variant = comboProjects->itemData( comboProjects->currentIndex() ); //QTreeWidgetItem *item = reinterpret_cast<QTreeWidgetItem*>(variant.toUInt()); QTreeWidgetItem *item = (QTreeWidgetItem*)variantToItem(variant); m_projectDirectory = m_projectManager->projectDirectory( item );}//
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -