Maemo: Adapt list of deployables for "aux" project.

This commit is contained in:
Christian Kandeler
2011-05-05 17:43:52 +02:00
parent e751a135db
commit 6b5ce26bf6
3 changed files with 16 additions and 9 deletions

View File

@@ -85,7 +85,7 @@ bool MaemoDeployableListModel::buildModel()
const QStringList deployInfo = QStringList() << remoteDir const QStringList deployInfo = QStringList() << remoteDir
<< QLatin1String("INSTALLS += target"); << QLatin1String("INSTALLS += target");
return addLinesToProFile(deployInfo); return addLinesToProFile(deployInfo);
} else { } else if (m_projectType != AuxTemplate) {
m_deployables.prepend(MaemoDeployable(localExecutableFilePath(), m_deployables.prepend(MaemoDeployable(localExecutableFilePath(),
m_installsList.targetPath)); m_installsList.targetPath));
} }
@@ -209,7 +209,8 @@ void MaemoDeployableListModel::setProFileUpdateSetting(ProFileUpdateSetting upda
bool MaemoDeployableListModel::isEditable(const QModelIndex &index) const bool MaemoDeployableListModel::isEditable(const QModelIndex &index) const
{ {
return index.row() == 0 && index.column() == 1 return m_projectType != AuxTemplate
&& index.row() == 0 && index.column() == 1
&& m_deployables.first().remoteDir.isEmpty(); && m_deployables.first().remoteDir.isEmpty();
} }

View File

@@ -70,6 +70,7 @@ public:
QString projectName() const { return m_projectName; } QString projectName() const { return m_projectName; }
QString projectDir() const; QString projectDir() const;
QString proFilePath() const { return m_proFilePath; } QString proFilePath() const { return m_proFilePath; }
Qt4ProjectType projectType() const { return m_projectType; }
bool isApplicationProject() const { return m_projectType == ApplicationTemplate; } bool isApplicationProject() const { return m_projectType == ApplicationTemplate; }
QString applicationName() const { return m_targetInfo.target; } QString applicationName() const { return m_targetInfo.target; }
bool hasTargetPath() const { return m_hasTargetPath; } bool hasTargetPath() const { return m_hasTargetPath; }

View File

@@ -118,12 +118,16 @@ void MaemoDeployables::createModels(const Qt4ProFileNode *proFileNode)
switch (proFileNode->projectType()) { switch (proFileNode->projectType()) {
case ApplicationTemplate: case ApplicationTemplate:
case LibraryTemplate: case LibraryTemplate:
case ScriptTemplate: { case AuxTemplate: {
MaemoDeployableListModel::ProFileUpdateSetting updateSetting;
if (proFileNode->projectType() == AuxTemplate) {
updateSetting = MaemoDeployableListModel::DontUpdateProFile;
} else {
UpdateSettingsMap::ConstIterator it UpdateSettingsMap::ConstIterator it
= m_updateSettings.find(proFileNode->path()); = m_updateSettings.find(proFileNode->path());
const MaemoDeployableListModel::ProFileUpdateSetting updateSetting updateSetting = it != m_updateSettings.end()
= it != m_updateSettings.end()
? it.value() : MaemoDeployableListModel::AskToUpdateProFile; ? it.value() : MaemoDeployableListModel::AskToUpdateProFile;
}
MaemoDeployableListModel *const newModel MaemoDeployableListModel *const newModel
= new MaemoDeployableListModel(proFileNode, updateSetting, this); = new MaemoDeployableListModel(proFileNode, updateSetting, this);
m_listModels << newModel; m_listModels << newModel;
@@ -201,7 +205,8 @@ QVariant MaemoDeployables::data(const QModelIndex &index, int role) const
|| index.column() != 0) || index.column() != 0)
return QVariant(); return QVariant();
const MaemoDeployableListModel *const model = m_listModels.at(index.row()); const MaemoDeployableListModel *const model = m_listModels.at(index.row());
if (role == Qt::ForegroundRole && !model->hasTargetPath()) { if (role == Qt::ForegroundRole && model->projectType() != AuxTemplate
&& !model->hasTargetPath()) {
QBrush brush; QBrush brush;
brush.setColor(Qt::red); brush.setColor(Qt::red);
return brush; return brush;