diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-07-10 15:17:53 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-07-10 15:17:53 -0500 |
commit | dda8474928bd7276e1fad8fb7a601e7c83ff2bc2 (patch) | |
tree | 7f83910598b33b12730035f086df20b5a53ab99c /tqtinterface/qt4/qmake/property.cpp | |
parent | 6260b6178868c03aab1644bf93b0ef043654bdb0 (diff) | |
download | experimental-dda8474928bd7276e1fad8fb7a601e7c83ff2bc2.tar.gz experimental-dda8474928bd7276e1fad8fb7a601e7c83ff2bc2.zip |
Added TQt4 HEAD
Diffstat (limited to 'tqtinterface/qt4/qmake/property.cpp')
-rw-r--r-- | tqtinterface/qt4/qmake/property.cpp | 189 |
1 files changed, 189 insertions, 0 deletions
diff --git a/tqtinterface/qt4/qmake/property.cpp b/tqtinterface/qt4/qmake/property.cpp new file mode 100644 index 0000000..dfb200e --- /dev/null +++ b/tqtinterface/qt4/qmake/property.cpp @@ -0,0 +1,189 @@ +/**************************************************************************** +** +** Implementation of TQMakeProperty class. +** +** Copyright (C) 2010 Timothy Pearson and (C) 1992-2008 Trolltech ASA. +** +** This file is part of qmake. +** +** This file may be used under the terms of the GNU General +** Public License versions 2.0 or 3.0 as published by the Free +** Software Foundation and appearing in the files LICENSE.GPL2 +** and LICENSE.GPL3 included in the packaging of this file. +** Alternatively you may (at your option) use any later version +** of the GNU General Public License if such license has been +** publicly approved by Trolltech ASA (or its successors, if any) +** and the KDE Free TQt Foundation. +** +** Please review the following information to ensure GNU General +** Public Licensing requirements will be met: +** http://trolltech.com/products/qt/licenses/licensing/opensource/. +** If you are unsure which license is appropriate for your use, please +** review the following information: +** http://trolltech.com/products/qt/licenses/licensing/licensingoverview +** or contact the sales department at sales@trolltech.com. +** +** This file may be used under the terms of the Q Public License as +** defined by Trolltech ASA and appearing in the file LICENSE.TQPL +** included in the packaging of this file. Licensees holding valid TQt +** Commercial licenses may use this file in accordance with the TQt +** Commercial License Agreement provided with the Software. +** +** This file is provided "AS IS" with NO WARRANTY OF ANY KIND, +** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE. Trolltech reserves all rights not granted +** herein. +** +**********************************************************************/ + +#include "property.h" +#include "option.h" +#include <tqsettings.h> +#include <tqdir.h> +#include <tqmap.h> +#include <tqstringlist.h> +#include <stdio.h> + +TQStringList qmake_mkspec_paths(); //project.cpp + +TQMakeProperty::TQMakeProperty() : sett(NULL) +{ +} + +TQMakeProperty::~TQMakeProperty() +{ + delete sett;; + sett = NULL; +} + + +bool TQMakeProperty::initSettings() +{ + if(sett) + return TRUE; + sett = new TQSettings; + return TRUE; +} + +TQString +TQMakeProperty::keyBase(bool version) const +{ + TQString ret = "/TQMake/properties/"; + if(version) + ret += TQString(qmake_version()) + "/"; + return ret; +} + + +TQString +TQMakeProperty::value(TQString v, bool just_check) +{ + if(v == "TQT_INSTALL_PREFIX") { +#ifdef TQT_INSTALL_PREFIX + return TQT_INSTALL_PREFIX; +#elif defined(HAVE_TQCONFIG_CPP) + return qInstallPath(); +#endif + } else if(v == "TQT_INSTALL_DATA") { +#ifdef TQT_INSTALL_DATA + return TQT_INSTALL_DATA; +#elif defined(HAVE_TQCONFIG_CPP) + return qInstallPathData(); +#endif + } else if(v == "TQMAKE_MKSPECS") { + return qmake_mkspec_paths().join(Option::target_mode == Option::TARG_WIN_MODE ? ";" : ":"); + } else if(v == "TQMAKE_VERSION") { + return qmake_version(); + } + + if(initSettings()) { + bool ok; + int slash = v.tqfindRev('/'); + TQString ret = sett->readEntry(keyBase(slash == -1) + v, TQString::null, &ok); + if(!ok) { + TQString version = qmake_version(); + if(slash != -1) { + version = v.left(slash-1); + v = v.mid(slash+1); + } + TQStringList subs = sett->subkeyList(keyBase(FALSE)); + subs.sort(); + for(TQStringList::Iterator it = subs.fromLast(); it != subs.end(); --it) { + if((*it).isEmpty() || (*it) > version) + continue; + ret = sett->readEntry(keyBase(FALSE) + (*it) + "/" + v, TQString::null, &ok); + if(ok) { + if(!just_check) + debug_msg(1, "Fell back from %s -> %s for '%s'.", version.latin1(), + (*it).latin1(), v.latin1()); + return ret; + } + } + } + return ok ? ret : TQString::null; + } + return TQString::null; +} + +bool +TQMakeProperty::hasValue(TQString v) +{ + if(initSettings()) + return !value(v, TRUE).isNull(); + return FALSE; +} + +void +TQMakeProperty::setValue(TQString var, const TQString &val) +{ + if(initSettings()) + sett->writeEntry(keyBase() + var, val); +} + +bool +TQMakeProperty::exec() +{ + bool ret = TRUE; + if(Option::qmake_mode == Option::TQMAKE_TQUERY_PROPERTY) { + if(Option::prop::properties.isEmpty() && initSettings()) { + TQStringList subs = sett->subkeyList(keyBase(FALSE)); + subs.sort(); + for(TQStringList::Iterator it = subs.fromLast(); it != subs.end(); --it) { + if((*it).isEmpty()) + continue; + TQStringList keys = sett->entryList(keyBase(FALSE) + (*it)); + for(TQStringList::Iterator it2 = keys.begin(); it2 != keys.end(); it2++) { + TQString ret = sett->readEntry(keyBase(FALSE) + (*it) + "/" + (*it2)); + if((*it) != qmake_version()) + fprintf(stdout, "%s/", (*it).latin1()); + fprintf(stdout, "%s:%s\n", (*it2).latin1(), ret.latin1()); + } + } + return TRUE; + } + for(TQStringList::Iterator it = Option::prop::properties.begin(); + it != Option::prop::properties.end(); it++) { + if(Option::prop::properties.count() > 1) + fprintf(stdout, "%s:", (*it).latin1()); + if(!hasValue((*it))) { + ret = FALSE; + fprintf(stdout, "**Unknown**\n"); + } else { + fprintf(stdout, "%s\n", value((*it)).latin1()); + } + } + } else if(Option::qmake_mode == Option::TQMAKE_SET_PROPERTY) { + for(TQStringList::Iterator it = Option::prop::properties.begin(); + it != Option::prop::properties.end(); it++) { + TQString var = (*it); + it++; + if(it == Option::prop::properties.end()) { + ret = FALSE; + break; + } + if(!var.startsWith(".")) + setValue(var, (*it)); + } + } + return ret; +} |