Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>pull/3/head
parent
2f6b317ede
commit
a0148cf62f
@ -1 +0,0 @@
|
||||
debian/patches
|
@ -1 +0,0 @@
|
||||
series
|
@ -1 +0,0 @@
|
||||
2
|
@ -1,2 +0,0 @@
|
||||
disable_check_for_update.patch
|
||||
qsci_rename.patch
|
@ -1,688 +0,0 @@
|
||||
/***************************************************************************
|
||||
* Copyright (C) 2006-2012 by Thomas Schweitzer *
|
||||
* thomas-schweitzer(at)arcor.de *
|
||||
* *
|
||||
* This program is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License version 2.0 as *
|
||||
* published by the Free Software Foundation. *
|
||||
* *
|
||||
* 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 in the file LICENSE.GPL; if not, write to the *
|
||||
* Free Software Foundation, Inc., *
|
||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||
***************************************************************************/
|
||||
|
||||
#include "UiGuiSettings.h"
|
||||
|
||||
#include "SettingsPaths.h"
|
||||
|
||||
#include <QSettings>
|
||||
#include <QPoint>
|
||||
#include <QSize>
|
||||
#include <QDir>
|
||||
#include <QDate>
|
||||
#include <QStringList>
|
||||
#include <QCoreApplication>
|
||||
#include <QMetaMethod>
|
||||
#include <QMetaProperty>
|
||||
#include <QWidget>
|
||||
|
||||
//! \defgroup grp_Settings All concerning the settings.
|
||||
|
||||
/*!
|
||||
\class UiGuiSettings
|
||||
\ingroup grp_Settings
|
||||
\brief Handles the settings of the program. Reads them on startup and saves them on exit.
|
||||
Is a singleton class and can only be accessed via getInstance().
|
||||
*/
|
||||
|
||||
// Inits the single class instance pointer.
|
||||
QWeakPointer<UiGuiSettings> UiGuiSettings::_instance;
|
||||
|
||||
|
||||
/*!
|
||||
\brief The constructor for the settings.
|
||||
*/
|
||||
UiGuiSettings::UiGuiSettings() : QObject() {
|
||||
// Create the main application settings object from the UniversalIndentGUI.ini file.
|
||||
_qsettings = new QSettings(SettingsPaths::getSettingsPath() + "/UniversalIndentGUI.ini", QSettings::IniFormat, this);
|
||||
|
||||
_indenterDirctoryStr = SettingsPaths::getGlobalFilesPath() + "/indenters";
|
||||
readAvailableTranslations();
|
||||
initSettings();
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief Returns the instance of the settings class. If no instance exists, ONE will be created.
|
||||
*/
|
||||
QSharedPointer<UiGuiSettings> UiGuiSettings::getInstance() {
|
||||
QSharedPointer<UiGuiSettings> sharedInstance = _instance.toStrongRef();
|
||||
if ( sharedInstance.isNull() ) {
|
||||
// Create the settings object, which loads all UiGui settings from a file.
|
||||
sharedInstance = QSharedPointer<UiGuiSettings>(new UiGuiSettings());
|
||||
_instance = sharedInstance.toWeakRef();
|
||||
}
|
||||
|
||||
return sharedInstance;
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief The destructor saves the settings to a file.
|
||||
*/
|
||||
UiGuiSettings::~UiGuiSettings() {
|
||||
// Convert the language setting from an integer index to a string.
|
||||
int index = _qsettings->value("UniversalIndentGUI/language", 0).toInt();
|
||||
if ( index < 0 || index >= _availableTranslations.size() )
|
||||
index = 0;
|
||||
|
||||
_qsettings->setValue( "UniversalIndentGUI/language", _availableTranslations.at(index) );
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief Scans the translations directory for available translation files and
|
||||
stores them in the QList \a _availableTranslations.
|
||||
*/
|
||||
void UiGuiSettings::readAvailableTranslations() {
|
||||
QString languageShort;
|
||||
QStringList languageFileList;
|
||||
|
||||
// English is the default language. A translation file does not exist but to have a menu entry, added here.
|
||||
languageFileList << "universalindent_en.qm";
|
||||
|
||||
// Find all translation files in the "translations" directory.
|
||||
QDir translationDirectory = QDir( SettingsPaths::getGlobalFilesPath() + "/translations" );
|
||||
languageFileList << translationDirectory.entryList( QStringList("universalindent_*.qm") );
|
||||
|
||||
// Loop for each found translation file
|
||||
foreach ( languageShort, languageFileList ) {
|
||||
// Remove the leading string "universalindent_" from the filename.
|
||||
languageShort.remove(0,16);
|
||||
// Remove trailing file extension ".qm".
|
||||
languageShort.chop(3);
|
||||
|
||||
_availableTranslations.append(languageShort);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief Returns a list of the mnemonics of the available translations.
|
||||
*/
|
||||
QStringList UiGuiSettings::getAvailableTranslations() {
|
||||
return _availableTranslations;
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief Returns the value of the by \a settingsName defined setting as QVariant.
|
||||
|
||||
If the named setting does not exist, 0 is being returned.
|
||||
*/
|
||||
QVariant UiGuiSettings::getValueByName(QString settingName) {
|
||||
return _qsettings->value("UniversalIndentGUI/" + settingName);
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief Loads the settings for the main application.
|
||||
|
||||
Settings are for example last selected indenter, last loaded source code file and so on.
|
||||
*/
|
||||
bool UiGuiSettings::initSettings()
|
||||
{
|
||||
// Read the version string saved in the settings file.
|
||||
_qsettings->setValue( "UniversalIndentGUI/version", _qsettings->value("UniversalIndentGUI/version", "") );
|
||||
|
||||
// Read windows last size and position from the settings file.
|
||||
_qsettings->setValue( "UniversalIndentGUI/maximized", _qsettings->value("UniversalIndentGUI/maximized", false) );
|
||||
_qsettings->setValue( "UniversalIndentGUI/position", _qsettings->value("UniversalIndentGUI/position", QPoint(50, 50)) );
|
||||
_qsettings->setValue( "UniversalIndentGUI/size", _qsettings->value("UniversalIndentGUI/size", QSize(800, 600)) );
|
||||
|
||||
// Read last selected encoding for the opened source code file.
|
||||
_qsettings->setValue( "UniversalIndentGUI/encoding", _qsettings->value("UniversalIndentGUI/encoding", "UTF-8") );
|
||||
|
||||
// Read maximum length of list for recently opened files.
|
||||
_qsettings->setValue( "UniversalIndentGUI/recentlyOpenedListSize", _qsettings->value("UniversalIndentGUI/recentlyOpenedListSize", 5) );
|
||||
|
||||
// Read if last opened source code file should be loaded on startup.
|
||||
_qsettings->setValue( "UniversalIndentGUI/loadLastSourceCodeFileOnStartup", _qsettings->value("UniversalIndentGUI/loadLastSourceCodeFileOnStartup", true) );
|
||||
|
||||
// Read last opened source code file from the settings file.
|
||||
_qsettings->setValue( "UniversalIndentGUI/lastSourceCodeFile", _qsettings->value("UniversalIndentGUI/lastSourceCodeFile", _indenterDirctoryStr+"/example.cpp") );
|
||||
|
||||
// Read last selected indenter from the settings file.
|
||||
int selectedIndenter = _qsettings->value("UniversalIndentGUI/selectedIndenter", 0).toInt();
|
||||
if ( selectedIndenter < 0 ) {
|
||||
selectedIndenter = 0;
|
||||
}
|
||||
_qsettings->setValue( "UniversalIndentGUI/selectedIndenter", selectedIndenter );
|
||||
|
||||
// Read if syntax highlighting is enabled.
|
||||
_qsettings->setValue( "UniversalIndentGUI/SyntaxHighlightingEnabled", _qsettings->value("UniversalIndentGUI/SyntaxHighlightingEnabled", true) );
|
||||
|
||||
// Read if white space characters should be displayed.
|
||||
_qsettings->setValue( "UniversalIndentGUI/whiteSpaceIsVisible", _qsettings->value("UniversalIndentGUI/whiteSpaceIsVisible", false) );
|
||||
|
||||
// Read if indenter parameter tool tips are enabled.
|
||||
_qsettings->setValue( "UniversalIndentGUI/indenterParameterTooltipsEnabled", _qsettings->value("UniversalIndentGUI/indenterParameterTooltipsEnabled", true) );
|
||||
|
||||
// Read the tab width from the settings file.
|
||||
_qsettings->setValue( "UniversalIndentGUI/tabWidth", _qsettings->value("UniversalIndentGUI/tabWidth", 4) );
|
||||
|
||||
// Read the last selected language and stores the index it has in the list of available translations.
|
||||
_qsettings->setValue( "UniversalIndentGUI/language", _availableTranslations.indexOf( _qsettings->value("UniversalIndentGUI/language", "").toString() ) );
|
||||
|
||||
// Read the update check settings from the settings file.
|
||||
_qsettings->setValue( "UniversalIndentGUI/CheckForUpdate", _qsettings->value("UniversalIndentGUI/CheckForUpdate", true) );
|
||||
_qsettings->setValue( "UniversalIndentGUI/LastUpdateCheck", _qsettings->value("UniversalIndentGUI/LastUpdateCheck", QDate(1900,1,1)) );
|
||||
|
||||
// Read the main window state.
|
||||
_qsettings->setValue( "UniversalIndentGUI/MainWindowState", _qsettings->value("UniversalIndentGUI/MainWindowState", QByteArray()) );
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief Register the by \a propertyName defined property of \a obj to be connected to the setting defined by \a settingName.
|
||||
|
||||
The \a propertyName must be one of those that are listed in the Qt "Properties" documentation section of a Qt Object.
|
||||
All further needed info is retrieved via the \a obj's MetaObject, like the to the property bound signal.
|
||||
*/
|
||||
bool UiGuiSettings::registerObjectProperty( QObject *obj, const QString &propertyName, const QString &settingName )
|
||||
{
|
||||
const QMetaObject *metaObject = obj->metaObject();
|
||||
bool connectSuccess = false;
|
||||
|
||||
// Connect to the objects destroyed signal, so that it will be correctly unregistered.
|
||||
connectSuccess = connect(obj, SIGNAL(destroyed(QObject*)), this, SLOT(unregisterObjectProperty(QObject*)));
|
||||
|
||||
int indexOfProp = metaObject->indexOfProperty( qPrintable(propertyName) );
|
||||
if ( connectSuccess && indexOfProp > -1 ) {
|
||||
QMetaProperty mProp = metaObject->property(indexOfProp);
|
||||
|
||||
// Connect to the property's value changed signal.
|
||||
if ( mProp.hasNotifySignal() ) {
|
||||
QMetaMethod signal = mProp.notifySignal();
|
||||
//QString teststr = qPrintable(SIGNAL() + QString(signal.signature()));
|
||||
// The command "SIGNAL() + QString(signal.signature())" assembles the signal methods signature to a valid Qt SIGNAL.
|
||||
connectSuccess = connect(obj, qPrintable(SIGNAL() + QString(signal.signature())), this, SLOT(handleObjectPropertyChange()));
|
||||
}
|
||||
|
||||
if ( connectSuccess ) {
|
||||
_registeredObjectProperties[obj] = QStringList() << propertyName << settingName;
|
||||
}
|
||||
else {
|
||||
//TODO: Write a debug warning to the log.
|
||||
disconnect(obj, SIGNAL(destroyed(QObject*)), this, SLOT(unregisterObjectProperty(QObject*)));
|
||||
return false;
|
||||
}
|
||||
|
||||
// If setting already exists, set the objects property to the setting value.
|
||||
if ( _qsettings->contains("UniversalIndentGUI/" + settingName) ) {
|
||||
mProp.write(obj, _qsettings->value("UniversalIndentGUI/" + settingName));
|
||||
}
|
||||
// Otherwise add the setting and set it to the value of the objects property.
|
||||
else {
|
||||
_qsettings->setValue("UniversalIndentGUI/" + settingName, mProp.read(obj));
|
||||
}
|
||||
}
|
||||
else {
|
||||
//TODO: Write a debug warning to the log.
|
||||
disconnect(obj, SIGNAL(destroyed(QObject*)), this, SLOT(unregisterObjectProperty(QObject*)));
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief Searches the child QObjects of \a obj for a property name and setting name definition within
|
||||
their custom properties and registers this property name to that setting name if both were found.
|
||||
|
||||
The custom properties, for which are searched, are "connectedPropertyName" and "connectedSettingName",
|
||||
where "connectedPropertyName" is the name of a QObject property as it is documented in the QtDocs, and
|
||||
"connectedSettingName" is the name of a setting here within UiGuiSettings. If the mentioned setting
|
||||
name doesn't exist, it will be created.
|
||||
|
||||
Returns true, if all found property and setting definitions could be successfully registered.
|
||||
Returns false, if any of those registrations fails.
|
||||
*/
|
||||
bool UiGuiSettings::registerObjectPropertyRecursive(QObject *obj) {
|
||||
return checkCustomPropertiesAndCallFunction(obj, &UiGuiSettings::registerObjectProperty);
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief Assigns the by \a settingName defined setting value to the by \a propertyName defined property of \a obj.
|
||||
|
||||
Returns true, if the value could be assigned, otherwise returns false, which is the case if settingName doesn't exist
|
||||
within the settings or if the mentioned propertyName wasn't found for the \a obj.
|
||||
*/
|
||||
bool UiGuiSettings::setObjectPropertyToSettingValue( QObject *obj, const QString &propertyName, const QString &settingName )
|
||||
{
|
||||
const QMetaObject *metaObject = obj->metaObject();
|
||||
|
||||
int indexOfProp = metaObject->indexOfProperty( qPrintable(propertyName) );
|
||||
if ( indexOfProp > -1 ) {
|
||||
QMetaProperty mProp = metaObject->property(indexOfProp);
|
||||
|
||||
// If setting already exists, set the objects property to the setting value.
|
||||
if ( _qsettings->contains("UniversalIndentGUI/" + settingName) ) {
|
||||
mProp.write(obj, _qsettings->value("UniversalIndentGUI/" + settingName));
|
||||
}
|
||||
// The setting didn't exist so return that setting the objects property failed.
|
||||
else {
|
||||
//TODO: Write a debug warning to the log.
|
||||
return false;
|
||||
}
|
||||
}
|
||||
else {
|
||||
//TODO: Write a debug warning to the log.
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief Searches the child QObjects of \a obj for a property name and setting name definition within
|
||||
their custom properties and sets each property to settings value.
|
||||
|
||||
The custom properties, for which are searched, are "connectedPropertyName" and "connectedSettingName",
|
||||
where "connectedPropertyName" is the name of a QObject property as it is documented in the QtDocs, and
|
||||
"connectedSettingName" is the name of a setting here within UiGuiSettings.
|
||||
|
||||
Returns true, if all found property and setting definitions could be successfully registered.
|
||||
Returns false, if any of those registrations fails.
|
||||
*/
|
||||
bool UiGuiSettings::setObjectPropertyToSettingValueRecursive(QObject *obj) {
|
||||
return checkCustomPropertiesAndCallFunction(obj, &UiGuiSettings::setObjectPropertyToSettingValue);
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief Assigns the by \a propertyName defined property's value of \a obj to the by \a settingName defined setting.
|
||||
|
||||
If the \a settingName didn't exist yet, it will be created.
|
||||
|
||||
Returns true, if the value could be assigned, otherwise returns false, which is the case if the mentioned
|
||||
propertyName wasn't found for the \a obj.
|
||||
*/
|
||||
bool UiGuiSettings::setSettingToObjectPropertyValue( QObject *obj, const QString &propertyName, const QString &settingName )
|
||||
{
|
||||
const QMetaObject *metaObject = obj->metaObject();
|
||||
|
||||
int indexOfProp = metaObject->indexOfProperty( qPrintable(propertyName) );
|
||||
if ( indexOfProp > -1 ) {
|
||||
QMetaProperty mProp = metaObject->property(indexOfProp);
|
||||
|
||||
setValueByName(settingName, mProp.read(obj));
|
||||
}
|
||||
else {
|
||||
//TODO: Write a debug warning to the log.
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief Searches the child QObjects of \a obj for a property name and setting name definition within
|
||||
their custom properties and sets each setting to the property value.
|
||||
|
||||
The custom properties, for which are searched, are "connectedPropertyName" and "connectedSettingName",
|
||||
where "connectedPropertyName" is the name of a QObject property as it is documented in the QtDocs, and
|
||||
"connectedSettingName" is the name of a setting here within UiGuiSettings. If the settingName
|
||||
didn't exist yet, it will be created.
|
||||
|
||||
Returns true, if all found property and setting definitions could be successfully registered.
|
||||
Returns false, if any of those registrations fails.
|
||||
*/
|
||||
bool UiGuiSettings::setSettingToObjectPropertyValueRecursive(QObject *obj) {
|
||||
return checkCustomPropertiesAndCallFunction(obj, &UiGuiSettings::setSettingToObjectPropertyValue);
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief Iterates over all \a objs child QObjects and checks whether they have the custom properties
|
||||
"connectedPropertyName" and "connectedSettingName" set. If both are set, it invokes the \a callBackFunc
|
||||
with both.
|
||||
*/
|
||||
bool UiGuiSettings::checkCustomPropertiesAndCallFunction(QObject *obj, bool (UiGuiSettings::*callBackFunc)(QObject *obj, const QString &propertyName, const QString &settingName)) {
|
||||
bool success = true;
|
||||
|
||||
// Find all widgets that have PropertyName and SettingName defined in their style sheet.
|
||||
QList<QObject *> allObjects = obj->findChildren<QObject *>();
|
||||
foreach (QObject *object, allObjects) {
|
||||
QString propertyName = object->property("connectedPropertyName").toString();
|
||||
QString settingName = object->property("connectedSettingName").toString();
|
||||
|
||||
// If property and setting name were found, register that widget with the settings.
|
||||
if ( !propertyName.isEmpty() && !settingName.isEmpty() ) {
|
||||
success &= (this->*callBackFunc)( object, propertyName, settingName );
|
||||
}
|
||||
}
|
||||
|
||||
return success;
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief The with a certain property registered \a obj gets unregistered.
|
||||
*/
|
||||
void UiGuiSettings::unregisterObjectProperty(QObject *obj) {
|
||||
if ( _registeredObjectProperties.contains(obj) ) {
|
||||
const QMetaObject *metaObject = obj->metaObject();
|
||||
QString propertyName = _registeredObjectProperties[obj].first();
|
||||
QString settingName = _registeredObjectProperties[obj].last();
|
||||
|
||||
bool connectSuccess = false;
|
||||
int indexOfProp = metaObject->indexOfProperty( qPrintable(propertyName) );
|
||||
if ( indexOfProp > -1 ) {
|
||||
QMetaProperty mProp = metaObject->property(indexOfProp);
|
||||
|
||||
// Disconnect to the property's value changed signal.
|
||||
if ( mProp.hasNotifySignal() ) {
|
||||
QMetaMethod signal = mProp.notifySignal();
|
||||
// The command "SIGNAL() + QString(signal.signature())" assembles the signal methods signature to a valid Qt SIGNAL.
|
||||
connectSuccess = disconnect(obj, qPrintable(SIGNAL() + QString(signal.signature())), this, SLOT(handleObjectPropertyChange()));
|
||||
}
|
||||
}
|
||||
_registeredObjectProperties.remove(obj);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief Registers a slot form the \a obj by its \a slotName to be invoked, if the by \a settingName defined
|
||||
setting changes.
|
||||
|
||||
The registered slot may have no parameters or exactly one. If it accepts one parameter, whenever the setting
|
||||
\a settingName changes the slot gets tried to be invoked with the settings value as parameter. This only works,
|
||||
if the slot parameter is of the same type as the setting.
|
||||
*/
|
||||
bool UiGuiSettings::registerObjectSlot(QObject *obj, const QString &slotName, const QString &settingName) {
|
||||
|
||||
const QMetaObject *metaObject = obj->metaObject();
|
||||
|
||||
bool connectSuccess = false;
|
||||
// Connect to the objects destroyed signal, so that it will be correctly unregistered.
|
||||
connectSuccess = connect(obj, SIGNAL(destroyed(QObject*)), this, SLOT(unregisterObjectSlot(QObject*)));
|
||||
|
||||
QString normalizedSlotName = QMetaObject::normalizedSignature( qPrintable(slotName) );
|
||||
int indexOfMethod = metaObject->indexOfMethod( qPrintable(normalizedSlotName) );
|
||||
if ( connectSuccess && indexOfMethod > -1 ) {
|
||||
QMetaMethod mMethod = metaObject->method(indexOfMethod);
|
||||
//QMetaMethod::Access access = mMethod.access();
|
||||
//QMetaMethod::MethodType methType = mMethod.methodType();
|
||||
|
||||
// Since the method can at maximum be invoked with the setting value as argument,
|
||||
// only methods taking max one argument are allowed.
|
||||
if ( mMethod.parameterTypes().size() <= 1 ) {
|
||||
_registeredObjectSlots.insert(obj, QStringList() << normalizedSlotName << settingName);
|
||||
}
|
||||
else {
|
||||
//TODO: Write a debug warning to the log.
|
||||
disconnect(obj, SIGNAL(destroyed(QObject*)), this, SLOT(unregisterObjectSlot(QObject*)));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
else {
|
||||
//TODO: Write a debug warning to the log.
|
||||
disconnect(obj, SIGNAL(destroyed(QObject*)), this, SLOT(unregisterObjectSlot(QObject*)));
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief If \a obj, \a slotName and \a settingName are given, that certain connection is unregistered.
|
||||
If only \a obj is given, all to this object registered slot-setting connections are unregistered.
|
||||
*/
|
||||
void UiGuiSettings::unregisterObjectSlot(QObject *obj, const QString &slotName, const QString &settingName) {
|
||||
//const QMetaObject *metaObject = obj->metaObject();
|
||||
QString normalizedSlotName = QMetaObject::normalizedSignature( qPrintable(slotName) );
|
||||
QMutableMapIterator<QObject*, QStringList> it(_registeredObjectSlots);
|
||||
while (it.hasNext()) {
|
||||
it.next();
|
||||
if (it.key() == obj && slotName.isEmpty() && settingName.isEmpty())
|
||||
it.remove();
|
||||
else if (it.key() == obj && it.value().first() == slotName && it.value().last() == settingName)
|
||||
it.remove();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief This private slot gets invoked whenever a registered objects property changes
|
||||
and distributes the new value to all other to the same settingName registered objects.
|
||||
*/
|
||||
void UiGuiSettings::handleObjectPropertyChange() {
|
||||
QObject *obj = QObject::sender();
|
||||
QString className = obj->metaObject()->className();
|
||||
const QMetaObject *metaObject = obj->metaObject();
|
||||
QString propertyName = _registeredObjectProperties[obj].first();
|
||||
QString settingName = _registeredObjectProperties[obj].last();
|
||||
|
||||
int indexOfProp = metaObject->indexOfProperty( qPrintable(propertyName) );
|
||||
if ( indexOfProp > -1 ) {
|
||||
QMetaProperty mProp = metaObject->property(indexOfProp);
|
||||
setValueByName(settingName, mProp.read(obj));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*!
|
||||
\brief Sets the setting defined by \a settingName to \a value.
|
||||
|
||||
When setting a changed value, all to this settingName registered objects get
|
||||
the changed value set too.
|
||||
If the \a settingName didn't exist yet, it will be created.
|
||||
*/
|
||||
void UiGuiSettings::setValueByName(const QString &settingName, const QVariant &value) {
|
||||
// Do the updating only, if the setting was really changed.
|
||||
if ( _qsettings->value("UniversalIndentGUI/" + settingName) != value ) {
|
||||
_qsettings->setValue("UniversalIndentGUI/" + settingName, value);
|
||||
|
||||
// Set the new value for all registered object properties for settingName.
|
||||
for ( QMap<QObject*, QStringList>::ConstIterator it = _registeredObjectProperties.begin(); it != _registeredObjectProperties.end(); ++it ) {
|
||||
if ( it.value().last() == settingName ) {
|
||||
QObject *obj = it.key();
|
||||
const QMetaObject *metaObject = obj->metaObject();
|
||||
QString propertyName = it.value().first();
|
||||
|
||||
int indexOfProp = metaObject->indexOfProperty( qPrintable(propertyName) );
|
||||
if ( indexOfProp > -1 ) {
|
||||
QMetaProperty mProp = metaObject->property(indexOfProp);
|
||||
mProp.write(obj, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Invoke all registered object methods for settingName.
|
||||
for ( QMap<QObject*, QStringList>::ConstIterator it = _registeredObjectSlots.begin(); it != _registeredObjectSlots.end(); ++it ) {
|
||||
if ( it.value().last() == settingName ) {
|
||||
QObject *obj = it.key();
|
||||
const QMetaObject *metaObject = obj->metaObject();
|
||||
QString slotName = it.value().first();
|
||||
|
||||
int indexOfMethod = metaObject->indexOfMethod( qPrintable(slotName) );
|
||||
if ( indexOfMethod > -1 ) {
|
||||
QMetaMethod mMethod = metaObject->method(indexOfMethod);
|
||||
//QMetaMethod::Access access = mMethod.access();
|
||||
//QMetaMethod::MethodType methType = mMethod.methodType();
|
||||
|
||||
bool success = false;
|
||||
|
||||
// Handle registered slots taking one parameter.
|
||||
if ( mMethod.parameterTypes().size() == 1 ) {
|
||||
if ( mMethod.parameterTypes().first() == value.typeName() ) {
|
||||
success = invokeMethodWithValue(obj, mMethod, value);
|
||||
}
|
||||
}
|
||||
// Handle registered slots taking zero parameters.
|
||||
else {
|
||||
success = mMethod.invoke( obj, Qt::DirectConnection );
|
||||
}
|
||||
|
||||
if ( success == false ) {
|
||||
// TODO: Write a warning to the log if no success.
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#include <QBitArray>
|
||||
#include <QBitmap>
|
||||
#include <QBrush>
|
||||
#include <QCursor>
|
||||
#include <QDateTime>
|
||||
#include <QFont>
|
||||
#include <QIcon>
|
||||
#include <QKeySequence>
|
||||
#include <QLocale>
|
||||
#include <QPalette>
|
||||
#include <QPen>
|
||||
#include <QSizePolicy>
|
||||
#include <QTextFormat>
|
||||
#include <QTextLength>
|
||||
#include <QUrl>
|
||||
#if QT_VERSION >= 0x040600
|
||||
#include <QMatrix4x4>
|
||||
#include <QVector2D>
|
||||
#endif
|
||||
|
||||
bool UiGuiSettings::invokeMethodWithValue( QObject *obj, QMetaMethod mMethod, QVariant value )
|
||||
{
|
||||
switch (value.type()) {
|
||||
case QVariant::BitArray :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QBitArray, value.toBitArray()) );
|
||||
case QVariant::Bitmap :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QBitmap, value.value<QBitmap>()) );
|
||||
case QVariant::Bool :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(bool, value.toBool()) );
|
||||
case QVariant::Brush :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QBrush, value.value<QBrush>()) );
|
||||
case QVariant::ByteArray :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QByteArray, value.toByteArray()) );
|
||||
case QVariant::Char :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QChar, value.toChar()) );
|
||||
case QVariant::Color :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QColor, value.value<QColor>()) );
|
||||
case QVariant::Cursor :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QCursor, value.value<QCursor>()) );
|
||||
case QVariant::Date :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QDate, value.toDate()) );
|
||||
case QVariant::DateTime :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QDateTime, value.toDateTime()) );
|
||||
case QVariant::Double :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(double, value.toDouble()) );
|
||||
case QVariant::Font :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QFont, value.value<QFont>()) );
|
||||
case QVariant::Hash :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QVariantHash, value.toHash()) );
|
||||
case QVariant::Icon :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QIcon, value.value<QIcon>()) );
|
||||
case QVariant::Image :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QImage, value.value<QImage>()) );
|
||||
case QVariant::Int :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(int, value.toInt()) );
|
||||
case QVariant::KeySequence :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QKeySequence, value.value<QKeySequence>()) );
|
||||
case QVariant::Line :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QLine, value.toLine()) );
|
||||
case QVariant::LineF :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QLineF, value.toLineF()) );
|
||||
case QVariant::List :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QVariantList, value.toList()) );
|
||||
case QVariant::Locale :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QLocale, value.toLocale()) );
|
||||
case QVariant::LongLong :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(qlonglong, value.toLongLong()) );
|
||||
case QVariant::Map :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QVariantMap, value.toMap()) );
|
||||
case QVariant::Matrix :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QMatrix, value.value<QMatrix>()) );
|
||||
case QVariant::Transform :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QTransform, value.value<QTransform>()) );
|
||||
#if QT_VERSION >= 0x040600
|
||||
case QVariant::Matrix4x4 :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QMatrix4x4, value.value<QMatrix4x4>()) );
|
||||
#endif
|
||||
case QVariant::Palette :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QPalette, value.value<QPalette>()) );
|
||||
case QVariant::Pen :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QPen, value.value<QPen>()) );
|
||||
case QVariant::Pixmap :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QPixmap, value.value<QPixmap>()) );
|
||||
case QVariant::Point :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QPoint, value.toPoint()) );
|
||||
// case QVariant::PointArray :
|
||||
// return Q_ARG(QPointArray, value.value<QPointArray>()) );
|
||||
case QVariant::PointF :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QPointF, value.toPointF()) );
|
||||
case QVariant::Polygon :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QPolygon, value.value<QPolygon>()) );
|
||||
#if QT_VERSION >= 0x040600
|
||||
case QVariant::Quaternion :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QQuaternion, value.value<QQuaternion>()) );
|
||||
#endif
|
||||
case QVariant::Rect :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QRect, value.toRect()) );
|
||||
case QVariant::RectF :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QRectF, value.toRectF()) );
|
||||
case QVariant::RegExp :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QRegExp, value.toRegExp()) );
|
||||
case QVariant::Region :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QRegion, value.value<QRegion>()) );
|
||||
case QVariant::Size :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QSize, value.toSize()) );
|
||||
case QVariant::SizeF :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QSizeF, value.toSizeF()) );
|
||||
case QVariant::SizePolicy :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QSizePolicy, value.value<QSizePolicy>()) );
|
||||
case QVariant::String :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QString, value.toString()) );
|
||||
case QVariant::StringList :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QStringList, value.toStringList()) );
|
||||
case QVariant::TextFormat :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QTextFormat, value.value<QTextFormat>()) );
|
||||
case QVariant::TextLength :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QTextLength, value.value<QTextLength>()) );
|
||||
case QVariant::Time :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QTime, value.toTime()) );
|
||||
case QVariant::UInt :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(uint, value.toUInt()) );
|
||||
case QVariant::ULongLong :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(qulonglong, value.toULongLong()) );
|
||||
case QVariant::Url :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QUrl, value.toUrl()) );
|
||||
#if QT_VERSION >= 0x040600
|
||||
case QVariant::Vector2D :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QVector2D, value.value<QVector2D>()) );
|
||||
case QVariant::Vector3D :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QVector3D, value.value<QVector3D>()) );
|
||||
case QVariant::Vector4D :
|
||||
return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QVector4D, value.value<QVector4D>()) );
|
||||
#endif
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
@ -1,201 +0,0 @@
|
||||
TEMPLATE = app
|
||||
QT += network
|
||||
QT += script
|
||||
|
||||
unix:TARGET = universalindentgui
|
||||
win32:TARGET = UniversalIndentGUI
|
||||
macx:TARGET = UniversalIndentGUI
|
||||
|
||||
DEPENDPATH += resources \
|
||||
src \
|
||||
debug \
|
||||
release
|
||||
|
||||
INCLUDEPATH += src
|
||||
|
||||
CONFIG += debug_and_release
|
||||
|
||||
macx {
|
||||
# If using as framework qscintilla needs to be build with:
|
||||
# qmake -spec macx-g++ CONFIG+=sdk CONFIG+=x86_64 CONFIG+=x86 CONFIG+=lib_bundle qscintilla.pro && make && sudo make install
|
||||
#LIBS += -framework qscintilla2
|
||||
LIBS += -lqscintilla2
|
||||
ICON = resources/UniversalIndentGUI.icns
|
||||
}
|
||||
else {
|
||||
LIBS += -lqscintilla2
|
||||
}
|
||||
|
||||
CONFIG(release, debug|release) {
|
||||
|
||||
win32:pipe2nul = ">NUL"
|
||||
unix:pipe2nul = "&> /dev/null"
|
||||
macx:pipe2nul = "&> /dev/null"
|
||||
|
||||
|
||||
# Language file processing
|
||||
##########################
|
||||
message(Updating language files)
|
||||
lupdate = lupdate
|
||||
unix:lupdate = lupdate-qt4
|
||||
macx:lupdate = lupdate
|
||||
lrelease = lrelease
|
||||
unix:lrelease = lrelease-qt4
|
||||
macx:lrelease = lrelease
|
||||
# Update translation files
|
||||
message ( Updating universalindent.ts )
|
||||
system($${lupdate} src -ts ./translations/universalindent.ts -silent)
|
||||
message ( Updating universalindent_de.ts )
|
||||
system($${lupdate} src -ts ./translations/universalindent_de.ts -silent)
|
||||
message ( Updating universalindent_fr.ts )
|
||||
system($${lupdate} src -ts ./translations/universalindent_fr.ts -silent)
|
||||
message ( Updating universalindent_ja.ts )
|
||||
system($${lupdate} src -ts ./translations/universalindent_ja.ts -silent)
|
||||
message ( Updating universalindent_ru.ts )
|
||||
system($${lupdate} src -ts ./translations/universalindent_ru.ts -silent)
|
||||
message ( Updating universalindent_uk.ts )
|
||||
system($${lupdate} src -ts ./translations/universalindent_uk.ts -silent)
|
||||
message ( Updating universalindent_zh_TW.ts )
|
||||
system($${lupdate} src -ts ./translations/universalindent_zh_TW.ts -silent)
|
||||
|
||||
|
||||
# Create translation binaries
|
||||
message ( Creating translation binaries )
|
||||
system($${lrelease} ./translations/universalindent_de.ts -qm ./translations/universalindent_de.qm -silent)
|
||||
system($${lrelease} ./translations/universalindent_fr.ts -qm ./translations/universalindent_fr.qm -silent)
|
||||
system($${lrelease} ./translations/universalindent_ja.ts -qm ./translations/universalindent_ja.qm -silent)
|
||||
system($${lrelease} ./translations/universalindent_ru.ts -qm ./translations/universalindent_ru.qm -silent)
|
||||
system($${lrelease} ./translations/universalindent_uk.ts -qm ./translations/universalindent_uk.qm -silent)
|
||||
system($${lrelease} ./translations/universalindent_zh_TW.ts -qm ./translations/universalindent_zh_TW.qm -silent)
|
||||
|
||||
# Copy Qts own translation files to the local translation directory
|
||||
message ( Copy Qts own translation files to the local translation directory )
|
||||
qtTranslationInstallDir = $$[QT_INSTALL_TRANSLATIONS]
|
||||
win32:qtTranslationInstallDir = $$replace(qtTranslationInstallDir, /, \\)
|
||||
unix:system(cp $${qtTranslationInstallDir}/qt_de.qm ./translations/ $$pipe2nul)
|
||||
unix:system(cp $${qtTranslationInstallDir}/qt_fr.qm ./translations/ $$pipe2nul)
|
||||
unix:system(cp $${qtTranslationInstallDir}/qt_ja.qm ./translations/ $$pipe2nul)
|
||||
unix:system(cp $${qtTranslationInstallDir}/qt_ru.qm ./translations/ $$pipe2nul)
|
||||
unix:system(cp $${qtTranslationInstallDir}/qt_uk.qm ./translations/ $$pipe2nul)
|
||||
unix:system(cp $${qtTranslationInstallDir}/qt_zh_TW.qm ./translations/ $$pipe2nul)
|
||||
win32:system(copy $${qtTranslationInstallDir}\\qt_de.qm .\\translations\\ /Y $$pipe2nul)
|
||||
win32:system(copy $${qtTranslationInstallDir}\\qt_fr.qm .\\translations\\ /Y $$pipe2nul)
|
||||
win32:system(copy $${qtTranslationInstallDir}\\qt_ja.qm .\\translations\\ /Y $$pipe2nul)
|
||||
win32:system(copy $${qtTranslationInstallDir}\\qt_ru.qm .\\translations\\ /Y $$pipe2nul)
|
||||
win32:system(copy $${qtTranslationInstallDir}\\qt_uk.qm .\\translations\\ /Y $$pipe2nul)
|
||||
win32:system(copy $${qtTranslationInstallDir}\\qt_zh_TW.qm .\\translations\\ /Y $$pipe2nul)
|
||||
|
||||
# Defining files that shall be installed when calling "make install"
|
||||
####################################################################
|
||||
# Create and install man page
|
||||
exists( ./doc/universalindentgui.1* ) {
|
||||
unix:system(rm ./doc/universalindentgui.1*)
|
||||
}
|
||||
unix:system(cp ./doc/universalindentgui.man ./doc/universalindentgui.1)
|
||||
unix:system(gzip -9 ./doc/universalindentgui.1)
|
||||
unix:documentation.path = /usr/share/man/man1
|
||||
unix:documentation.files = doc/universalindentgui.1.gz
|
||||
|
||||
# Install indenter ini files, examples and some indenters
|
||||
unix:indenters.path = /usr/share/universalindentgui/indenters
|
||||
unix:indenters.files = indenters/uigui_*.ini
|
||||
unix:indenters.files += indenters/example.*
|
||||
unix:indenters.files += indenters/JsDecoder.js
|
||||
unix:indenters.files += indenters/phpStylist.php
|
||||
unix:indenters.files += indenters/phpStylist.txt
|
||||
unix:indenters.files += indenters/pindent.py
|
||||
unix:indenters.files += indenters/pindent.txt
|
||||
unix:indenters.files += indenters/rbeautify.rb
|
||||
unix:indenters.files += indenters/ruby_formatter.rb
|
||||
unix:indenters.files += indenters/shellindent.awk
|
||||
|
||||
# Install translation files
|
||||
unix:translation.path = /usr/share/universalindentgui/translations
|
||||
unix:translation.files = translations/*.qm
|
||||
|
||||
# Install highlighter default config
|
||||
unix:highlighterconfig.path = /usr/share/universalindentgui/config
|
||||
unix:highlighterconfig.files = config/UiGuiSyntaxHighlightConfig.ini
|
||||
|
||||
# Install binary
|
||||
unix:target.path = /usr/bin
|
||||
|
||||
# Set everything that shall be installed
|
||||
unix:INSTALLS += target \
|
||||
highlighterconfig \
|
||||
indenters \
|
||||
translation \
|
||||
documentation
|
||||
|
||||
}
|
||||
|
||||
CONFIG(debug, debug|release) {
|
||||
DESTDIR = ./debug
|
||||
DEFINES += _DEBUG DEBUG
|
||||
} else {
|
||||
DESTDIR = ./release
|
||||
}
|
||||
|
||||
MOC_DIR = $${DESTDIR}/moc
|
||||
UI_DIR = $${DESTDIR}/uic
|
||||
OBJECTS_DIR = $${DESTDIR}/obj
|
||||
RCC_DIR = $${DESTDIR}/qrc
|
||||
|
||||
#message ( destdir is $${DESTDIR}. uic is $${UI_DIR}. moc is $${MOC_DIR})
|
||||
|
||||
# Input
|
||||
HEADERS += src/AboutDialog.h \
|
||||
src/AboutDialogGraphicsView.h \
|
||||
src/IndentHandler.h \
|
||||
src/MainWindow.h \
|
||||
src/SettingsPaths.h \
|
||||
src/TemplateBatchScript.h \
|
||||
src/UiGuiErrorMessage.h \
|
||||
src/UiGuiHighlighter.h \
|
||||
src/UiGuiIndentServer.h \
|
||||
src/UiGuiIniFileParser.h \
|
||||
src/UiGuiSettings.h \
|
||||
src/UiGuiSettingsDialog.h \
|
||||
src/UiGuiSystemInfo.h \
|
||||
src/UiGuiVersion.h \
|
||||
src/UpdateCheckDialog.h \
|
||||
src/debugging/TSLogger.h
|
||||
|
||||
|
||||
FORMS += src/MainWindow.ui \
|
||||
src/ToolBarWidget.ui \
|
||||
src/UiGuiSettingsDialog.ui \
|
||||
src/AboutDialog.ui \
|
||||
src/UpdateCheckDialog.ui \
|
||||
src/debugging/TSLoggerDialog.ui
|
||||
|
||||
SOURCES += src/AboutDialog.cpp \
|
||||
src/AboutDialogGraphicsView.cpp \
|
||||
src/IndentHandler.cpp \
|
||||
src/main.cpp \
|
||||
src/MainWindow.cpp \
|
||||
src/SettingsPaths.cpp \
|
||||
src/TemplateBatchScript.cpp \
|
||||
src/UiGuiErrorMessage.cpp \
|
||||
src/UiGuiHighlighter.cpp \
|
||||
src/UiGuiIndentServer.cpp \
|
||||
src/UiGuiIniFileParser.cpp \
|
||||
src/UiGuiSettings.cpp \
|
||||
src/UiGuiSettingsDialog.cpp \
|
||||
src/UiGuiSystemInfo.cpp \
|
||||
src/UiGuiVersion.cpp \
|
||||
src/UpdateCheckDialog.cpp \
|
||||
src/debugging/TSLogger.cpp
|
||||
|
||||
RESOURCES += resources/Icons.qrc
|
||||
RC_FILE = resources/programicon.rc
|
||||
|
||||
|
||||
|
||||
#message(Creating symbolic links within target dir for debugging)
|
||||
#macx:system(ln -s $$PWD/config ./debug/config)
|
||||
#macx:system(ln -s $$PWD/indenters ./debug/indenters)
|
||||
#macx:system(ln -s $$PWD/translations ./debug/translations)
|
||||
#macx:system(ln -s $$PWD/config ./release/config)
|
||||
#macx:system(ln -s $$PWD/indenters ./release/indenters)
|
||||
#macx:system(ln -s $$PWD/translations ./release/translations)
|
@ -1,741 +0,0 @@
|
||||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 42;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
033FA4A2951F6995E4B52E75 /* moc_AboutDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 71D24B3D256D9E9FC90EEDF7 /* moc_AboutDialog.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
07182A1FDE8301C8D9EAF7F5 /* UiGuiSettingsDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 26383A497B0CC65909DA431D /* UiGuiSettingsDialog.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
0794A9D3A24B32A06CD8CA37 /* TSLogger.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 5EEB118D3C499097B07CA6DC /* TSLogger.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
10D0CC7BD2D2E5A3A90EEF25 /* moc_UiGuiHighlighter.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 705CF7C739E81ED3345C9F41 /* moc_UiGuiHighlighter.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
1446C37D55222BE8281C2D84 /* moc_MainWindow.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 59F78802D4802B940EA308A0 /* moc_MainWindow.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
157D8322CB15EB4B4B698465 /* AboutDialogGraphicsView.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = D3A96D6E7DF8830490467C04 /* AboutDialogGraphicsView.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
204EDFAF3269B294371D7373 /* QtCore in Frameworks & Libraries */ = {isa = PBXBuildFile; fileRef = FC65490F7BEA4427C242848C /* QtCore */; };
|
||||
2B7F90DE44210DB9F5D23F0C /* AboutDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 8B5B29CE11F2EFCD1C93EB6C /* AboutDialog.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
2CE072BF0886F682F0FE8266 /* moc_UiGuiSettingsDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = A7DD7C62D24BBDB386C3840D /* moc_UiGuiSettingsDialog.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
2E0B7B483AE3DAFB774883DC /* UiGuiErrorMessage.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = EB9AF2B1C20FF4B1225EA3FB /* UiGuiErrorMessage.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
32D9B1CB3877EF0A567B997D /* QtScript in Frameworks & Libraries */ = {isa = PBXBuildFile; fileRef = 9EF9FEB32A7980D519425A9E /* QtScript */; };
|
||||
358CDAA858B633E7AD0B6646 /* UniversalIndentGUI.icns in Bundle Resources */ = {isa = PBXBuildFile; fileRef = A6C4B7ADC28FF6F9840A9319 /* UniversalIndentGUI.icns */; settings = {ATTRIBUTES = (); }; };
|
||||
3B7E26C095F17917F557F0BB /* QtGui in Frameworks & Libraries */ = {isa = PBXBuildFile; fileRef = 6988CE9D964BC66484DA49D5 /* QtGui */; };
|
||||
4393711A82B0A27E8301FEB8 /* moc_UiGuiErrorMessage.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 998C921BBFDF579B258C28EA /* moc_UiGuiErrorMessage.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
447799AD66EF47D36B5A72E3 /* moc_IndentHandler.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = DEDA4624B80C4136C3D118C2 /* moc_IndentHandler.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
45FD613422A15DDFF65F07EB /* TemplateBatchScript.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = E9B6F1DAFB4C5CD5E9C4C02C /* TemplateBatchScript.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
4DAB46634D6A37252BC2E3D4 /* qrc_Icons.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 1BB748495103B59368976F44 /* qrc_Icons.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
54824FDC5DD27B6216E263F5 /* moc_UpdateCheckDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = D4515A4B9864E652FE65CBDE /* moc_UpdateCheckDialog.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
64CDA74634FD0C1F9265CF5F /* SettingsPaths.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = AAFD01B4A071D73CD002C7FD /* SettingsPaths.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
83EFC8071DE20B90AE46E0A1 /* UiGuiIndentServer.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 9840C47AE913CA84966C04AE /* UiGuiIndentServer.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
86D03C28F9A095696FA4C465 /* moc_AboutDialogGraphicsView.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = F84894CE7D4FF11845C5DEC1 /* moc_AboutDialogGraphicsView.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
8DCA76267BA4834F731C5BAB /* moc_UiGuiIndentServer.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 836D42CF391C82A0B70687F3 /* moc_UiGuiIndentServer.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
8DFAEC14C5621835B85BDBBB /* UiGuiSettings.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
9892D98357F2D175D03F6488 /* moc_UiGuiSettings.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = F4DF9DB04F138672E3CB95D5 /* moc_UiGuiSettings.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
A56B320001BC86C5B01B08D0 /* UiGuiSystemInfo.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 8CE031E032D58BFFADB163E3 /* UiGuiSystemInfo.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
A87876F3A24FCE545FEAFB05 /* UiGuiVersion.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = D038693E47A07F84995184E5 /* UiGuiVersion.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
AAC1168526D0C37A3F415917 /* MainWindow.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 1C0B64226A129D35F02DC004 /* MainWindow.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
B3D97A9EF6FD086AC8AA1400 /* QtNetwork in Frameworks & Libraries */ = {isa = PBXBuildFile; fileRef = B235A8A774654CA992F5A861 /* QtNetwork */; };
|
||||
C61FC1CBE0E603A32A3D1D8E /* moc_TSLogger.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 4082D6E68F89F86822C28CAE /* moc_TSLogger.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
CE0306F2BD402BE1CC71BA98 /* IndentHandler.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 7B749332F0EE106BAF891CBB /* IndentHandler.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
D05E9C8E00DF8978FAD6C45F /* UiGuiIniFileParser.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = BAC68B56402ED1C21C4A4561 /* UiGuiIniFileParser.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
E938E42F14AC74220066EAA2 /* UniversalIndentGUI.app in Project Copy */ = {isa = PBXBuildFile; fileRef = E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */; };
|
||||
ED461CD43406DFA44318404B /* UiGuiHighlighter.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 95C394A7DB7625A6018F145F /* UiGuiHighlighter.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
F42AF6C1FF5FF9F82C3E049D /* UpdateCheckDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 4B2D11C739E037330FF187DB /* UpdateCheckDialog.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
FD1638E377D97C82BDB438FB /* main.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 7EC3C68A81EFFF79B6CA22AC /* main.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXCopyFilesBuildPhase section */
|
||||
F6069D5A5DA8AA28EDB8B3C6 /* Project Copy */ = {
|
||||
isa = PBXCopyFilesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
dstPath = /Volumes/SHARED/Programming/uigui/universalindent/trunk/release;
|
||||
dstSubfolderSpec = 0;
|
||||
files = (
|
||||
E938E42F14AC74220066EAA2 /* UniversalIndentGUI.app in Project Copy */,
|
||||
);
|
||||
name = "Project Copy";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXCopyFilesBuildPhase section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
01A925071F5E8C4DEAA029A7 /* UiGuiIniFileParser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiIniFileParser.h; path = src/UiGuiIniFileParser.h; sourceTree = "<group>"; };
|
||||
0405CDFCAFF3A176EB7C5B2B /* SettingsPaths.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SettingsPaths.h; path = src/SettingsPaths.h; sourceTree = "<group>"; };
|
||||
04EC27988BE80C166C06D386 /* ui_AboutDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_AboutDialog.h; path = release/uic/ui_AboutDialog.h; sourceTree = "<group>"; };
|
||||
0501473B7E166B9D10974B09 /* AboutDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AboutDialog.h; path = src/AboutDialog.h; sourceTree = "<group>"; };
|
||||
0D2093D6D7971F9434E27A2D /* UiGuiHighlighter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiHighlighter.h; path = src/UiGuiHighlighter.h; sourceTree = "<group>"; };
|
||||
19D832A234461F61E597073E /* UiGuiErrorMessage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiErrorMessage.h; path = src/UiGuiErrorMessage.h; sourceTree = "<group>"; };
|
||||
1BB748495103B59368976F44 /* qrc_Icons.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = qrc_Icons.cpp; path = release/qrc/qrc_Icons.cpp; sourceTree = "<group>"; };
|
||||
1C0B64226A129D35F02DC004 /* MainWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MainWindow.cpp; path = src/MainWindow.cpp; sourceTree = "<group>"; };
|
||||
234F1B047D06A4E84A3BA652 /* UiGuiIndentServer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiIndentServer.h; path = src/UiGuiIndentServer.h; sourceTree = "<group>"; };
|
||||
2365565B0E8281A9A554DE48 /* IndentHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IndentHandler.h; path = src/IndentHandler.h; sourceTree = "<group>"; };
|
||||
240575E52D89C74CAFF8C83F /* UpdateCheckDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UpdateCheckDialog.h; path = src/UpdateCheckDialog.h; sourceTree = "<group>"; };
|
||||
26383A497B0CC65909DA431D /* UiGuiSettingsDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSettingsDialog.cpp; path = src/UiGuiSettingsDialog.cpp; sourceTree = "<group>"; };
|
||||
290E702759265E2A11910569 /* UpdateCheckDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = UpdateCheckDialog.ui; path = src/UpdateCheckDialog.ui; sourceTree = "<group>"; };
|
||||
3194C2F269DA07FBC8FB120D /* UiGuiSettingsDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSettingsDialog.h; path = src/UiGuiSettingsDialog.h; sourceTree = "<group>"; };
|
||||
3E78CB522F65C3B2CD054660 /* AboutDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = AboutDialog.ui; path = src/AboutDialog.ui; sourceTree = "<group>"; };
|
||||
4082D6E68F89F86822C28CAE /* moc_TSLogger.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_TSLogger.cpp; path = release/moc/moc_TSLogger.cpp; sourceTree = "<group>"; };
|
||||
4B2D11C739E037330FF187DB /* UpdateCheckDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UpdateCheckDialog.cpp; path = src/UpdateCheckDialog.cpp; sourceTree = "<group>"; };
|
||||
59F78802D4802B940EA308A0 /* moc_MainWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_MainWindow.cpp; path = release/moc/moc_MainWindow.cpp; sourceTree = "<group>"; };
|
||||
5EEB118D3C499097B07CA6DC /* TSLogger.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TSLogger.cpp; path = src/debugging/TSLogger.cpp; sourceTree = "<group>"; };
|
||||
5FDBC0A18FE03C4893ABD97E /* UiGuiSystemInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSystemInfo.h; path = src/UiGuiSystemInfo.h; sourceTree = "<group>"; };
|
||||
6988CE9D964BC66484DA49D5 /* QtGui */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtGui; path = /opt/local/lib/libQtGui.4.7.4.dylib; sourceTree = "<absolute>"; };
|
||||
705CF7C739E81ED3345C9F41 /* moc_UiGuiHighlighter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiHighlighter.cpp; path = release/moc/moc_UiGuiHighlighter.cpp; sourceTree = "<group>"; };
|
||||
71D24B3D256D9E9FC90EEDF7 /* moc_AboutDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_AboutDialog.cpp; path = release/moc/moc_AboutDialog.cpp; sourceTree = "<group>"; };
|
||||
7B749332F0EE106BAF891CBB /* IndentHandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IndentHandler.cpp; path = src/IndentHandler.cpp; sourceTree = "<group>"; };
|
||||
7DBF76AABA74FE9F8ACD5DB5 /* Icons.qrc */ = {isa = PBXFileReference; lastKnownFileType = text; name = Icons.qrc; path = resources/Icons.qrc; sourceTree = "<group>"; };
|
||||
7EC3C68A81EFFF79B6CA22AC /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = src/main.cpp; sourceTree = "<group>"; };
|
||||
836D42CF391C82A0B70687F3 /* moc_UiGuiIndentServer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiIndentServer.cpp; path = release/moc/moc_UiGuiIndentServer.cpp; sourceTree = "<group>"; };
|
||||
8B5B29CE11F2EFCD1C93EB6C /* AboutDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AboutDialog.cpp; path = src/AboutDialog.cpp; sourceTree = "<group>"; };
|
||||
8CE031E032D58BFFADB163E3 /* UiGuiSystemInfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSystemInfo.cpp; path = src/UiGuiSystemInfo.cpp; sourceTree = "<group>"; };
|
||||
944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSettings.cpp; path = src/UiGuiSettings.cpp; sourceTree = "<group>"; };
|
||||
957A01A17EA639CF3AC8D438 /* ui_TSLoggerDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_TSLoggerDialog.h; path = release/uic/ui_TSLoggerDialog.h; sourceTree = "<group>"; };
|
||||
95C394A7DB7625A6018F145F /* UiGuiHighlighter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiHighlighter.cpp; path = src/UiGuiHighlighter.cpp; sourceTree = "<group>"; };
|
||||
97D35E3EB9A27948A62C0C38 /* ui_MainWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_MainWindow.h; path = release/uic/ui_MainWindow.h; sourceTree = "<group>"; };
|
||||
9840C47AE913CA84966C04AE /* UiGuiIndentServer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiIndentServer.cpp; path = src/UiGuiIndentServer.cpp; sourceTree = "<group>"; };
|
||||
998C921BBFDF579B258C28EA /* moc_UiGuiErrorMessage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiErrorMessage.cpp; path = release/moc/moc_UiGuiErrorMessage.cpp; sourceTree = "<group>"; };
|
||||
9B1A8589DE3DB63FE9FEADAD /* AboutDialogGraphicsView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AboutDialogGraphicsView.h; path = src/AboutDialogGraphicsView.h; sourceTree = "<group>"; };
|
||||
9EF9FEB32A7980D519425A9E /* QtScript */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtScript; path = /opt/local/lib/libQtScript.4.7.4.dylib; sourceTree = "<absolute>"; };
|
||||
9FAD1502AC6B577554578224 /* TSLoggerDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = TSLoggerDialog.ui; path = src/debugging/TSLoggerDialog.ui; sourceTree = "<group>"; };
|
||||
A1FD7528F1BA6EC4A87E142A /* ui_ToolBarWidget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_ToolBarWidget.h; path = release/uic/ui_ToolBarWidget.h; sourceTree = "<group>"; };
|
||||
A6C4B7ADC28FF6F9840A9319 /* UniversalIndentGUI.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; name = UniversalIndentGUI.icns; path = resources/UniversalIndentGUI.icns; sourceTree = "<group>"; };
|
||||
A77AB8EA63A1F08C970A0DB1 /* TemplateBatchScript.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = TemplateBatchScript.h; path = src/TemplateBatchScript.h; sourceTree = "<group>"; };
|
||||
A7CBECAE098937E7541F811C /* MainWindow.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = MainWindow.ui; path = src/MainWindow.ui; sourceTree = "<group>"; };
|
||||
A7DD7C62D24BBDB386C3840D /* moc_UiGuiSettingsDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiSettingsDialog.cpp; path = release/moc/moc_UiGuiSettingsDialog.cpp; sourceTree = "<group>"; };
|
||||
AAFD01B4A071D73CD002C7FD /* SettingsPaths.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SettingsPaths.cpp; path = src/SettingsPaths.cpp; sourceTree = "<group>"; };
|
||||
AC4AC748C3685570D9D8B977 /* UiGuiSettings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSettings.h; path = src/UiGuiSettings.h; sourceTree = "<group>"; };
|
||||
B235A8A774654CA992F5A861 /* QtNetwork */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtNetwork; path = /opt/local/lib/libQtNetwork.4.7.4.dylib; sourceTree = "<absolute>"; };
|
||||
B3201EB1AA113D49631A1BC2 /* UiGuiSettingsDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = UiGuiSettingsDialog.ui; path = src/UiGuiSettingsDialog.ui; sourceTree = "<group>"; };
|
||||
B3E50F5A6CE91D794A9AE2AA /* ToolBarWidget.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ToolBarWidget.ui; path = src/ToolBarWidget.ui; sourceTree = "<group>"; };
|
||||
BAC68B56402ED1C21C4A4561 /* UiGuiIniFileParser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiIniFileParser.cpp; path = src/UiGuiIniFileParser.cpp; sourceTree = "<group>"; };
|
||||
C2D745F51D062CD6409FA16C /* ui_UpdateCheckDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_UpdateCheckDialog.h; path = release/uic/ui_UpdateCheckDialog.h; sourceTree = "<group>"; };
|
||||
D038693E47A07F84995184E5 /* UiGuiVersion.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiVersion.cpp; path = src/UiGuiVersion.cpp; sourceTree = "<group>"; };
|
||||
D3A96D6E7DF8830490467C04 /* AboutDialogGraphicsView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AboutDialogGraphicsView.cpp; path = src/AboutDialogGraphicsView.cpp; sourceTree = "<group>"; };
|
||||
D4515A4B9864E652FE65CBDE /* moc_UpdateCheckDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UpdateCheckDialog.cpp; path = release/moc/moc_UpdateCheckDialog.cpp; sourceTree = "<group>"; };
|
||||
D807F0DE3110F0AD45593FA7 /* MainWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MainWindow.h; path = src/MainWindow.h; sourceTree = "<group>"; };
|
||||
DCEF1F98F703B62597F530A9 /* ui_UiGuiSettingsDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_UiGuiSettingsDialog.h; path = release/uic/ui_UiGuiSettingsDialog.h; sourceTree = "<group>"; };
|
||||
DEDA4624B80C4136C3D118C2 /* moc_IndentHandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_IndentHandler.cpp; path = release/moc/moc_IndentHandler.cpp; sourceTree = "<group>"; };
|
||||
E457C7C0F6FE92258C9ABDE6 /* UniversalIndentGUI.pro */ = {isa = PBXFileReference; lastKnownFileType = text; path = UniversalIndentGUI.pro; sourceTree = "<group>"; };
|
||||
E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = UniversalIndentGUI.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
E9B6F1DAFB4C5CD5E9C4C02C /* TemplateBatchScript.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TemplateBatchScript.cpp; path = src/TemplateBatchScript.cpp; sourceTree = "<group>"; };
|
||||
EB9AF2B1C20FF4B1225EA3FB /* UiGuiErrorMessage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiErrorMessage.cpp; path = src/UiGuiErrorMessage.cpp; sourceTree = "<group>"; };
|
||||
F45A82FFD3FBFC99A2A0B897 /* UiGuiVersion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiVersion.h; path = src/UiGuiVersion.h; sourceTree = "<group>"; };
|
||||
F4DF9DB04F138672E3CB95D5 /* moc_UiGuiSettings.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiSettings.cpp; path = release/moc/moc_UiGuiSettings.cpp; sourceTree = "<group>"; };
|
||||
F5BD042A2B240A02A39C20AC /* TSLogger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = TSLogger.h; path = src/debugging/TSLogger.h; sourceTree = "<group>"; };
|
||||
F84894CE7D4FF11845C5DEC1 /* moc_AboutDialogGraphicsView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_AboutDialogGraphicsView.cpp; path = release/moc/moc_AboutDialogGraphicsView.cpp; sourceTree = "<group>"; };
|
||||
FC65490F7BEA4427C242848C /* QtCore */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtCore; path = /opt/local/lib/libQtCore.4.7.4.dylib; sourceTree = "<absolute>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
2A1043669E6E5A7426EA502A /* Frameworks & Libraries */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
32D9B1CB3877EF0A567B997D /* QtScript in Frameworks & Libraries */,
|
||||
3B7E26C095F17917F557F0BB /* QtGui in Frameworks & Libraries */,
|
||||
B3D97A9EF6FD086AC8AA1400 /* QtNetwork in Frameworks & Libraries */,
|
||||
204EDFAF3269B294371D7373 /* QtCore in Frameworks & Libraries */,
|
||||
);
|
||||
name = "Frameworks & Libraries";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
05596AB53D8D521C69802C27 /* UniversalIndentGUI */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
FB61758D0F0FDA4BA867C3D5 /* Sources */,
|
||||
46E892BBB6BB6952967E0561 /* Temporary Sources */,
|
||||
883D7615C4D2DE3FA1218F12 /* Headers */,
|
||||
7CABE3C80E79AD2B307756D2 /* Sources [qmake] */,
|
||||
52C235EBF1C9B07808119459 /* Sources [RCC] */,
|
||||
EEC299C65D5017EB9DD513B0 /* Sources [UIC] */,
|
||||
ED1E82605DD74B483AF3C982 /* External Frameworks and Libraries */,
|
||||
E938E42D14AC74220066EAA2 /* Products */,
|
||||
);
|
||||
name = UniversalIndentGUI;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
06674E1DE8D3EB6E763DFFDA /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8B5B29CE11F2EFCD1C93EB6C /* AboutDialog.cpp */,
|
||||
D3A96D6E7DF8830490467C04 /* AboutDialogGraphicsView.cpp */,
|
||||
7B749332F0EE106BAF891CBB /* IndentHandler.cpp */,
|
||||
7EC3C68A81EFFF79B6CA22AC /* main.cpp */,
|
||||
1C0B64226A129D35F02DC004 /* MainWindow.cpp */,
|
||||
AAFD01B4A071D73CD002C7FD /* SettingsPaths.cpp */,
|
||||
E9B6F1DAFB4C5CD5E9C4C02C /* TemplateBatchScript.cpp */,
|
||||
EB9AF2B1C20FF4B1225EA3FB /* UiGuiErrorMessage.cpp */,
|
||||
95C394A7DB7625A6018F145F /* UiGuiHighlighter.cpp */,
|
||||
9840C47AE913CA84966C04AE /* UiGuiIndentServer.cpp */,
|
||||
BAC68B56402ED1C21C4A4561 /* UiGuiIniFileParser.cpp */,
|
||||
944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */,
|
||||
26383A497B0CC65909DA431D /* UiGuiSettingsDialog.cpp */,
|
||||
8CE031E032D58BFFADB163E3 /* UiGuiSystemInfo.cpp */,
|
||||
D038693E47A07F84995184E5 /* UiGuiVersion.cpp */,
|
||||
4B2D11C739E037330FF187DB /* UpdateCheckDialog.cpp */,
|
||||
682C39EDA1B6CDF80B0D9214 /* debugging */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
16A82DA2701971900CCC9274 /* resources */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7DBF76AABA74FE9F8ACD5DB5 /* Icons.qrc */,
|
||||
);
|
||||
name = resources;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
17088D39164D72415814D3CE /* moc */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
71D24B3D256D9E9FC90EEDF7 /* moc_AboutDialog.cpp */,
|
||||
F84894CE7D4FF11845C5DEC1 /* moc_AboutDialogGraphicsView.cpp */,
|
||||
DEDA4624B80C4136C3D118C2 /* moc_IndentHandler.cpp */,
|
||||
59F78802D4802B940EA308A0 /* moc_MainWindow.cpp */,
|
||||
998C921BBFDF579B258C28EA /* moc_UiGuiErrorMessage.cpp */,
|
||||
705CF7C739E81ED3345C9F41 /* moc_UiGuiHighlighter.cpp */,
|
||||
836D42CF391C82A0B70687F3 /* moc_UiGuiIndentServer.cpp */,
|
||||
F4DF9DB04F138672E3CB95D5 /* moc_UiGuiSettings.cpp */,
|
||||
A7DD7C62D24BBDB386C3840D /* moc_UiGuiSettingsDialog.cpp */,
|
||||
D4515A4B9864E652FE65CBDE /* moc_UpdateCheckDialog.cpp */,
|
||||
4082D6E68F89F86822C28CAE /* moc_TSLogger.cpp */,
|
||||
);
|
||||
name = moc;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
46E892BBB6BB6952967E0561 /* Temporary Sources */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
BC7AF8B1E3D64E5DB82A180B /* release */,
|
||||
);
|
||||
name = "Temporary Sources";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
52C235EBF1C9B07808119459 /* Sources [RCC] */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
16A82DA2701971900CCC9274 /* resources */,
|
||||
);
|
||||
name = "Sources [RCC]";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
682C39EDA1B6CDF80B0D9214 /* debugging */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5EEB118D3C499097B07CA6DC /* TSLogger.cpp */,
|
||||
);
|
||||
name = debugging;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7CABE3C80E79AD2B307756D2 /* Sources [qmake] */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
E457C7C0F6FE92258C9ABDE6 /* UniversalIndentGUI.pro */,
|
||||
);
|
||||
name = "Sources [qmake]";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8161BBD1CA4ABAD2BDCD1290 /* debugging */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
9FAD1502AC6B577554578224 /* TSLoggerDialog.ui */,
|
||||
);
|
||||
name = debugging;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
883D7615C4D2DE3FA1218F12 /* Headers */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
F4AF6147B42623F6B3284738 /* src */,
|
||||
);
|
||||
name = Headers;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
A1B6D1488110DA0868414A40 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A7CBECAE098937E7541F811C /* MainWindow.ui */,
|
||||
B3E50F5A6CE91D794A9AE2AA /* ToolBarWidget.ui */,
|
||||
B3201EB1AA113D49631A1BC2 /* UiGuiSettingsDialog.ui */,
|
||||
3E78CB522F65C3B2CD054660 /* AboutDialog.ui */,
|
||||
290E702759265E2A11910569 /* UpdateCheckDialog.ui */,
|
||||
8161BBD1CA4ABAD2BDCD1290 /* debugging */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
A742563A513C5350203403C2 /* uic */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
97D35E3EB9A27948A62C0C38 /* ui_MainWindow.h */,
|
||||
A1FD7528F1BA6EC4A87E142A /* ui_ToolBarWidget.h */,
|
||||
DCEF1F98F703B62597F530A9 /* ui_UiGuiSettingsDialog.h */,
|
||||
04EC27988BE80C166C06D386 /* ui_AboutDialog.h */,
|
||||
C2D745F51D062CD6409FA16C /* ui_UpdateCheckDialog.h */,
|
||||
957A01A17EA639CF3AC8D438 /* ui_TSLoggerDialog.h */,
|
||||
);
|
||||
name = uic;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
B06B937E4E5DB1B571475081 /* resources */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A6C4B7ADC28FF6F9840A9319 /* UniversalIndentGUI.icns */,
|
||||
);
|
||||
name = resources;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
BC7AF8B1E3D64E5DB82A180B /* release */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
17088D39164D72415814D3CE /* moc */,
|
||||
E60B3FBF3190558138C79865 /* qrc */,
|
||||
A742563A513C5350203403C2 /* uic */,
|
||||
);
|
||||
name = release;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
CAC892C702EF9F77734C8010 /* debugging */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
F5BD042A2B240A02A39C20AC /* TSLogger.h */,
|
||||
);
|
||||
name = debugging;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
E60B3FBF3190558138C79865 /* qrc */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1BB748495103B59368976F44 /* qrc_Icons.cpp */,
|
||||
);
|
||||
name = qrc;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
E938E42D14AC74220066EAA2 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
ED1E82605DD74B483AF3C982 /* External Frameworks and Libraries */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
9EF9FEB32A7980D519425A9E /* QtScript */,
|
||||
6988CE9D964BC66484DA49D5 /* QtGui */,
|
||||
B235A8A774654CA992F5A861 /* QtNetwork */,
|
||||
FC65490F7BEA4427C242848C /* QtCore */,
|
||||
);
|
||||
name = "External Frameworks and Libraries";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
EEC299C65D5017EB9DD513B0 /* Sources [UIC] */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A1B6D1488110DA0868414A40 /* src */,
|
||||
);
|
||||
name = "Sources [UIC]";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
F4AF6147B42623F6B3284738 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0501473B7E166B9D10974B09 /* AboutDialog.h */,
|
||||
9B1A8589DE3DB63FE9FEADAD /* AboutDialogGraphicsView.h */,
|
||||
2365565B0E8281A9A554DE48 /* IndentHandler.h */,
|
||||
D807F0DE3110F0AD45593FA7 /* MainWindow.h */,
|
||||
0405CDFCAFF3A176EB7C5B2B /* SettingsPaths.h */,
|
||||
A77AB8EA63A1F08C970A0DB1 /* TemplateBatchScript.h */,
|
||||
19D832A234461F61E597073E /* UiGuiErrorMessage.h */,
|
||||
0D2093D6D7971F9434E27A2D /* UiGuiHighlighter.h */,
|
||||
234F1B047D06A4E84A3BA652 /* UiGuiIndentServer.h */,
|
||||
01A925071F5E8C4DEAA029A7 /* UiGuiIniFileParser.h */,
|
||||
AC4AC748C3685570D9D8B977 /* UiGuiSettings.h */,
|
||||
3194C2F269DA07FBC8FB120D /* UiGuiSettingsDialog.h */,
|
||||
5FDBC0A18FE03C4893ABD97E /* UiGuiSystemInfo.h */,
|
||||
F45A82FFD3FBFC99A2A0B897 /* UiGuiVersion.h */,
|
||||
240575E52D89C74CAFF8C83F /* UpdateCheckDialog.h */,
|
||||
CAC892C702EF9F77734C8010 /* debugging */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
FB61758D0F0FDA4BA867C3D5 /* Sources */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
06674E1DE8D3EB6E763DFFDA /* src */,
|
||||
B06B937E4E5DB1B571475081 /* resources */,
|
||||
);
|
||||
name = Sources;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
A630BEF242261A8F9F0C2E16 /* UniversalIndentGUI */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = E938E43C14AC74310066EAA2 /* Build configuration list for PBXNativeTarget "UniversalIndentGUI" */;
|
||||
buildPhases = (
|
||||
D7BA7D76DAB5DD13389D6332 /* Qt Qmake */,
|
||||
A0A52A2ADF7A1E2A99738674 /* Qt Preprocessors */,
|
||||
F6069D5A5DA8AA28EDB8B3C6 /* Project Copy */,
|
||||
C29B8785722055ED95EF7B57 /* Build Sources */,
|
||||
2A1043669E6E5A7426EA502A /* Frameworks & Libraries */,
|
||||
3787F99312C85FF0073FD7BA /* Bundle Resources */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = UniversalIndentGUI;
|
||||
productInstallPath = release/;
|
||||
productName = UniversalIndentGUI;
|
||||
productReference = E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */;
|
||||
productType = "com.apple.product-type.application";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
91B15E841AA80083484172DE /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 2A951308CDB28F104D0A4BD2 /* Build configuration list for PBXProject "UniversalIndentGUI" */;
|
||||
compatibilityVersion = "Xcode 2.4";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 1;
|
||||
knownRegions = (
|
||||
English,
|
||||
Japanese,
|
||||
French,
|
||||
German,
|
||||
);
|
||||
mainGroup = 05596AB53D8D521C69802C27 /* UniversalIndentGUI */;
|
||||
productRefGroup = E938E42D14AC74220066EAA2 /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
A630BEF242261A8F9F0C2E16 /* UniversalIndentGUI */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
3787F99312C85FF0073FD7BA /* Bundle Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
358CDAA858B633E7AD0B6646 /* UniversalIndentGUI.icns in Bundle Resources */,
|
||||
);
|
||||
name = "Bundle Resources";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
A0A52A2ADF7A1E2A99738674 /* Qt Preprocessors */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
name = "Qt Preprocessors";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "make -C /Volumes/SHARED/Programming/uigui/universalindent/trunk -f 'UniversalIndentGUI.xcodeproj/qt_preprocess.mak'";
|
||||
};
|
||||
D7BA7D76DAB5DD13389D6332 /* Qt Qmake */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
name = "Qt Qmake";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "make -C /Volumes/SHARED/Programming/uigui/universalindent/trunk -f 'UniversalIndentGUI.xcodeproj/qt_makeqmake.mak'";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
C29B8785722055ED95EF7B57 /* Build Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
2B7F90DE44210DB9F5D23F0C /* AboutDialog.cpp in Build Sources */,
|
||||
157D8322CB15EB4B4B698465 /* AboutDialogGraphicsView.cpp in Build Sources */,
|
||||
CE0306F2BD402BE1CC71BA98 /* IndentHandler.cpp in Build Sources */,
|
||||
FD1638E377D97C82BDB438FB /* main.cpp in Build Sources */,
|
||||
AAC1168526D0C37A3F415917 /* MainWindow.cpp in Build Sources */,
|
||||
64CDA74634FD0C1F9265CF5F /* SettingsPaths.cpp in Build Sources */,
|
||||
45FD613422A15DDFF65F07EB /* TemplateBatchScript.cpp in Build Sources */,
|
||||
2E0B7B483AE3DAFB774883DC /* UiGuiErrorMessage.cpp in Build Sources */,
|
||||
ED461CD43406DFA44318404B /* UiGuiHighlighter.cpp in Build Sources */,
|
||||
83EFC8071DE20B90AE46E0A1 /* UiGuiIndentServer.cpp in Build Sources */,
|
||||
D05E9C8E00DF8978FAD6C45F /* UiGuiIniFileParser.cpp in Build Sources */,
|
||||
8DFAEC14C5621835B85BDBBB /* UiGuiSettings.cpp in Build Sources */,
|
||||
07182A1FDE8301C8D9EAF7F5 /* UiGuiSettingsDialog.cpp in Build Sources */,
|
||||
A56B320001BC86C5B01B08D0 /* UiGuiSystemInfo.cpp in Build Sources */,
|
||||
A87876F3A24FCE545FEAFB05 /* UiGuiVersion.cpp in Build Sources */,
|
||||
F42AF6C1FF5FF9F82C3E049D /* UpdateCheckDialog.cpp in Build Sources */,
|
||||
0794A9D3A24B32A06CD8CA37 /* TSLogger.cpp in Build Sources */,
|
||||
033FA4A2951F6995E4B52E75 /* moc_AboutDialog.cpp in Build Sources */,
|
||||
86D03C28F9A095696FA4C465 /* moc_AboutDialogGraphicsView.cpp in Build Sources */,
|
||||
447799AD66EF47D36B5A72E3 /* moc_IndentHandler.cpp in Build Sources */,
|
||||
1446C37D55222BE8281C2D84 /* moc_MainWindow.cpp in Build Sources */,
|
||||
4393711A82B0A27E8301FEB8 /* moc_UiGuiErrorMessage.cpp in Build Sources */,
|
||||
10D0CC7BD2D2E5A3A90EEF25 /* moc_UiGuiHighlighter.cpp in Build Sources */,
|
||||
8DCA76267BA4834F731C5BAB /* moc_UiGuiIndentServer.cpp in Build Sources */,
|
||||
9892D98357F2D175D03F6488 /* moc_UiGuiSettings.cpp in Build Sources */,
|
||||
2CE072BF0886F682F0FE8266 /* moc_UiGuiSettingsDialog.cpp in Build Sources */,
|
||||
54824FDC5DD27B6216E263F5 /* moc_UpdateCheckDialog.cpp in Build Sources */,
|
||||
C61FC1CBE0E603A32A3D1D8E /* moc_TSLogger.cpp in Build Sources */,
|
||||
4DAB46634D6A37252BC2E3D4 /* qrc_Icons.cpp in Build Sources */,
|
||||
);
|
||||
name = "Build Sources";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
8DB1DD96F65B1BF1FFC506E0 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
95E1EB2E5DDD587BE5B3E548 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
COPY_PHASE_STRIP = YES;
|
||||
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
E938E43414AC74230066EAA2 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = x86_64;
|
||||
BUILD_ROOT = /Volumes/SHARED/Programming/uigui/universalindent/trunk;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DYLIB_COMPATIBILITY_VERSION = 1.0;
|
||||
DYLIB_CURRENT_VERSION = 1.0.0;
|
||||
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
release/moc,
|
||||
src,
|
||||
/opt/local/include/QtScript,
|
||||
/opt/local/include/QtGui,
|
||||
/opt/local/include/QtNetwork,
|
||||
/opt/local/include/QtCore,
|
||||
/opt/local/include,
|
||||
release/uic,
|
||||
/usr/local/include,
|
||||
/System/Library/Frameworks/CarbonCore.framework/Headers,
|
||||
"/opt/local/share/qt4/mkspecs/macx-xcode",
|
||||
);
|
||||
INFOPLIST_FILE = Info.plist;
|
||||
INSTALL_DIR = /Volumes/SHARED/Programming/uigui/universalindent/trunk/release/;
|
||||
LEXFLAGS = "";
|
||||
LIBRARY_SEARCH_PATHS = /opt/local/lib;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
||||
OBJROOT = release/obj/;
|
||||
OTHER_CFLAGS = (
|
||||
"-pipe",
|
||||
"-O2",
|
||||
"-Wall",
|
||||
"-W",
|
||||
"-DQT_NO_DEBUG",
|
||||
"-DQT_SCRIPT_LIB",
|
||||
"-DQT_GUI_LIB",
|
||||
"-DQT_NETWORK_LIB",
|
||||
"-DQT_CORE_LIB",
|
||||
"-DQT_SHARED",
|
||||
);
|
||||
OTHER_CPLUSPLUSFLAGS = (
|
||||
"-pipe",
|
||||
"-O2",
|
||||
"-Wall",
|
||||
"-W",
|
||||
"-DQT_NO_DEBUG",
|
||||
"-DQT_SCRIPT_LIB",
|
||||
"-DQT_GUI_LIB",
|
||||
"-DQT_NETWORK_LIB",
|
||||
"-DQT_CORE_LIB",
|
||||
"-DQT_SHARED",
|
||||
);
|
||||
OTHER_LDFLAGS = (
|
||||
"-headerpad_max_install_names",
|
||||
"-lqscintilla2",
|
||||
"-L/opt/local/lib",
|
||||
);
|
||||
OTHER_REZFLAGS = "";
|
||||
PREBINDING = NO;
|
||||
PRODUCT_NAME = UniversalIndentGUI;
|
||||
SECTORDER_FLAGS = "";
|
||||
WARNING_CFLAGS = "";
|
||||
YACCFLAGS = "-d";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
E938E43514AC74230066EAA2 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = x86_64;
|
||||
BUILD_ROOT = /Volumes/SHARED/Programming/uigui/universalindent/trunk;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DYLIB_COMPATIBILITY_VERSION = 1.0;
|
||||
DYLIB_CURRENT_VERSION = 1.0.0;
|
||||
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
release/moc,
|
||||
src,
|
||||
/opt/local/include/QtScript,
|
||||
/opt/local/include/QtGui,
|
||||
/opt/local/include/QtNetwork,
|
||||
/opt/local/include/QtCore,
|
||||
/opt/local/include,
|
||||
release/uic,
|
||||
/usr/local/include,
|
||||
/System/Library/Frameworks/CarbonCore.framework/Headers,
|
||||
"/opt/local/share/qt4/mkspecs/macx-xcode",
|
||||
);
|
||||
INFOPLIST_FILE = Info.plist;
|
||||
INSTALL_DIR = /Volumes/SHARED/Programming/uigui/universalindent/trunk/release/;
|
||||
LEXFLAGS = "";
|
||||
LIBRARY_SEARCH_PATHS = /opt/local/lib;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
||||
OBJROOT = release/obj/;
|
||||
OTHER_CFLAGS = (
|
||||
"-pipe",
|
||||
"-O2",
|
||||
"-Wall",
|
||||
"-W",
|
||||
"-DQT_NO_DEBUG",
|
||||
"-DQT_SCRIPT_LIB",
|
||||
"-DQT_GUI_LIB",
|
||||
"-DQT_NETWORK_LIB",
|
||||
"-DQT_CORE_LIB",
|
||||
"-DQT_SHARED",
|
||||
);
|
||||
OTHER_CPLUSPLUSFLAGS = (
|
||||
"-pipe",
|
||||
"-O2",
|
||||
"-Wall",
|
||||
"-W",
|
||||
"-DQT_NO_DEBUG",
|
||||
"-DQT_SCRIPT_LIB",
|
||||
"-DQT_GUI_LIB",
|
||||
"-DQT_NETWORK_LIB",
|
||||
"-DQT_CORE_LIB",
|
||||
"-DQT_SHARED",
|
||||
);
|
||||
OTHER_LDFLAGS = (
|
||||
"-headerpad_max_install_names",
|
||||
"-lqscintilla2",
|
||||
"-L/opt/local/lib",
|
||||
);
|
||||
OTHER_REZFLAGS = "";
|
||||
PREBINDING = NO;
|
||||
PRODUCT_NAME = UniversalIndentGUI;
|
||||
SECTORDER_FLAGS = "";
|
||||
WARNING_CFLAGS = "";
|
||||
YACCFLAGS = "-d";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
E938E43614AC74230066EAA2 /* Default */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = x86_64;
|
||||
BUILD_ROOT = /Volumes/SHARED/Programming/uigui/universalindent/trunk;
|
||||
DYLIB_COMPATIBILITY_VERSION = 1.0;
|
||||
DYLIB_CURRENT_VERSION = 1.0.0;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
release/moc,
|
||||
src,
|
||||
/opt/local/include/QtScript,
|
||||
/opt/local/include/QtGui,
|
||||
/opt/local/include/QtNetwork,
|
||||
/opt/local/include/QtCore,
|
||||
/opt/local/include,
|
||||
release/uic,
|
||||
/usr/local/include,
|
||||
/System/Library/Frameworks/CarbonCore.framework/Headers,
|
||||
"/opt/local/share/qt4/mkspecs/macx-xcode",
|
||||
);
|
||||
INFOPLIST_FILE = Info.plist;
|
||||
INSTALL_DIR = /Volumes/SHARED/Programming/uigui/universalindent/trunk/release/;
|
||||
LEXFLAGS = "";
|
||||
LIBRARY_SEARCH_PATHS = /opt/local/lib;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
||||
OBJROOT = release/obj/;
|
||||
OTHER_CFLAGS = (
|
||||
"-pipe",
|
||||
"-O2",
|
||||
"-Wall",
|
||||
"-W",
|
||||
"-DQT_NO_DEBUG",
|
||||
"-DQT_SCRIPT_LIB",
|
||||
"-DQT_GUI_LIB",
|
||||
"-DQT_NETWORK_LIB",
|
||||
"-DQT_CORE_LIB",
|
||||
"-DQT_SHARED",
|
||||
);
|
||||
OTHER_CPLUSPLUSFLAGS = (
|
||||
"-pipe",
|
||||
"-O2",
|
||||
"-Wall",
|
||||
"-W",
|
||||
"-DQT_NO_DEBUG",
|
||||
"-DQT_SCRIPT_LIB",
|
||||
"-DQT_GUI_LIB",
|
||||
"-DQT_NETWORK_LIB",
|
||||
"-DQT_CORE_LIB",
|
||||
"-DQT_SHARED",
|
||||
);
|
||||
OTHER_LDFLAGS = (
|
||||
"-headerpad_max_install_names",
|
||||
"-lqscintilla2",
|
||||
"-L/opt/local/lib",
|
||||
);
|
||||
OTHER_REZFLAGS = "";
|
||||
PREBINDING = NO;
|
||||
PRODUCT_NAME = UniversalIndentGUI;
|
||||
SECTORDER_FLAGS = "";
|
||||
WARNING_CFLAGS = "";
|
||||
YACCFLAGS = "-d";
|
||||
};
|
||||
name = Default;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
2A951308CDB28F104D0A4BD2 /* Build configuration list for PBXProject "UniversalIndentGUI" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
8DB1DD96F65B1BF1FFC506E0 /* Debug */,
|
||||
95E1EB2E5DDD587BE5B3E548 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
E938E43C14AC74310066EAA2 /* Build configuration list for PBXNativeTarget "UniversalIndentGUI" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
E938E43414AC74230066EAA2 /* Debug */,
|
||||
E938E43514AC74230066EAA2 /* Release */,
|
||||
E938E43614AC74230066EAA2 /* Default */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Default;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 91B15E841AA80083484172DE /* Project object */;
|
||||
}
|
@ -1,31 +0,0 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||
# Visual C++ Express 2008
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UniversalIndentGUI", "src\UniversalIndentGUI.vcproj", "{CF521500-824E-4DB7-A7FA-F4A8B6BB008A}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UniversalIndentGUI_NPP", "src\UniversalIndentGUI_NPP\UniversalIndentGUI_NPP.vcproj", "{0A9F9D63-C282-4AE8-9F80-A6D5F541AD12}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UiGUI_Server_Test_Client", "src\UiGUI_Server_Test_Client\UiGUI_Server_Test_Client.vcproj", "{DE19ED58-2330-4B86-AFD1-18A4A037E488}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
Release|Win32 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{CF521500-824E-4DB7-A7FA-F4A8B6BB008A}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{CF521500-824E-4DB7-A7FA-F4A8B6BB008A}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{CF521500-824E-4DB7-A7FA-F4A8B6BB008A}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{CF521500-824E-4DB7-A7FA-F4A8B6BB008A}.Release|Win32.Build.0 = Release|Win32
|
||||
{0A9F9D63-C282-4AE8-9F80-A6D5F541AD12}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{0A9F9D63-C282-4AE8-9F80-A6D5F541AD12}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{0A9F9D63-C282-4AE8-9F80-A6D5F541AD12}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{0A9F9D63-C282-4AE8-9F80-A6D5F541AD12}.Release|Win32.Build.0 = Release|Win32
|
||||
{DE19ED58-2330-4B86-AFD1-18A4A037E488}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{DE19ED58-2330-4B86-AFD1-18A4A037E488}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{DE19ED58-2330-4B86-AFD1-18A4A037E488}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{DE19ED58-2330-4B86-AFD1-18A4A037E488}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
@ -1,741 +0,0 @@
|
||||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 42;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
033FA4A2951F6995E4B52E75 /* moc_AboutDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 71D24B3D256D9E9FC90EEDF7 /* moc_AboutDialog.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
07182A1FDE8301C8D9EAF7F5 /* UiGuiSettingsDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 26383A497B0CC65909DA431D /* UiGuiSettingsDialog.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
0794A9D3A24B32A06CD8CA37 /* TSLogger.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 5EEB118D3C499097B07CA6DC /* TSLogger.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
10D0CC7BD2D2E5A3A90EEF25 /* moc_UiGuiHighlighter.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 705CF7C739E81ED3345C9F41 /* moc_UiGuiHighlighter.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
1446C37D55222BE8281C2D84 /* moc_MainWindow.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 59F78802D4802B940EA308A0 /* moc_MainWindow.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
157D8322CB15EB4B4B698465 /* AboutDialogGraphicsView.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = D3A96D6E7DF8830490467C04 /* AboutDialogGraphicsView.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
204EDFAF3269B294371D7373 /* QtCore in Frameworks & Libraries */ = {isa = PBXBuildFile; fileRef = FC65490F7BEA4427C242848C /* QtCore */; };
|
||||
2B7F90DE44210DB9F5D23F0C /* AboutDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 8B5B29CE11F2EFCD1C93EB6C /* AboutDialog.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
2CE072BF0886F682F0FE8266 /* moc_UiGuiSettingsDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = A7DD7C62D24BBDB386C3840D /* moc_UiGuiSettingsDialog.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
2E0B7B483AE3DAFB774883DC /* UiGuiErrorMessage.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = EB9AF2B1C20FF4B1225EA3FB /* UiGuiErrorMessage.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
32D9B1CB3877EF0A567B997D /* QtScript in Frameworks & Libraries */ = {isa = PBXBuildFile; fileRef = 9EF9FEB32A7980D519425A9E /* QtScript */; };
|
||||
358CDAA858B633E7AD0B6646 /* UniversalIndentGUI.icns in Bundle Resources */ = {isa = PBXBuildFile; fileRef = A6C4B7ADC28FF6F9840A9319 /* UniversalIndentGUI.icns */; settings = {ATTRIBUTES = (); }; };
|
||||
3B7E26C095F17917F557F0BB /* QtGui in Frameworks & Libraries */ = {isa = PBXBuildFile; fileRef = 6988CE9D964BC66484DA49D5 /* QtGui */; };
|
||||
4393711A82B0A27E8301FEB8 /* moc_UiGuiErrorMessage.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 998C921BBFDF579B258C28EA /* moc_UiGuiErrorMessage.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
447799AD66EF47D36B5A72E3 /* moc_IndentHandler.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = DEDA4624B80C4136C3D118C2 /* moc_IndentHandler.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
45FD613422A15DDFF65F07EB /* TemplateBatchScript.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = E9B6F1DAFB4C5CD5E9C4C02C /* TemplateBatchScript.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
4DAB46634D6A37252BC2E3D4 /* qrc_Icons.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 1BB748495103B59368976F44 /* qrc_Icons.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
54824FDC5DD27B6216E263F5 /* moc_UpdateCheckDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = D4515A4B9864E652FE65CBDE /* moc_UpdateCheckDialog.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
64CDA74634FD0C1F9265CF5F /* SettingsPaths.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = AAFD01B4A071D73CD002C7FD /* SettingsPaths.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
83EFC8071DE20B90AE46E0A1 /* UiGuiIndentServer.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 9840C47AE913CA84966C04AE /* UiGuiIndentServer.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
86D03C28F9A095696FA4C465 /* moc_AboutDialogGraphicsView.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = F84894CE7D4FF11845C5DEC1 /* moc_AboutDialogGraphicsView.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
8DCA76267BA4834F731C5BAB /* moc_UiGuiIndentServer.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 836D42CF391C82A0B70687F3 /* moc_UiGuiIndentServer.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
8DFAEC14C5621835B85BDBBB /* UiGuiSettings.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
9892D98357F2D175D03F6488 /* moc_UiGuiSettings.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = F4DF9DB04F138672E3CB95D5 /* moc_UiGuiSettings.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
A56B320001BC86C5B01B08D0 /* UiGuiSystemInfo.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 8CE031E032D58BFFADB163E3 /* UiGuiSystemInfo.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
A87876F3A24FCE545FEAFB05 /* UiGuiVersion.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = D038693E47A07F84995184E5 /* UiGuiVersion.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
AAC1168526D0C37A3F415917 /* MainWindow.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 1C0B64226A129D35F02DC004 /* MainWindow.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
B3D97A9EF6FD086AC8AA1400 /* QtNetwork in Frameworks & Libraries */ = {isa = PBXBuildFile; fileRef = B235A8A774654CA992F5A861 /* QtNetwork */; };
|
||||
C61FC1CBE0E603A32A3D1D8E /* moc_TSLogger.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 4082D6E68F89F86822C28CAE /* moc_TSLogger.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
CE0306F2BD402BE1CC71BA98 /* IndentHandler.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 7B749332F0EE106BAF891CBB /* IndentHandler.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
D05E9C8E00DF8978FAD6C45F /* UiGuiIniFileParser.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = BAC68B56402ED1C21C4A4561 /* UiGuiIniFileParser.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
E938E42F14AC74220066EAA2 /* UniversalIndentGUI.app in Project Copy */ = {isa = PBXBuildFile; fileRef = E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */; };
|
||||
ED461CD43406DFA44318404B /* UiGuiHighlighter.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 95C394A7DB7625A6018F145F /* UiGuiHighlighter.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
F42AF6C1FF5FF9F82C3E049D /* UpdateCheckDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 4B2D11C739E037330FF187DB /* UpdateCheckDialog.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
FD1638E377D97C82BDB438FB /* main.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 7EC3C68A81EFFF79B6CA22AC /* main.cpp */; settings = {ATTRIBUTES = (); }; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXCopyFilesBuildPhase section */
|
||||
F6069D5A5DA8AA28EDB8B3C6 /* Project Copy */ = {
|
||||
isa = PBXCopyFilesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
dstPath = /Volumes/SHARED/Programming/uigui/universalindent/trunk/release;
|
||||
dstSubfolderSpec = 0;
|
||||
files = (
|
||||
E938E42F14AC74220066EAA2 /* UniversalIndentGUI.app in Project Copy */,
|
||||
);
|
||||
name = "Project Copy";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXCopyFilesBuildPhase section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
01A925071F5E8C4DEAA029A7 /* UiGuiIniFileParser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiIniFileParser.h; path = src/UiGuiIniFileParser.h; sourceTree = "<group>"; };
|
||||
0405CDFCAFF3A176EB7C5B2B /* SettingsPaths.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SettingsPaths.h; path = src/SettingsPaths.h; sourceTree = "<group>"; };
|
||||
04EC27988BE80C166C06D386 /* ui_AboutDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_AboutDialog.h; path = release/uic/ui_AboutDialog.h; sourceTree = "<group>"; };
|
||||
0501473B7E166B9D10974B09 /* AboutDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AboutDialog.h; path = src/AboutDialog.h; sourceTree = "<group>"; };
|
||||
0D2093D6D7971F9434E27A2D /* UiGuiHighlighter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiHighlighter.h; path = src/UiGuiHighlighter.h; sourceTree = "<group>"; };
|
||||
19D832A234461F61E597073E /* UiGuiErrorMessage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiErrorMessage.h; path = src/UiGuiErrorMessage.h; sourceTree = "<group>"; };
|
||||
1BB748495103B59368976F44 /* qrc_Icons.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = qrc_Icons.cpp; path = release/qrc/qrc_Icons.cpp; sourceTree = "<group>"; };
|
||||
1C0B64226A129D35F02DC004 /* MainWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MainWindow.cpp; path = src/MainWindow.cpp; sourceTree = "<group>"; };
|
||||
234F1B047D06A4E84A3BA652 /* UiGuiIndentServer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiIndentServer.h; path = src/UiGuiIndentServer.h; sourceTree = "<group>"; };
|
||||
2365565B0E8281A9A554DE48 /* IndentHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IndentHandler.h; path = src/IndentHandler.h; sourceTree = "<group>"; };
|
||||
240575E52D89C74CAFF8C83F /* UpdateCheckDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UpdateCheckDialog.h; path = src/UpdateCheckDialog.h; sourceTree = "<group>"; };
|
||||
26383A497B0CC65909DA431D /* UiGuiSettingsDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSettingsDialog.cpp; path = src/UiGuiSettingsDialog.cpp; sourceTree = "<group>"; };
|
||||
290E702759265E2A11910569 /* UpdateCheckDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = UpdateCheckDialog.ui; path = src/UpdateCheckDialog.ui; sourceTree = "<group>"; };
|
||||
3194C2F269DA07FBC8FB120D /* UiGuiSettingsDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSettingsDialog.h; path = src/UiGuiSettingsDialog.h; sourceTree = "<group>"; };
|
||||
3E78CB522F65C3B2CD054660 /* AboutDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = AboutDialog.ui; path = src/AboutDialog.ui; sourceTree = "<group>"; };
|
||||
4082D6E68F89F86822C28CAE /* moc_TSLogger.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_TSLogger.cpp; path = release/moc/moc_TSLogger.cpp; sourceTree = "<group>"; };
|
||||
4B2D11C739E037330FF187DB /* UpdateCheckDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UpdateCheckDialog.cpp; path = src/UpdateCheckDialog.cpp; sourceTree = "<group>"; };
|
||||
59F78802D4802B940EA308A0 /* moc_MainWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_MainWindow.cpp; path = release/moc/moc_MainWindow.cpp; sourceTree = "<group>"; };
|
||||
5EEB118D3C499097B07CA6DC /* TSLogger.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TSLogger.cpp; path = src/debugging/TSLogger.cpp; sourceTree = "<group>"; };
|
||||
5FDBC0A18FE03C4893ABD97E /* UiGuiSystemInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSystemInfo.h; path = src/UiGuiSystemInfo.h; sourceTree = "<group>"; };
|
||||
6988CE9D964BC66484DA49D5 /* QtGui */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtGui; path = /opt/local/lib/libQtGui.4.7.4.dylib; sourceTree = "<absolute>"; };
|
||||
705CF7C739E81ED3345C9F41 /* moc_UiGuiHighlighter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiHighlighter.cpp; path = release/moc/moc_UiGuiHighlighter.cpp; sourceTree = "<group>"; };
|
||||
71D24B3D256D9E9FC90EEDF7 /* moc_AboutDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_AboutDialog.cpp; path = release/moc/moc_AboutDialog.cpp; sourceTree = "<group>"; };
|
||||
7B749332F0EE106BAF891CBB /* IndentHandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IndentHandler.cpp; path = src/IndentHandler.cpp; sourceTree = "<group>"; };
|
||||
7DBF76AABA74FE9F8ACD5DB5 /* Icons.qrc */ = {isa = PBXFileReference; lastKnownFileType = text; name = Icons.qrc; path = resources/Icons.qrc; sourceTree = "<group>"; };
|
||||
7EC3C68A81EFFF79B6CA22AC /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = src/main.cpp; sourceTree = "<group>"; };
|
||||
836D42CF391C82A0B70687F3 /* moc_UiGuiIndentServer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiIndentServer.cpp; path = release/moc/moc_UiGuiIndentServer.cpp; sourceTree = "<group>"; };
|
||||
8B5B29CE11F2EFCD1C93EB6C /* AboutDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AboutDialog.cpp; path = src/AboutDialog.cpp; sourceTree = "<group>"; };
|
||||
8CE031E032D58BFFADB163E3 /* UiGuiSystemInfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSystemInfo.cpp; path = src/UiGuiSystemInfo.cpp; sourceTree = "<group>"; };
|
||||
944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSettings.cpp; path = src/UiGuiSettings.cpp; sourceTree = "<group>"; };
|
||||
957A01A17EA639CF3AC8D438 /* ui_TSLoggerDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_TSLoggerDialog.h; path = release/uic/ui_TSLoggerDialog.h; sourceTree = "<group>"; };
|
||||
95C394A7DB7625A6018F145F /* UiGuiHighlighter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiHighlighter.cpp; path = src/UiGuiHighlighter.cpp; sourceTree = "<group>"; };
|
||||
97D35E3EB9A27948A62C0C38 /* ui_MainWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_MainWindow.h; path = release/uic/ui_MainWindow.h; sourceTree = "<group>"; };
|
||||
9840C47AE913CA84966C04AE /* UiGuiIndentServer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiIndentServer.cpp; path = src/UiGuiIndentServer.cpp; sourceTree = "<group>"; };
|
||||
998C921BBFDF579B258C28EA /* moc_UiGuiErrorMessage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiErrorMessage.cpp; path = release/moc/moc_UiGuiErrorMessage.cpp; sourceTree = "<group>"; };
|
||||
9B1A8589DE3DB63FE9FEADAD /* AboutDialogGraphicsView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AboutDialogGraphicsView.h; path = src/AboutDialogGraphicsView.h; sourceTree = "<group>"; };
|
||||
9EF9FEB32A7980D519425A9E /* QtScript */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtScript; path = /opt/local/lib/libQtScript.4.7.4.dylib; sourceTree = "<absolute>"; };
|
||||
9FAD1502AC6B577554578224 /* TSLoggerDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = TSLoggerDialog.ui; path = src/debugging/TSLoggerDialog.ui; sourceTree = "<group>"; };
|
||||
A1FD7528F1BA6EC4A87E142A /* ui_ToolBarWidget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_ToolBarWidget.h; path = release/uic/ui_ToolBarWidget.h; sourceTree = "<group>"; };
|
||||
A6C4B7ADC28FF6F9840A9319 /* UniversalIndentGUI.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; name = UniversalIndentGUI.icns; path = resources/UniversalIndentGUI.icns; sourceTree = "<group>"; };
|
||||
A77AB8EA63A1F08C970A0DB1 /* TemplateBatchScript.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = TemplateBatchScript.h; path = src/TemplateBatchScript.h; sourceTree = "<group>"; };
|
||||
A7CBECAE098937E7541F811C /* MainWindow.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = MainWindow.ui; path = src/MainWindow.ui; sourceTree = "<group>"; };
|
||||
A7DD7C62D24BBDB386C3840D /* moc_UiGuiSettingsDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiSettingsDialog.cpp; path = release/moc/moc_UiGuiSettingsDialog.cpp; sourceTree = "<group>"; };
|
||||
AAFD01B4A071D73CD002C7FD /* SettingsPaths.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SettingsPaths.cpp; path = src/SettingsPaths.cpp; sourceTree = "<group>"; };
|
||||
AC4AC748C3685570D9D8B977 /* UiGuiSettings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSettings.h; path = src/UiGuiSettings.h; sourceTree = "<group>"; };
|
||||
B235A8A774654CA992F5A861 /* QtNetwork */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtNetwork; path = /opt/local/lib/libQtNetwork.4.7.4.dylib; sourceTree = "<absolute>"; };
|
||||
B3201EB1AA113D49631A1BC2 /* UiGuiSettingsDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = UiGuiSettingsDialog.ui; path = src/UiGuiSettingsDialog.ui; sourceTree = "<group>"; };
|
||||
B3E50F5A6CE91D794A9AE2AA /* ToolBarWidget.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ToolBarWidget.ui; path = src/ToolBarWidget.ui; sourceTree = "<group>"; };
|
||||
BAC68B56402ED1C21C4A4561 /* UiGuiIniFileParser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiIniFileParser.cpp; path = src/UiGuiIniFileParser.cpp; sourceTree = "<group>"; };
|
||||
C2D745F51D062CD6409FA16C /* ui_UpdateCheckDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_UpdateCheckDialog.h; path = release/uic/ui_UpdateCheckDialog.h; sourceTree = "<group>"; };
|
||||
D038693E47A07F84995184E5 /* UiGuiVersion.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiVersion.cpp; path = src/UiGuiVersion.cpp; sourceTree = "<group>"; };
|
||||
D3A96D6E7DF8830490467C04 /* AboutDialogGraphicsView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AboutDialogGraphicsView.cpp; path = src/AboutDialogGraphicsView.cpp; sourceTree = "<group>"; };
|
||||
D4515A4B9864E652FE65CBDE /* moc_UpdateCheckDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UpdateCheckDialog.cpp; path = release/moc/moc_UpdateCheckDialog.cpp; sourceTree = "<group>"; };
|
||||
D807F0DE3110F0AD45593FA7 /* MainWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MainWindow.h; path = src/MainWindow.h; sourceTree = "<group>"; };
|
||||
DCEF1F98F703B62597F530A9 /* ui_UiGuiSettingsDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_UiGuiSettingsDialog.h; path = release/uic/ui_UiGuiSettingsDialog.h; sourceTree = "<group>"; };
|
||||
DEDA4624B80C4136C3D118C2 /* moc_IndentHandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_IndentHandler.cpp; path = release/moc/moc_IndentHandler.cpp; sourceTree = "<group>"; };
|
||||
E457C7C0F6FE92258C9ABDE6 /* UniversalIndentGUI.pro */ = {isa = PBXFileReference; lastKnownFileType = text; path = UniversalIndentGUI.pro; sourceTree = "<group>"; };
|
||||
E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = UniversalIndentGUI.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
E9B6F1DAFB4C5CD5E9C4C02C /* TemplateBatchScript.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TemplateBatchScript.cpp; path = src/TemplateBatchScript.cpp; sourceTree = "<group>"; };
|
||||
EB9AF2B1C20FF4B1225EA3FB /* UiGuiErrorMessage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiErrorMessage.cpp; path = src/UiGuiErrorMessage.cpp; sourceTree = "<group>"; };
|
||||
F45A82FFD3FBFC99A2A0B897 /* UiGuiVersion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiVersion.h; path = src/UiGuiVersion.h; sourceTree = "<group>"; };
|
||||
F4DF9DB04F138672E3CB95D5 /* moc_UiGuiSettings.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiSettings.cpp; path = release/moc/moc_UiGuiSettings.cpp; sourceTree = "<group>"; };
|
||||
F5BD042A2B240A02A39C20AC /* TSLogger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = TSLogger.h; path = src/debugging/TSLogger.h; sourceTree = "<group>"; };
|
||||
F84894CE7D4FF11845C5DEC1 /* moc_AboutDialogGraphicsView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_AboutDialogGraphicsView.cpp; path = release/moc/moc_AboutDialogGraphicsView.cpp; sourceTree = "<group>"; };
|
||||
FC65490F7BEA4427C242848C /* QtCore */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtCore; path = /opt/local/lib/libQtCore.4.7.4.dylib; sourceTree = "<absolute>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
2A1043669E6E5A7426EA502A /* Frameworks & Libraries */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
32D9B1CB3877EF0A567B997D /* QtScript in Frameworks & Libraries */,
|
||||
3B7E26C095F17917F557F0BB /* QtGui in Frameworks & Libraries */,
|
||||
B3D97A9EF6FD086AC8AA1400 /* QtNetwork in Frameworks & Libraries */,
|
||||
204EDFAF3269B294371D7373 /* QtCore in Frameworks & Libraries */,
|
||||
);
|
||||
name = "Frameworks & Libraries";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
05596AB53D8D521C69802C27 /* UniversalIndentGUI */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
FB61758D0F0FDA4BA867C3D5 /* Sources */,
|
||||
46E892BBB6BB6952967E0561 /* Temporary Sources */,
|
||||
883D7615C4D2DE3FA1218F12 /* Headers */,
|
||||
7CABE3C80E79AD2B307756D2 /* Sources [qmake] */,
|
||||
52C235EBF1C9B07808119459 /* Sources [RCC] */,
|
||||
EEC299C65D5017EB9DD513B0 /* Sources [UIC] */,
|
||||
ED1E82605DD74B483AF3C982 /* External Frameworks and Libraries */,
|
||||
E938E42D14AC74220066EAA2 /* Products */,
|
||||
);
|
||||
name = UniversalIndentGUI;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
06674E1DE8D3EB6E763DFFDA /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8B5B29CE11F2EFCD1C93EB6C /* AboutDialog.cpp */,
|
||||
D3A96D6E7DF8830490467C04 /* AboutDialogGraphicsView.cpp */,
|
||||
7B749332F0EE106BAF891CBB /* IndentHandler.cpp */,
|
||||
7EC3C68A81EFFF79B6CA22AC /* main.cpp */,
|
||||
1C0B64226A129D35F02DC004 /* MainWindow.cpp */,
|
||||
AAFD01B4A071D73CD002C7FD /* SettingsPaths.cpp */,
|
||||
E9B6F1DAFB4C5CD5E9C4C02C /* TemplateBatchScript.cpp */,
|
||||
EB9AF2B1C20FF4B1225EA3FB /* UiGuiErrorMessage.cpp */,
|
||||
95C394A7DB7625A6018F145F /* UiGuiHighlighter.cpp */,
|
||||
9840C47AE913CA84966C04AE /* UiGuiIndentServer.cpp */,
|
||||
BAC68B56402ED1C21C4A4561 /* UiGuiIniFileParser.cpp */,
|
||||
944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */,
|
||||
26383A497B0CC65909DA431D /* UiGuiSettingsDialog.cpp */,
|
||||
8CE031E032D58BFFADB163E3 /* UiGuiSystemInfo.cpp */,
|
||||
D038693E47A07F84995184E5 /* UiGuiVersion.cpp */,
|
||||
4B2D11C739E037330FF187DB /* UpdateCheckDialog.cpp */,
|
||||
682C39EDA1B6CDF80B0D9214 /* debugging */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
16A82DA2701971900CCC9274 /* resources */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7DBF76AABA74FE9F8ACD5DB5 /* Icons.qrc */,
|
||||
);
|
||||
name = resources;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
17088D39164D72415814D3CE /* moc */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
71D24B3D256D9E9FC90EEDF7 /* moc_AboutDialog.cpp */,
|
||||
F84894CE7D4FF11845C5DEC1 /* moc_AboutDialogGraphicsView.cpp */,
|
||||
DEDA4624B80C4136C3D118C2 /* moc_IndentHandler.cpp */,
|
||||
59F78802D4802B940EA308A0 /* moc_MainWindow.cpp */,
|
||||
998C921BBFDF579B258C28EA /* moc_UiGuiErrorMessage.cpp */,
|
||||
705CF7C739E81ED3345C9F41 /* moc_UiGuiHighlighter.cpp */,
|
||||
836D42CF391C82A0B70687F3 /* moc_UiGuiIndentServer.cpp */,
|
||||
F4DF9DB04F138672E3CB95D5 /* moc_UiGuiSettings.cpp */,
|
||||
A7DD7C62D24BBDB386C3840D /* moc_UiGuiSettingsDialog.cpp */,
|
||||
D4515A4B9864E652FE65CBDE /* moc_UpdateCheckDialog.cpp */,
|
||||
4082D6E68F89F86822C28CAE /* moc_TSLogger.cpp */,
|
||||
);
|
||||
name = moc;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
46E892BBB6BB6952967E0561 /* Temporary Sources */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
BC7AF8B1E3D64E5DB82A180B /* release */,
|
||||
);
|
||||
name = "Temporary Sources";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
52C235EBF1C9B07808119459 /* Sources [RCC] */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
16A82DA2701971900CCC9274 /* resources */,
|
||||
);
|
||||
name = "Sources [RCC]";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
682C39EDA1B6CDF80B0D9214 /* debugging */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5EEB118D3C499097B07CA6DC /* TSLogger.cpp */,
|
||||
);
|
||||
name = debugging;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7CABE3C80E79AD2B307756D2 /* Sources [qmake] */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
E457C7C0F6FE92258C9ABDE6 /* UniversalIndentGUI.pro */,
|
||||
);
|
||||
name = "Sources [qmake]";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8161BBD1CA4ABAD2BDCD1290 /* debugging */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
9FAD1502AC6B577554578224 /* TSLoggerDialog.ui */,
|
||||
);
|
||||
name = debugging;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
883D7615C4D2DE3FA1218F12 /* Headers */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
F4AF6147B42623F6B3284738 /* src */,
|
||||
);
|
||||
name = Headers;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
A1B6D1488110DA0868414A40 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A7CBECAE098937E7541F811C /* MainWindow.ui */,
|
||||
B3E50F5A6CE91D794A9AE2AA /* ToolBarWidget.ui */,
|
||||
B3201EB1AA113D49631A1BC2 /* UiGuiSettingsDialog.ui */,
|
||||
3E78CB522F65C3B2CD054660 /* AboutDialog.ui */,
|
||||
290E702759265E2A11910569 /* UpdateCheckDialog.ui */,
|
||||
8161BBD1CA4ABAD2BDCD1290 /* debugging */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
A742563A513C5350203403C2 /* uic */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
97D35E3EB9A27948A62C0C38 /* ui_MainWindow.h */,
|
||||
A1FD7528F1BA6EC4A87E142A /* ui_ToolBarWidget.h */,
|
||||
DCEF1F98F703B62597F530A9 /* ui_UiGuiSettingsDialog.h */,
|
||||
04EC27988BE80C166C06D386 /* ui_AboutDialog.h */,
|
||||
C2D745F51D062CD6409FA16C /* ui_UpdateCheckDialog.h */,
|
||||
957A01A17EA639CF3AC8D438 /* ui_TSLoggerDialog.h */,
|
||||
);
|
||||
name = uic;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
B06B937E4E5DB1B571475081 /* resources */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A6C4B7ADC28FF6F9840A9319 /* UniversalIndentGUI.icns */,
|
||||
);
|
||||
name = resources;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
BC7AF8B1E3D64E5DB82A180B /* release */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
17088D39164D72415814D3CE /* moc */,
|
||||
E60B3FBF3190558138C79865 /* qrc */,
|
||||
A742563A513C5350203403C2 /* uic */,
|
||||
);
|
||||
name = release;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
CAC892C702EF9F77734C8010 /* debugging */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
F5BD042A2B240A02A39C20AC /* TSLogger.h */,
|
||||
);
|
||||
name = debugging;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
E60B3FBF3190558138C79865 /* qrc */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1BB748495103B59368976F44 /* qrc_Icons.cpp */,
|
||||
);
|
||||
name = qrc;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
E938E42D14AC74220066EAA2 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
ED1E82605DD74B483AF3C982 /* External Frameworks and Libraries */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
9EF9FEB32A7980D519425A9E /* QtScript */,
|
||||
6988CE9D964BC66484DA49D5 /* QtGui */,
|
||||
B235A8A774654CA992F5A861 /* QtNetwork */,
|
||||
FC65490F7BEA4427C242848C /* QtCore */,
|
||||
);
|
||||
name = "External Frameworks and Libraries";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
EEC299C65D5017EB9DD513B0 /* Sources [UIC] */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A1B6D1488110DA0868414A40 /* src */,
|
||||
);
|
||||
name = "Sources [UIC]";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
F4AF6147B42623F6B3284738 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0501473B7E166B9D10974B09 /* AboutDialog.h */,
|
||||
9B1A8589DE3DB63FE9FEADAD /* AboutDialogGraphicsView.h */,
|
||||
2365565B0E8281A9A554DE48 /* IndentHandler.h */,
|
||||
D807F0DE3110F0AD45593FA7 /* MainWindow.h */,
|
||||
0405CDFCAFF3A176EB7C5B2B /* SettingsPaths.h */,
|
||||
A77AB8EA63A1F08C970A0DB1 /* TemplateBatchScript.h */,
|
||||
19D832A234461F61E597073E /* UiGuiErrorMessage.h */,
|
||||
0D2093D6D7971F9434E27A2D /* UiGuiHighlighter.h */,
|
||||
234F1B047D06A4E84A3BA652 /* UiGuiIndentServer.h */,
|
||||
01A925071F5E8C4DEAA029A7 /* UiGuiIniFileParser.h */,
|
||||
AC4AC748C3685570D9D8B977 /* UiGuiSettings.h */,
|
||||
3194C2F269DA07FBC8FB120D /* UiGuiSettingsDialog.h */,
|
||||
5FDBC0A18FE03C4893ABD97E /* UiGuiSystemInfo.h */,
|
||||
F45A82FFD3FBFC99A2A0B897 /* UiGuiVersion.h */,
|
||||
240575E52D89C74CAFF8C83F /* UpdateCheckDialog.h */,
|
||||
CAC892C702EF9F77734C8010 /* debugging */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
FB61758D0F0FDA4BA867C3D5 /* Sources */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
06674E1DE8D3EB6E763DFFDA /* src */,
|
||||
B06B937E4E5DB1B571475081 /* resources */,
|
||||
);
|
||||
name = Sources;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
A630BEF242261A8F9F0C2E16 /* UniversalIndentGUI */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = E938E43C14AC74310066EAA2 /* Build configuration list for PBXNativeTarget "UniversalIndentGUI" */;
|
||||
buildPhases = (
|
||||
D7BA7D76DAB5DD13389D6332 /* Qt Qmake */,
|
||||
A0A52A2ADF7A1E2A99738674 /* Qt Preprocessors */,
|
||||
F6069D5A5DA8AA28EDB8B3C6 /* Project Copy */,
|
||||
C29B8785722055ED95EF7B57 /* Build Sources */,
|
||||
2A1043669E6E5A7426EA502A /* Frameworks & Libraries */,
|
||||
3787F99312C85FF0073FD7BA /* Bundle Resources */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = UniversalIndentGUI;
|
||||
productInstallPath = release/;
|
||||
productName = UniversalIndentGUI;
|
||||
productReference = E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */;
|
||||
productType = "com.apple.product-type.application";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
91B15E841AA80083484172DE /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 2A951308CDB28F104D0A4BD2 /* Build configuration list for PBXProject "UniversalIndentGUI" */;
|
||||
compatibilityVersion = "Xcode 2.4";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 1;
|
||||
knownRegions = (
|
||||
English,
|
||||
Japanese,
|
||||
French,
|
||||
German,
|
||||
);
|
||||
mainGroup = 05596AB53D8D521C69802C27 /* UniversalIndentGUI */;
|
||||
productRefGroup = E938E42D14AC74220066EAA2 /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
A630BEF242261A8F9F0C2E16 /* UniversalIndentGUI */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
3787F99312C85FF0073FD7BA /* Bundle Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
358CDAA858B633E7AD0B6646 /* UniversalIndentGUI.icns in Bundle Resources */,
|
||||
);
|
||||
name = "Bundle Resources";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
A0A52A2ADF7A1E2A99738674 /* Qt Preprocessors */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
name = "Qt Preprocessors";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "make -C /Volumes/SHARED/Programming/uigui/universalindent/trunk -f 'UniversalIndentGUI.xcodeproj/qt_preprocess.mak'";
|
||||
};
|
||||
D7BA7D76DAB5DD13389D6332 /* Qt Qmake */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
name = "Qt Qmake";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "make -C /Volumes/SHARED/Programming/uigui/universalindent/trunk -f 'UniversalIndentGUI.xcodeproj/qt_makeqmake.mak'";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
C29B8785722055ED95EF7B57 /* Build Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
2B7F90DE44210DB9F5D23F0C /* AboutDialog.cpp in Build Sources */,
|
||||
157D8322CB15EB4B4B698465 /* AboutDialogGraphicsView.cpp in Build Sources */,
|
||||
CE0306F2BD402BE1CC71BA98 /* IndentHandler.cpp in Build Sources */,
|
||||
FD1638E377D97C82BDB438FB /* main.cpp in Build Sources */,
|
||||
AAC1168526D0C37A3F415917 /* MainWindow.cpp in Build Sources */,
|
||||
64CDA74634FD0C1F9265CF5F /* SettingsPaths.cpp in Build Sources */,
|
||||
45FD613422A15DDFF65F07EB /* TemplateBatchScript.cpp in Build Sources */,
|
||||
2E0B7B483AE3DAFB774883DC /* UiGuiErrorMessage.cpp in Build Sources */,
|
||||
ED461CD43406DFA44318404B /* UiGuiHighlighter.cpp in Build Sources */,
|
||||
83EFC8071DE20B90AE46E0A1 /* UiGuiIndentServer.cpp in Build Sources */,
|
||||
D05E9C8E00DF8978FAD6C45F /* UiGuiIniFileParser.cpp in Build Sources */,
|
||||
8DFAEC14C5621835B85BDBBB /* UiGuiSettings.cpp in Build Sources */,
|
||||
07182A1FDE8301C8D9EAF7F5 /* UiGuiSettingsDialog.cpp in Build Sources */,
|
||||
A56B320001BC86C5B01B08D0 /* UiGuiSystemInfo.cpp in Build Sources */,
|
||||
A87876F3A24FCE545FEAFB05 /* UiGuiVersion.cpp in Build Sources */,
|
||||
F42AF6C1FF5FF9F82C3E049D /* UpdateCheckDialog.cpp in Build Sources */,
|
||||
0794A9D3A24B32A06CD8CA37 /* TSLogger.cpp in Build Sources */,
|
||||
033FA4A2951F6995E4B52E75 /* moc_AboutDialog.cpp in Build Sources */,
|
||||
86D03C28F9A095696FA4C465 /* moc_AboutDialogGraphicsView.cpp in Build Sources */,
|
||||
447799AD66EF47D36B5A72E3 /* moc_IndentHandler.cpp in Build Sources */,
|
||||
1446C37D55222BE8281C2D84 /* moc_MainWindow.cpp in Build Sources */,
|
||||
4393711A82B0A27E8301FEB8 /* moc_UiGuiErrorMessage.cpp in Build Sources */,
|
||||
10D0CC7BD2D2E5A3A90EEF25 /* moc_UiGuiHighlighter.cpp in Build Sources */,
|
||||
8DCA76267BA4834F731C5BAB /* moc_UiGuiIndentServer.cpp in Build Sources */,
|
||||
9892D98357F2D175D03F6488 /* moc_UiGuiSettings.cpp in Build Sources */,
|
||||
2CE072BF0886F682F0FE8266 /* moc_UiGuiSettingsDialog.cpp in Build Sources */,
|
||||
54824FDC5DD27B6216E263F5 /* moc_UpdateCheckDialog.cpp in Build Sources */,
|
||||
C61FC1CBE0E603A32A3D1D8E /* moc_TSLogger.cpp in Build Sources */,
|
||||
4DAB46634D6A37252BC2E3D4 /* qrc_Icons.cpp in Build Sources */,
|
||||
);
|
||||
name = "Build Sources";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
8DB1DD96F65B1BF1FFC506E0 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
95E1EB2E5DDD587BE5B3E548 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
COPY_PHASE_STRIP = YES;
|
||||
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
E938E43414AC74230066EAA2 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = x86_64;
|
||||
BUILD_ROOT = /Volumes/SHARED/Programming/uigui/universalindent/trunk;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DYLIB_COMPATIBILITY_VERSION = 1.0;
|
||||
DYLIB_CURRENT_VERSION = 1.0.0;
|
||||
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
release/moc,
|
||||
src,
|
||||
/opt/local/include/QtScript,
|
||||
/opt/local/include/QtGui,
|
||||
/opt/local/include/QtNetwork,
|
||||
/opt/local/include/QtCore,
|
||||
/opt/local/include,
|
||||
release/uic,
|
||||
/usr/local/include,
|
||||
/System/Library/Frameworks/CarbonCore.framework/Headers,
|
||||
"/opt/local/share/qt4/mkspecs/macx-xcode",
|
||||
);
|
||||
INFOPLIST_FILE = Info.plist;
|
||||
INSTALL_DIR = /Volumes/SHARED/Programming/uigui/universalindent/trunk/release/;
|
||||
LEXFLAGS = "";
|
||||
LIBRARY_SEARCH_PATHS = /opt/local/lib;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
||||
OBJROOT = release/obj/;
|
||||
OTHER_CFLAGS = (
|
||||
"-pipe",
|
||||
"-O2",
|
||||
"-Wall",
|
||||
"-W",
|
||||
"-DQT_NO_DEBUG",
|
||||
"-DQT_SCRIPT_LIB",
|
||||
"-DQT_GUI_LIB",
|
||||
"-DQT_NETWORK_LIB",
|
||||
"-DQT_CORE_LIB",
|
||||
"-DQT_SHARED",
|
||||
);
|
||||
OTHER_CPLUSPLUSFLAGS = (
|
||||
"-pipe",
|
||||
"-O2",
|
||||
"-Wall",
|
||||
"-W",
|
||||
"-DQT_NO_DEBUG",
|
||||
"-DQT_SCRIPT_LIB",
|
||||
"-DQT_GUI_LIB",
|
||||
"-DQT_NETWORK_LIB",
|
||||
"-DQT_CORE_LIB",
|
||||
"-DQT_SHARED",
|
||||
);
|
||||
OTHER_LDFLAGS = (
|
||||
"-headerpad_max_install_names",
|
||||
"-lqscintilla2_qt4",
|
||||
"-L/opt/local/lib",
|
||||
);
|
||||
OTHER_REZFLAGS = "";
|
||||
PREBINDING = NO;
|
||||
PRODUCT_NAME = UniversalIndentGUI;
|
||||
SECTORDER_FLAGS = "";
|
||||
WARNING_CFLAGS = "";
|
||||
YACCFLAGS = "-d";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
E938E43514AC74230066EAA2 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = x86_64;
|
||||
BUILD_ROOT = /Volumes/SHARED/Programming/uigui/universalindent/trunk;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DYLIB_COMPATIBILITY_VERSION = 1.0;
|
||||
DYLIB_CURRENT_VERSION = 1.0.0;
|
||||
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
release/moc,
|
||||
src,
|
||||
/opt/local/include/QtScript,
|
||||
/opt/local/include/QtGui,
|
||||
/opt/local/include/QtNetwork,
|
||||
/opt/local/include/QtCore,
|
||||
/opt/local/include,
|
||||
release/uic,
|
||||
/usr/local/include,
|
||||
/System/Library/Frameworks/CarbonCore.framework/Headers,
|
||||
"/opt/local/share/qt4/mkspecs/macx-xcode",
|
||||
);
|
||||
INFOPLIST_FILE = Info.plist;
|
||||
INSTALL_DIR = /Volumes/SHARED/Programming/uigui/universalindent/trunk/release/;
|
||||
LEXFLAGS = "";
|
||||
LIBRARY_SEARCH_PATHS = /opt/local/lib;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
||||
OBJROOT = release/obj/;
|
||||
OTHER_CFLAGS = (
|
||||
"-pipe",
|
||||
"-O2",
|
||||
"-Wall",
|
||||
"-W",
|
||||
"-DQT_NO_DEBUG",
|
||||
"-DQT_SCRIPT_LIB",
|
||||
"-DQT_GUI_LIB",
|
||||
"-DQT_NETWORK_LIB",
|
||||
"-DQT_CORE_LIB",
|
||||
"-DQT_SHARED",
|
||||
);
|
||||
OTHER_CPLUSPLUSFLAGS = (
|
||||
"-pipe",
|
||||
"-O2",
|
||||
"-Wall",
|
||||
"-W",
|
||||
"-DQT_NO_DEBUG",
|
||||
"-DQT_SCRIPT_LIB",
|
||||
"-DQT_GUI_LIB",
|
||||
"-DQT_NETWORK_LIB",
|
||||
"-DQT_CORE_LIB",
|
||||
"-DQT_SHARED",
|
||||
);
|
||||
OTHER_LDFLAGS = (
|
||||
"-headerpad_max_install_names",
|
||||
"-lqscintilla2_qt4",
|
||||
"-L/opt/local/lib",
|
||||
);
|
||||
OTHER_REZFLAGS = "";
|
||||
PREBINDING = NO;
|
||||
PRODUCT_NAME = UniversalIndentGUI;
|
||||
SECTORDER_FLAGS = "";
|
||||
WARNING_CFLAGS = "";
|
||||
YACCFLAGS = "-d";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
E938E43614AC74230066EAA2 /* Default */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = x86_64;
|
||||
BUILD_ROOT = /Volumes/SHARED/Programming/uigui/universalindent/trunk;
|
||||
DYLIB_COMPATIBILITY_VERSION = 1.0;
|
||||
DYLIB_CURRENT_VERSION = 1.0.0;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
release/moc,
|
||||
src,
|
||||
/opt/local/include/QtScript,
|
||||
/opt/local/include/QtGui,
|
||||
/opt/local/include/QtNetwork,
|
||||
/opt/local/include/QtCore,
|
||||
/opt/local/include,
|
||||
release/uic,
|
||||
/usr/local/include,
|
||||
/System/Library/Frameworks/CarbonCore.framework/Headers,
|
||||
"/opt/local/share/qt4/mkspecs/macx-xcode",
|
||||
);
|
||||
INFOPLIST_FILE = Info.plist;
|
||||
INSTALL_DIR = /Volumes/SHARED/Programming/uigui/universalindent/trunk/release/;
|
||||
LEXFLAGS = "";
|
||||
LIBRARY_SEARCH_PATHS = /opt/local/lib;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.6;
|
||||
OBJROOT = release/obj/;
|
||||
OTHER_CFLAGS = (
|
||||
"-pipe",
|
||||
"-O2",
|
||||
"-Wall",
|
||||
"-W",
|
||||
"-DQT_NO_DEBUG",
|
||||
"-DQT_SCRIPT_LIB",
|
||||
"-DQT_GUI_LIB",
|
||||
"-DQT_NETWORK_LIB",
|
||||
"-DQT_CORE_LIB",
|
||||
"-DQT_SHARED",
|
||||
);
|
||||
OTHER_CPLUSPLUSFLAGS = (
|
||||
"-pipe",
|
||||
"-O2",
|
||||
"-Wall",
|
||||
"-W",
|
||||
"-DQT_NO_DEBUG",
|
||||
"-DQT_SCRIPT_LIB",
|
||||
"-DQT_GUI_LIB",
|
||||
"-DQT_NETWORK_LIB",
|
||||
"-DQT_CORE_LIB",
|
||||
"-DQT_SHARED",
|
||||
);
|
||||
OTHER_LDFLAGS = (
|
||||
"-headerpad_max_install_names",
|
||||
"-lqscintilla2_qt4",
|
||||
"-L/opt/local/lib",
|
||||
);
|
||||
OTHER_REZFLAGS = "";
|
||||
PREBINDING = NO;
|
||||
PRODUCT_NAME = UniversalIndentGUI;
|
||||
SECTORDER_FLAGS = "";
|
||||
WARNING_CFLAGS = "";
|
||||
YACCFLAGS = "-d";
|
||||
};
|
||||
name = Default;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
2A951308CDB28F104D0A4BD2 /* Build configuration list for PBXProject "UniversalIndentGUI" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
8DB1DD96F65B1BF1FFC506E0 /* Debug */,
|
||||
95E1EB2E5DDD587BE5B3E548 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
E938E43C14AC74310066EAA2 /* Build configuration list for PBXNativeTarget "UniversalIndentGUI" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
E938E43414AC74230066EAA2 /* Debug */,
|
||||
E938E43514AC74230066EAA2 /* Release */,
|
||||
E938E43614AC74230066EAA2 /* Default */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Default;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 91B15E841AA80083484172DE /* Project object */;
|
||||
}
|
@ -1,73 +0,0 @@
|
||||
#############################################################################
|
||||
# Makefile for building: release/UniversalIndentGUI.app/Contents/MacOS/UniversalIndentGUI
|
||||
# Generated by qmake (2.01a) (Qt 4.7.4) on: Do. Dez 29 11:10:32 2011
|
||||
# Project: UniversalIndentGUI.pro
|
||||
# Template: app
|
||||
# Command: /opt/local/bin/qmake -spec /opt/local/share/qt4/mkspecs/macx-xcode -o UniversalIndentGUI.xcodeproj/project.pbxproj UniversalIndentGUI.pro
|
||||
#############################################################################
|
||||
|
||||
QMAKE = /opt/local/bin/qmake
|
||||
UniversalIndentGUI.xcodeproj/project.pbxproj: UniversalIndentGUI.pro /opt/local/share/qt4/mkspecs/macx-xcode/qmake.conf /opt/local/share/qt4/mkspecs/common/unix.conf \
|
||||
/opt/local/share/qt4/mkspecs/common/mac.conf \
|
||||
/opt/local/share/qt4/mkspecs/common/mac-g++.conf \
|
||||
/opt/local/share/qt4/mkspecs/qconfig.pri \
|
||||
/opt/local/share/qt4/mkspecs/modules/qt_webkit_version.pri \
|
||||
/opt/local/share/qt4/mkspecs/features/qt_functions.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/qt_config.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/exclusive_builds.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/default_pre.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/mac/default_pre.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/release.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/debug_and_release.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/default_post.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/mac/default_post.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/mac/x86_64.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/mac/objective_c.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/warn_on.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/qt.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/unix/thread.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/moc.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/mac/rez.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/mac/sdk.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/resources.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/uic.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/yacc.prf \
|
||||
/opt/local/share/qt4/mkspecs/features/lex.prf \
|
||||
/opt/local/lib/libQtScript.prl \
|
||||
/opt/local/lib/libQtCore.prl \
|
||||
/opt/local/lib/libQtGui.prl \
|
||||
/opt/local/lib/libQtNetwork.prl
|
||||
$(QMAKE) -spec /opt/local/share/qt4/mkspecs/macx-xcode -o UniversalIndentGUI.xcodeproj/project.pbxproj UniversalIndentGUI.pro
|
||||
/opt/local/share/qt4/mkspecs/common/unix.conf:
|
||||
/opt/local/share/qt4/mkspecs/common/mac.conf:
|
||||
/opt/local/share/qt4/mkspecs/common/mac-g++.conf:
|
||||
/opt/local/share/qt4/mkspecs/qconfig.pri:
|
||||
/opt/local/share/qt4/mkspecs/modules/qt_webkit_version.pri:
|
||||
/opt/local/share/qt4/mkspecs/features/qt_functions.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/qt_config.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/exclusive_builds.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/default_pre.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/mac/default_pre.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/release.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/debug_and_release.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/default_post.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/mac/default_post.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/mac/x86_64.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/mac/objective_c.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/warn_on.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/qt.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/unix/thread.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/moc.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/mac/rez.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/mac/sdk.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/resources.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/uic.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/yacc.prf:
|
||||
/opt/local/share/qt4/mkspecs/features/lex.prf:
|
||||
/opt/local/lib/libQtScript.prl:
|
||||
/opt/local/lib/libQtCore.prl:
|
||||
/opt/local/lib/libQtGui.prl:
|
||||
/opt/local/lib/libQtNetwork.prl:
|
||||
qmake: FORCE
|
||||
@$(QMAKE) -spec /opt/local/share/qt4/mkspecs/macx-xcode -o UniversalIndentGUI.xcodeproj/project.pbxproj UniversalIndentGUI.pro
|
||||
|
@ -1,116 +0,0 @@
|
||||
#############################################################################
|
||||
# Makefile for building: release/UniversalIndentGUI.app/Contents/MacOS/UniversalIndentGUI
|
||||
# Generated by qmake (2.01a) (Qt 4.7.4) on: Do. Dez 29 11:10:32 2011
|
||||
# Project: UniversalIndentGUI.pro
|
||||
# Template: app
|
||||
# Command: /opt/local/bin/qmake -spec /opt/local/share/qt4/mkspecs/macx-xcode -o UniversalIndentGUI.xcodeproj/project.pbxproj UniversalIndentGUI.pro
|
||||
#############################################################################
|
||||
|
||||
MOC = /opt/local/bin/moc
|
||||
UIC = /opt/local/bin/uic
|
||||
LEX = flex
|
||||
LEXFLAGS =
|
||||
YACC = yacc
|
||||
YACCFLAGS = -d
|
||||
DEFINES = -DQT_NO_DEBUG -DQT_SCRIPT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED
|
||||
INCPATH = -I/opt/local/share/qt4/mkspecs/macx-xcode -I. -Irelease/moc -Isrc -I/opt/local/include/QtScript -I/opt/local/include/QtGui -I/opt/local/include/QtNetwork -I/opt/local/include/QtCore -I/opt/local/include -Irelease/uic -I/usr/local/include -I/System/Library/Frameworks/CarbonCore.framework/Headers
|
||||
DEL_FILE = rm -f
|
||||
MOVE = mv -f
|
||||
|
||||
IMAGES =
|
||||
PARSERS =
|
||||
preprocess: $(PARSERS) compilers
|
||||
clean preprocess_clean: parser_clean compiler_clean
|
||||
|
||||
parser_clean:
|
||||
check: first
|
||||
|
||||
mocclean: compiler_moc_header_clean compiler_moc_source_clean
|
||||
|
||||
mocables: compiler_moc_header_make_all compiler_moc_source_make_all
|
||||
|
||||
compilers: ./release/moc/moc_AboutDialog.cpp ./release/moc/moc_AboutDialogGraphicsView.cpp ./release/moc/moc_IndentHandler.cpp\
|
||||
./release/moc/moc_MainWindow.cpp ./release/moc/moc_UiGuiErrorMessage.cpp ./release/moc/moc_UiGuiHighlighter.cpp\
|
||||
./release/moc/moc_UiGuiIndentServer.cpp ./release/moc/moc_UiGuiSettings.cpp ./release/moc/moc_UiGuiSettingsDialog.cpp\
|
||||
./release/moc/moc_UpdateCheckDialog.cpp ./release/moc/moc_TSLogger.cpp ./release/qrc/qrc_Icons.cpp ./release/uic/ui_MainWindow.h ./release/uic/ui_ToolBarWidget.h ./release/uic/ui_UiGuiSettingsDialog.h\
|
||||
./release/uic/ui_AboutDialog.h ./release/uic/ui_UpdateCheckDialog.h ./release/uic/ui_TSLoggerDialog.h
|
||||
compiler_objective_c_make_all:
|
||||
compiler_objective_c_clean:
|
||||
compiler_moc_header_make_all: release/moc/moc_AboutDialog.cpp release/moc/moc_AboutDialogGraphicsView.cpp release/moc/moc_IndentHandler.cpp release/moc/moc_MainWindow.cpp release/moc/moc_UiGuiErrorMessage.cpp release/moc/moc_UiGuiHighlighter.cpp release/moc/moc_UiGuiIndentServer.cpp release/moc/moc_UiGuiSettings.cpp release/moc/moc_UiGuiSettingsDialog.cpp release/moc/moc_UpdateCheckDialog.cpp release/moc/moc_TSLogger.cpp
|
||||
compiler_moc_header_clean:
|
||||
-$(DEL_FILE) release/moc/moc_AboutDialog.cpp release/moc/moc_AboutDialogGraphicsView.cpp release/moc/moc_IndentHandler.cpp release/moc/moc_MainWindow.cpp release/moc/moc_UiGuiErrorMessage.cpp release/moc/moc_UiGuiHighlighter.cpp release/moc/moc_UiGuiIndentServer.cpp release/moc/moc_UiGuiSettings.cpp release/moc/moc_UiGuiSettingsDialog.cpp release/moc/moc_UpdateCheckDialog.cpp release/moc/moc_TSLogger.cpp
|
||||
release/moc/moc_AboutDialog.cpp: src/AboutDialog.h
|
||||
/opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/AboutDialog.h -o release/moc/moc_AboutDialog.cpp
|
||||
|
||||
release/moc/moc_AboutDialogGraphicsView.cpp: src/AboutDialogGraphicsView.h
|
||||
/opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/AboutDialogGraphicsView.h -o release/moc/moc_AboutDialogGraphicsView.cpp
|
||||
|
||||
release/moc/moc_IndentHandler.cpp: src/IndentHandler.h
|
||||
/opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/IndentHandler.h -o release/moc/moc_IndentHandler.cpp
|
||||
|
||||
release/moc/moc_MainWindow.cpp: src/MainWindow.h
|
||||
/opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/MainWindow.h -o release/moc/moc_MainWindow.cpp
|
||||
|
||||
release/moc/moc_UiGuiErrorMessage.cpp: src/UiGuiErrorMessage.h
|
||||
/opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/UiGuiErrorMessage.h -o release/moc/moc_UiGuiErrorMessage.cpp
|
||||
|
||||
release/moc/moc_UiGuiHighlighter.cpp: src/UiGuiHighlighter.h
|
||||
/opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/UiGuiHighlighter.h -o release/moc/moc_UiGuiHighlighter.cpp
|
||||
|
||||
release/moc/moc_UiGuiIndentServer.cpp: src/UiGuiIndentServer.h
|
||||
/opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/UiGuiIndentServer.h -o release/moc/moc_UiGuiIndentServer.cpp
|
||||
|
||||
release/moc/moc_UiGuiSettings.cpp: src/UiGuiSettings.h
|
||||
/opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/UiGuiSettings.h -o release/moc/moc_UiGuiSettings.cpp
|
||||
|
||||
release/moc/moc_UiGuiSettingsDialog.cpp: src/UiGuiSettingsDialog.h
|
||||
/opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/UiGuiSettingsDialog.h -o release/moc/moc_UiGuiSettingsDialog.cpp
|
||||
|
||||
release/moc/moc_UpdateCheckDialog.cpp: src/UpdateCheckDialog.h
|
||||
/opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/UpdateCheckDialog.h -o release/moc/moc_UpdateCheckDialog.cpp
|
||||
|
||||
release/moc/moc_TSLogger.cpp: src/debugging/TSLogger.h
|
||||
/opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/debugging/TSLogger.h -o release/moc/moc_TSLogger.cpp
|
||||
|
||||
compiler_rcc_make_all: release/qrc/qrc_Icons.cpp
|
||||
compiler_rcc_clean:
|
||||
-$(DEL_FILE) release/qrc/qrc_Icons.cpp
|
||||
release/qrc/qrc_Icons.cpp: resources/Icons.qrc
|
||||
/opt/local/bin/rcc -name Icons resources/Icons.qrc -o release/qrc/qrc_Icons.cpp
|
||||
|
||||
compiler_image_collection_make_all: release/uic/qmake_image_collection.cpp
|
||||
compiler_image_collection_clean:
|
||||
-$(DEL_FILE) release/uic/qmake_image_collection.cpp
|
||||
compiler_moc_source_make_all:
|
||||
compiler_moc_source_clean:
|
||||
compiler_rez_source_make_all:
|
||||
compiler_rez_source_clean:
|
||||
compiler_uic_make_all: release/uic/ui_MainWindow.h release/uic/ui_ToolBarWidget.h release/uic/ui_UiGuiSettingsDialog.h release/uic/ui_AboutDialog.h release/uic/ui_UpdateCheckDialog.h release/uic/ui_TSLoggerDialog.h
|
||||
compiler_uic_clean:
|
||||
-$(DEL_FILE) release/uic/ui_MainWindow.h release/uic/ui_ToolBarWidget.h release/uic/ui_UiGuiSettingsDialog.h release/uic/ui_AboutDialog.h release/uic/ui_UpdateCheckDialog.h release/uic/ui_TSLoggerDialog.h
|
||||
release/uic/ui_MainWindow.h: src/MainWindow.ui
|
||||
/opt/local/bin/uic src/MainWindow.ui -o release/uic/ui_MainWindow.h
|
||||
|
||||
release/uic/ui_ToolBarWidget.h: src/ToolBarWidget.ui
|
||||
/opt/local/bin/uic src/ToolBarWidget.ui -o release/uic/ui_ToolBarWidget.h
|
||||
|
||||
release/uic/ui_UiGuiSettingsDialog.h: src/UiGuiSettingsDialog.ui
|
||||
/opt/local/bin/uic src/UiGuiSettingsDialog.ui -o release/uic/ui_UiGuiSettingsDialog.h
|
||||
|
||||
release/uic/ui_AboutDialog.h: src/AboutDialog.ui
|
||||
/opt/local/bin/uic src/AboutDialog.ui -o release/uic/ui_AboutDialog.h
|
||||
|
||||
release/uic/ui_UpdateCheckDialog.h: src/UpdateCheckDialog.ui
|
||||
/opt/local/bin/uic src/UpdateCheckDialog.ui -o release/uic/ui_UpdateCheckDialog.h
|
||||
|
||||
release/uic/ui_TSLoggerDialog.h: src/debugging/TSLoggerDialog.ui
|
||||
/opt/local/bin/uic src/debugging/TSLoggerDialog.ui -o release/uic/ui_TSLoggerDialog.h
|
||||
|
||||
compiler_yacc_decl_make_all:
|
||||
compiler_yacc_decl_clean:
|
||||
compiler_yacc_impl_make_all:
|
||||
compiler_yacc_impl_clean:
|
||||
compiler_lex_make_all:
|
||||
compiler_lex_clean:
|
||||
compiler_clean: compiler_moc_header_clean compiler_rcc_clean compiler_uic_clean
|
||||
|
@ -1,433 +0,0 @@
|
||||
// !$*UTF8*$!
|
||||
{
|
||||
1C0B64226A129D35F02DC004 /* MainWindow.cpp */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {1040, 18980}}";
|
||||
sepNavSelRange = "{3643, 0}";
|
||||
sepNavVisRange = "{3137, 827}";
|
||||
};
|
||||
};
|
||||
3194C2F269DA07FBC8FB120D /* UiGuiSettingsDialog.h */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {1040, 702}}";
|
||||
sepNavSelRange = "{1518, 0}";
|
||||
sepNavVisRange = "{1431, 541}";
|
||||
};
|
||||
};
|
||||
5EEB118D3C499097B07CA6DC /* TSLogger.cpp */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {1040, 3419}}";
|
||||
sepNavSelRange = "{3754, 9}";
|
||||
sepNavVisRange = "{3868, 1309}";
|
||||
};
|
||||
};
|
||||
7B749332F0EE106BAF891CBB /* IndentHandler.cpp */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {1475, 23205}}";
|
||||
sepNavSelRange = "{79164, 0}";
|
||||
sepNavVisRange = "{78562, 741}";
|
||||
};
|
||||
};
|
||||
7EC3C68A81EFFF79B6CA22AC /* main.cpp */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {1055, 3458}}";
|
||||
sepNavSelRange = "{9296, 0}";
|
||||
sepNavVisRange = "{8787, 1089}";
|
||||
};
|
||||
};
|
||||
91B15E841AA80083484172DE /* Project object */ = {
|
||||
activeBuildConfigurationName = Release;
|
||||
activeExecutable = E938E42E14AC74220066EAA2 /* UniversalIndentGUI */;
|
||||
activeTarget = A630BEF242261A8F9F0C2E16 /* UniversalIndentGUI */;
|
||||
breakpoints = (
|
||||
E938E45B14AC75750066EAA2 /* MainWindow.cpp:101 */,
|
||||
E938E46114AC75930066EAA2 /* MainWindow.cpp:104 */,
|
||||
E938E46914AC760C0066EAA2 /* UiGuiSettings.cpp:65 */,
|
||||
E938E46B14AC76120066EAA2 /* UiGuiSettings.cpp:81 */,
|
||||
);
|
||||
codeSenseManager = E938E40714AC700F0066EAA2 /* Code sense */;
|
||||
executables = (
|
||||
E938E42E14AC74220066EAA2 /* UniversalIndentGUI */,
|
||||
);
|
||||
perUserDictionary = {
|
||||
PBXConfiguration.PBXFileTableDataSource3.PBXExecutablesDataSource = {
|
||||
PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
|
||||
PBXFileTableDataSourceColumnSortingKey = PBXExecutablesDataSource_NameID;
|
||||
PBXFileTableDataSourceColumnWidthsKey = (
|
||||
22,
|
||||
300,
|
||||
750,
|
||||
);
|
||||
PBXFileTableDataSourceColumnsKey = (
|
||||
PBXExecutablesDataSource_ActiveFlagID,
|
||||
PBXExecutablesDataSource_NameID,
|
||||
PBXExecutablesDataSource_CommentsID,
|
||||
);
|
||||
};
|
||||
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
|
||||
PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
|
||||
PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
|
||||
PBXFileTableDataSourceColumnWidthsKey = (
|
||||
20,
|
||||
862,
|
||||
20,
|
||||
48,
|
||||
43,
|
||||
43,
|
||||
20,
|
||||
);
|
||||
PBXFileTableDataSourceColumnsKey = (
|
||||
PBXFileDataSource_FiletypeID,
|
||||
PBXFileDataSource_Filename_ColumnID,
|
||||
PBXFileDataSource_Built_ColumnID,
|
||||
PBXFileDataSource_ObjectSize_ColumnID,
|
||||
PBXFileDataSource_Errors_ColumnID,
|
||||
PBXFileDataSource_Warnings_ColumnID,
|
||||
PBXFileDataSource_Target_ColumnID,
|
||||
);
|
||||
};
|
||||
PBXConfiguration.PBXTargetDataSource.PBXTargetDataSource = {
|
||||
PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
|
||||
PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
|
||||
PBXFileTableDataSourceColumnWidthsKey = (
|
||||
20,
|
||||
822,
|
||||
60,
|
||||
20,
|
||||
48,
|
||||
43,
|
||||
43,
|
||||
);
|
||||
PBXFileTableDataSourceColumnsKey = (
|
||||
PBXFileDataSource_FiletypeID,
|
||||
PBXFileDataSource_Filename_ColumnID,
|
||||
PBXTargetDataSource_PrimaryAttribute,
|
||||
PBXFileDataSource_Built_ColumnID,
|
||||
PBXFileDataSource_ObjectSize_ColumnID,
|
||||
PBXFileDataSource_Errors_ColumnID,
|
||||
PBXFileDataSource_Warnings_ColumnID,
|
||||
);
|
||||
};
|
||||
PBXPerProjectTemplateStateSaveDate = 346855027;
|
||||
PBXWorkspaceStateSaveDate = 346855027;
|
||||
};
|
||||
perUserProjectItems = {
|
||||
E938E46314AC75960066EAA2 /* PBXTextBookmark */ = E938E46314AC75960066EAA2 /* PBXTextBookmark */;
|
||||
E938E48114AC77A80066EAA2 /* PBXTextBookmark */ = E938E48114AC77A80066EAA2 /* PBXTextBookmark */;
|
||||
E938E4B314AC7A360066EAA2 /* PBXTextBookmark */ = E938E4B314AC7A360066EAA2 /* PBXTextBookmark */;
|
||||
E938E4B714AC7A360066EAA2 /* PBXTextBookmark */ = E938E4B714AC7A360066EAA2 /* PBXTextBookmark */;
|
||||
E938E4C714AC7B520066EAA2 /* PBXTextBookmark */ = E938E4C714AC7B520066EAA2 /* PBXTextBookmark */;
|
||||
E938E4CD14AC7B650066EAA2 /* PBXTextBookmark */ = E938E4CD14AC7B650066EAA2 /* PBXTextBookmark */;
|
||||
E938E4D314AC7D730066EAA2 /* PBXTextBookmark */ = E938E4D314AC7D730066EAA2 /* PBXTextBookmark */;
|
||||
E938E4D414AC7D730066EAA2 /* PBXTextBookmark */ = E938E4D414AC7D730066EAA2 /* PBXTextBookmark */;
|
||||
E938E4D514AC7D730066EAA2 /* PBXTextBookmark */ = E938E4D514AC7D730066EAA2 /* PBXTextBookmark */;
|
||||
E938E4D614AC7D730066EAA2 /* PBXTextBookmark */ = E938E4D614AC7D730066EAA2 /* PBXTextBookmark */;
|
||||
E938E4E714ACB49E0066EAA2 /* PBXTextBookmark */ = E938E4E714ACB49E0066EAA2 /* PBXTextBookmark */;
|
||||
E938E4E814ACB49E0066EAA2 /* PBXTextBookmark */ = E938E4E814ACB49E0066EAA2 /* PBXTextBookmark */;
|
||||
E938E4E914ACB49E0066EAA2 /* PBXTextBookmark */ = E938E4E914ACB49E0066EAA2 /* PBXTextBookmark */;
|
||||
};
|
||||
sourceControlManager = E938E40614AC700F0066EAA2 /* Source Control */;
|
||||
userBuildSettings = {
|
||||
};
|
||||
};
|
||||
944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {1040, 9126}}";
|
||||
sepNavSelRange = "{2691, 0}";
|
||||
sepNavVisRange = "{2803, 1071}";
|
||||
};
|
||||
};
|
||||
A630BEF242261A8F9F0C2E16 /* UniversalIndentGUI */ = {
|
||||
activeExec = 0;
|
||||
executables = (
|
||||
E938E42E14AC74220066EAA2 /* UniversalIndentGUI */,
|
||||
);
|
||||
};
|
||||
AC4AC748C3685570D9D8B977 /* UiGuiSettings.h */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {1040, 1118}}";
|
||||
sepNavSelRange = "{1440, 0}";
|
||||
sepNavVisRange = "{463, 1236}";
|
||||
};
|
||||
};
|
||||
D807F0DE3110F0AD45593FA7 /* MainWindow.h */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {1247, 1924}}";
|
||||
sepNavSelRange = "{4885, 0}";
|
||||
sepNavVisRange = "{1496, 850}";
|
||||
};
|
||||
};
|
||||
E938E40614AC700F0066EAA2 /* Source Control */ = {
|
||||
isa = PBXSourceControlManager;
|
||||
fallbackIsa = XCSourceControlManager;
|
||||
isSCMEnabled = 0;
|
||||
scmConfiguration = {
|
||||
repositoryNamesForRoots = {
|
||||
"" = "";
|
||||
};
|
||||
};
|
||||
};
|
||||
E938E40714AC700F0066EAA2 /* Code sense */ = {
|
||||
isa = PBXCodeSenseManager;
|
||||
indexTemplatePath = "";
|
||||
};
|
||||
E938E42E14AC74220066EAA2 /* UniversalIndentGUI */ = {
|
||||
isa = PBXExecutable;
|
||||
activeArgIndices = (
|
||||
);
|
||||
argumentStrings = (
|
||||
);
|
||||
autoAttachOnCrash = 1;
|
||||
breakpointsEnabled = 1;
|
||||
configStateDict = {
|
||||
};
|
||||
customDataFormattersEnabled = 1;
|
||||
dataTipCustomDataFormattersEnabled = 1;
|
||||
dataTipShowTypeColumn = 1;
|
||||
dataTipSortType = 0;
|
||||
debuggerPlugin = GDBDebugging;
|
||||
disassemblyDisplayState = 0;
|
||||
dylibVariantSuffix = "";
|
||||
enableDebugStr = 1;
|
||||
environmentEntries = (
|
||||
);
|
||||
executableSystemSymbolLevel = 0;
|
||||
executableUserSymbolLevel = 0;
|
||||
libgmallocEnabled = 0;
|
||||
name = UniversalIndentGUI;
|
||||
savedGlobals = {
|
||||
};
|
||||
showTypeColumn = 0;
|
||||
sourceDirectories = (
|
||||
);
|
||||
variableFormatDictionary = {
|
||||
};
|
||||
};
|
||||
E938E45B14AC75750066EAA2 /* MainWindow.cpp:101 */ = {
|
||||
isa = PBXFileBreakpoint;
|
||||
actions = (
|
||||
);
|
||||
breakpointStyle = 0;
|
||||
continueAfterActions = 0;
|
||||
countType = 0;
|
||||
delayBeforeContinue = 0;
|
||||
fileReference = 1C0B64226A129D35F02DC004 /* MainWindow.cpp */;
|
||||
functionName = "MainWindow::MainWindow(QString file2OpenOnStart, QWidget *parent)";
|
||||
hitCount = 1;
|
||||
ignoreCount = 0;
|
||||
lineNumber = 101;
|
||||
location = UniversalIndentGUI;
|
||||
modificationTime = 346848101.622124;
|
||||
originalNumberOfMultipleMatches = 1;
|
||||
state = 0;
|
||||
};
|
||||
E938E46114AC75930066EAA2 /* MainWindow.cpp:104 */ = {
|
||||
isa = PBXFileBreakpoint;
|
||||
actions = (
|
||||
);
|
||||
breakpointStyle = 0;
|
||||
continueAfterActions = 0;
|
||||
countType = 0;
|
||||
delayBeforeContinue = 0;
|
||||
fileReference = 1C0B64226A129D35F02DC004 /* MainWindow.cpp */;
|
||||
functionName = "MainWindow::MainWindow(QString file2OpenOnStart, QWidget *parent)";
|
||||
hitCount = 1;
|
||||
ignoreCount = 0;
|
||||
lineNumber = 104;
|
||||
location = UniversalIndentGUI;
|
||||
modificationTime = 346848114.812431;
|
||||
originalNumberOfMultipleMatches = 1;
|
||||
state = 1;
|
||||
};
|
||||
E938E46314AC75960066EAA2 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = 7EC3C68A81EFFF79B6CA22AC /* main.cpp */;
|
||||
name = "main.cpp: 248";
|
||||
rLen = 0;
|
||||
rLoc = 9296;
|
||||
rType = 0;
|
||||
vrLen = 1089;
|
||||
vrLoc = 8787;
|
||||
};
|
||||
E938E46514AC75960066EAA2 /* qsharedpointer_impl.h */ = {
|
||||
isa = PBXFileReference;
|
||||
lastKnownFileType = sourcecode.c.h;
|
||||
name = qsharedpointer_impl.h;
|
||||
path = /opt/local/include/QtCore/qsharedpointer_impl.h;
|
||||
sourceTree = "<absolute>";
|
||||
};
|
||||
E938E46914AC760C0066EAA2 /* UiGuiSettings.cpp:65 */ = {
|
||||
isa = PBXFileBreakpoint;
|
||||
actions = (
|
||||
);
|
||||
breakpointStyle = 0;
|
||||
continueAfterActions = 0;
|
||||
countType = 0;
|
||||
delayBeforeContinue = 0;
|
||||
fileReference = 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */;
|
||||
functionName = "UiGuiSettings::getInstance()";
|
||||
hitCount = 2;
|
||||
ignoreCount = 0;
|
||||
lineNumber = 65;
|
||||
location = UniversalIndentGUI;
|
||||
modificationTime = 346848115.5478889;
|
||||
originalNumberOfMultipleMatches = 1;
|
||||
state = 1;
|
||||
};
|
||||
E938E46B14AC76120066EAA2 /* UiGuiSettings.cpp:81 */ = {
|
||||
isa = PBXFileBreakpoint;
|
||||
actions = (
|
||||
);
|
||||
breakpointStyle = 0;
|
||||
continueAfterActions = 0;
|
||||
countType = 0;
|
||||
delayBeforeContinue = 0;
|
||||
fileReference = 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */;
|
||||
functionName = "UiGuiSettings::~UiGuiSettings()";
|
||||
hitCount = 1;
|
||||
ignoreCount = 0;
|
||||
lineNumber = 81;
|
||||
location = UniversalIndentGUI;
|
||||
modificationTime = 346848140.41869;
|
||||
originalNumberOfMultipleMatches = 1;
|
||||
state = 1;
|
||||
};
|
||||
E938E48114AC77A80066EAA2 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = E938E48214AC77A80066EAA2 /* qstringlist.h */;
|
||||
name = "qstringlist.h: 68";
|
||||
rLen = 0;
|
||||
rLoc = 2245;
|
||||
rType = 0;
|
||||
vrLen = 636;
|
||||
vrLoc = 1852;
|
||||
};
|
||||
E938E48214AC77A80066EAA2 /* qstringlist.h */ = {
|
||||
isa = PBXFileReference;
|
||||
lastKnownFileType = sourcecode.c.h;
|
||||
name = qstringlist.h;
|
||||
path = /opt/local/include/QtCore/qstringlist.h;
|
||||
sourceTree = "<absolute>";
|
||||
};
|
||||
E938E4B314AC7A360066EAA2 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = E938E46514AC75960066EAA2 /* qsharedpointer_impl.h */;
|
||||
name = "qsharedpointer_impl.h: 339";
|
||||
rLen = 0;
|
||||
rLoc = 11920;
|
||||
rType = 0;
|
||||
vrLen = 867;
|
||||
vrLoc = 11651;
|
||||
};
|
||||
E938E4B714AC7A360066EAA2 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = AC4AC748C3685570D9D8B977 /* UiGuiSettings.h */;
|
||||
name = "UiGuiSettings.h: 22";
|
||||
rLen = 0;
|
||||
rLoc = 1440;
|
||||
rType = 0;
|
||||
vrLen = 1236;
|
||||
vrLoc = 463;
|
||||
};
|
||||
E938E4C714AC7B520066EAA2 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = 3194C2F269DA07FBC8FB120D /* UiGuiSettingsDialog.h */;
|
||||
name = "UiGuiSettingsDialog.h: 28";
|
||||
rLen = 0;
|
||||
rLoc = 1518;
|
||||
rType = 0;
|
||||
vrLen = 541;
|
||||
vrLoc = 1431;
|
||||
};
|
||||
E938E4CD14AC7B650066EAA2 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = 7B749332F0EE106BAF891CBB /* IndentHandler.cpp */;
|
||||
name = "IndentHandler.cpp: 1728";
|
||||
rLen = 0;
|
||||
rLoc = 79164;
|
||||
rType = 0;
|
||||
vrLen = 741;
|
||||
vrLoc = 78562;
|
||||
};
|
||||
E938E4D314AC7D730066EAA2 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = D807F0DE3110F0AD45593FA7 /* MainWindow.h */;
|
||||
name = "MainWindow.h: 53";
|
||||
rLen = 0;
|
||||
rLoc = 1961;
|
||||
rType = 0;
|
||||
vrLen = 722;
|
||||
vrLoc = 1743;
|
||||
};
|
||||
E938E4D414AC7D730066EAA2 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = 1C0B64226A129D35F02DC004 /* MainWindow.cpp */;
|
||||
name = "MainWindow.cpp: 104";
|
||||
rLen = 0;
|
||||
rLoc = 3643;
|
||||
rType = 0;
|
||||
vrLen = 827;
|
||||
vrLoc = 3137;
|
||||
};
|
||||
E938E4D514AC7D730066EAA2 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */;
|
||||
name = "UiGuiSettings.cpp: 65";
|
||||
rLen = 0;
|
||||
rLoc = 2691;
|
||||
rType = 0;
|
||||
vrLen = 1071;
|
||||
vrLoc = 2803;
|
||||
};
|
||||
E938E4D614AC7D730066EAA2 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = E938E4D714AC7D730066EAA2 /* qglobal.h */;
|
||||
name = "qglobal.h: 1749";
|
||||
rLen = 0;
|
||||
rLoc = 53149;
|
||||
rType = 0;
|
||||
vrLen = 1090;
|
||||
vrLoc = 52596;
|
||||
};
|
||||
E938E4D714AC7D730066EAA2 /* qglobal.h */ = {
|
||||
isa = PBXFileReference;
|
||||
lastKnownFileType = sourcecode.c.h;
|
||||
name = qglobal.h;
|
||||
path = /opt/local/include/QtCore/qglobal.h;
|
||||
sourceTree = "<absolute>";
|
||||
};
|
||||
E938E4E714ACB49E0066EAA2 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = 5EEB118D3C499097B07CA6DC /* TSLogger.cpp */;
|
||||
name = "TSLogger.cpp: 102";
|
||||
rLen = 9;
|
||||
rLoc = 3754;
|
||||
rType = 0;
|
||||
vrLen = 1309;
|
||||
vrLoc = 3868;
|
||||
};
|
||||
E938E4E814ACB49E0066EAA2 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = F45A82FFD3FBFC99A2A0B897 /* UiGuiVersion.h */;
|
||||
rLen = 5;
|
||||
rLoc = 1582;
|
||||
rType = 0;
|
||||
};
|
||||
E938E4E914ACB49E0066EAA2 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = F45A82FFD3FBFC99A2A0B897 /* UiGuiVersion.h */;
|
||||
name = "UiGuiVersion.h: 29";
|
||||
rLen = 0;
|
||||
rLoc = 1699;
|
||||
rType = 0;
|
||||
vrLen = 1100;
|
||||
vrLoc = 780;
|
||||
};
|
||||
F45A82FFD3FBFC99A2A0B897 /* UiGuiVersion.h */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {1040, 520}}";
|
||||
sepNavSelRange = "{1699, 0}";
|
||||
sepNavVisRange = "{780, 1100}";
|
||||
};
|
||||
};
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -1,41 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<VisualStudioToolFile
|
||||
Name="Qt-Rules"
|
||||
Version="8,00"
|
||||
>
|
||||
<Rules>
|
||||
<CustomBuildRule
|
||||
Name="UIC"
|
||||
DisplayName="UIC"
|
||||
CommandLine="uic.exe "$(InputDir)$(InputName).ui" -o "$(OutDir)\tmp\uic\ui_$(InputName).h""
|
||||
Outputs="$(OutDir)\tmp\uic\ui_$(InputName).h"
|
||||
FileExtensions="*.ui"
|
||||
ExecutionDescription="UICing $(InputName).h..."
|
||||
>
|
||||
<Properties>
|
||||
</Properties>
|
||||
</CustomBuildRule>
|
||||
<CustomBuildRule
|
||||
Name="MOC"
|
||||
DisplayName="MOC"
|
||||
CommandLine="moc.exe "$(InputDir)$(InputName).h" -o "$(OutDir)\tmp\moc\moc_$(InputName).cpp""
|
||||
Outputs="$(OutDir)\tmp\moc\moc_$(InputName).cpp"
|
||||
FileExtensions="*.h"
|
||||
ExecutionDescription="MOCing $(InputName).h..."
|
||||
>
|
||||
<Properties>
|
||||
</Properties>
|
||||
</CustomBuildRule>
|
||||
<CustomBuildRule
|
||||
Name="QRC"
|
||||
DisplayName="QRC"
|
||||
CommandLine="rcc.exe -name $(InputName) "$(InputDir)$(InputName).qrc" -o "$(OutDir)\tmp\qrc\qrc_$(InputName).cpp""
|
||||
Outputs="$(OutDir)\tmp\qrc\qrc_$(InputName).cpp"
|
||||
FileExtensions="*.qrc"
|
||||
ExecutionDescription="QRCing $(InputName).h..."
|
||||
>
|
||||
<Properties>
|
||||
</Properties>
|
||||
</CustomBuildRule>
|
||||
</Rules>
|
||||
</VisualStudioToolFile>
|
@ -1,15 +0,0 @@
|
||||
---
|
||||
src/UiGuiSettings.cpp | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
--- a/src/UiGuiSettings.cpp
|
||||
+++ b/src/UiGuiSettings.cpp
|
||||
@@ -181,7 +181,7 @@ bool UiGuiSettings::initSettings()
|
||||
_qsettings->setValue( "UniversalIndentGUI/language", _availableTranslations.indexOf( _qsettings->value("UniversalIndentGUI/language", "").toString() ) );
|
||||
|
||||
// Read the update check settings from the settings file.
|
||||
- _qsettings->setValue( "UniversalIndentGUI/CheckForUpdate", _qsettings->value("UniversalIndentGUI/CheckForUpdate", true) );
|
||||
+ _qsettings->setValue( "UniversalIndentGUI/CheckForUpdate", _qsettings->value("UniversalIndentGUI/CheckForUpdate", false) );
|
||||
_qsettings->setValue( "UniversalIndentGUI/LastUpdateCheck", _qsettings->value("UniversalIndentGUI/LastUpdateCheck", QDate(1900,1,1)) );
|
||||
|
||||
// Read the main window state.
|
@ -1,40 +0,0 @@
|
||||
--- universalindentgui-1.2.0.orig/UniversalIndentGUI.pro
|
||||
+++ universalindentgui-1.2.0/UniversalIndentGUI.pro
|
||||
@@ -23,7 +23,7 @@ macx {
|
||||
ICON = resources/UniversalIndentGUI.icns
|
||||
}
|
||||
else {
|
||||
- LIBS += -lqscintilla2
|
||||
+ LIBS += -lqscintilla2_qt4
|
||||
}
|
||||
|
||||
CONFIG(release, debug|release) {
|
||||
--- universalindentgui-1.2.0.orig/UniversalIndentGUI.xcodeproj/project.pbxproj
|
||||
+++ universalindentgui-1.2.0/UniversalIndentGUI.xcodeproj/project.pbxproj
|
||||
@@ -571,7 +571,7 @@
|
||||
);
|
||||
OTHER_LDFLAGS = (
|
||||
"-headerpad_max_install_names",
|
||||
- "-lqscintilla2",
|
||||
+ "-lqscintilla2_qt4",
|
||||
"-L/opt/local/lib",
|
||||
);
|
||||
OTHER_REZFLAGS = "";
|
||||
@@ -637,7 +637,7 @@
|
||||
);
|
||||
OTHER_LDFLAGS = (
|
||||
"-headerpad_max_install_names",
|
||||
- "-lqscintilla2",
|
||||
+ "-lqscintilla2_qt4",
|
||||
"-L/opt/local/lib",
|
||||
);
|
||||
OTHER_REZFLAGS = "";
|
||||
@@ -701,7 +701,7 @@
|
||||
);
|
||||
OTHER_LDFLAGS = (
|
||||
"-headerpad_max_install_names",
|
||||
- "-lqscintilla2",
|
||||
+ "-lqscintilla2_qt4",
|
||||
"-L/opt/local/lib",
|
||||
);
|
||||
OTHER_REZFLAGS = "";
|
@ -1,2 +0,0 @@
|
||||
disable_check_for_update.patch
|
||||
qsci_rename.patch
|
@ -1,4 +0,0 @@
|
||||
# intended behavior. We don't want to depends on ruby.
|
||||
ruby-script-but-no-ruby-dep usr/share/universalindentgui/indenters/example.rb
|
||||
ruby-script-but-no-ruby-dep usr/share/universalindentgui/indenters/rbeautify.rb
|
||||
ruby-script-but-no-ruby-dep usr/share/universalindentgui/indenters/ruby_formatter.rb
|
@ -1,549 +0,0 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8,00"
|
||||
Name="UniversalIndentGUI"
|
||||
ProjectGUID="{CF521500-824E-4DB7-A7FA-F4A8B6BB008A}"
|
||||
RootNamespace="UniversalIndentGUI"
|
||||
Keyword="Win32Proj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
<ToolFile
|
||||
RelativePath="..\VS8QtRules.rules"
|
||||
/>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(SolutionDir)$(ConfigurationName)\tmp"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="1"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
CommandLine=""
|
||||
/>
|
||||
<Tool
|
||||
Name="MOC"
|
||||
/>
|
||||
<Tool
|
||||
Name="QRC"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="UIC"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions="/D "QT_LARGEFILE_SUPPORT" /D "QT_DLL" /D "QT_GUI_LIB" /D "QT_CORE_LIB" /D "QT_THREAD_SUPPORT""
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories=""$(OutDir)\tmp\uic\";"$(QTDIR)\include\QtNetwork";"$(QTDIR)\include\QtScript""
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;QT_NO_CAST_TO_ASCII"
|
||||
MinimalRebuild="true"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
TreatWChar_tAsBuiltInType="false"
|
||||
UsePrecompiledHeader="0"
|
||||
ObjectFile="$(IntDir)\obj\"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="false"
|
||||
DebugInformationFormat="4"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="qtmaind.lib QtGuid4.lib QtCored4.lib QtNetworkd4.lib QtScriptd4.lib qscintilla2.lib"
|
||||
LinkIncremental="2"
|
||||
IgnoreAllDefaultLibraries="false"
|
||||
IgnoreDefaultLibraryNames="LIBCRMTD.lib"
|
||||
GenerateDebugInformation="true"
|
||||
SubSystem="2"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
EmbedManifest="false"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(SolutionDir)$(ConfigurationName)\tmp"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="1"
|
||||
WholeProgramOptimization="1"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
CommandLine=""
|
||||
/>
|
||||
<Tool
|
||||
Name="MOC"
|
||||
/>
|
||||
<Tool
|
||||
Name="QRC"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="UIC"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""$(OutDir)\tmp\uic\";"$(QTDIR)\include\QtScript""
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS"
|
||||
RuntimeLibrary="2"
|
||||
TreatWChar_tAsBuiltInType="false"
|
||||
UsePrecompiledHeader="0"
|
||||
ObjectFile="$(IntDir)\obj\"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="false"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="qtmain.lib QtGui4.lib QtCore4.lib QtNetwork4.lib QtScript4.lib qscintilla2.lib"
|
||||
LinkIncremental="1"
|
||||
GenerateDebugInformation="true"
|
||||
SubSystem="2"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
VerboseOutput="true"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||
>
|
||||
<File
|
||||
RelativePath=".\AboutDialog.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\AboutDialogGraphicsView.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\IndentHandler.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\main.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\MainWindow.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\SettingsPaths.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\TemplateBatchScript.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiErrorMessage.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiHighlighter.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiIndentServer.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiIniFileParser.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiLogger.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiSettings.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiSettingsDialog.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiSystemInfo.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiVersion.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UpdateCheckDialog.cpp"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||
>
|
||||
<File
|
||||
RelativePath=".\AboutDialog.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\AboutDialogGraphicsView.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\IndentHandler.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\MainWindow.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\SettingsPaths.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\TemplateBatchScript.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiErrorMessage.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiHighlighter.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiIndentServer.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiIniFileParser.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiLogger.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiSettings.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiSettingsDialog.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiSystemInfo.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiVersion.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UpdateCheckDialog.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\resources\Icons.qrc"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\resources\programicon.rc"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Forms (UI)"
|
||||
>
|
||||
<File
|
||||
RelativePath=".\AboutDialog.ui"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\MainWindow.ui"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\ToolBarWidget.ui"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiLoggerDialog.ui"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UiGuiSettingsDialog.ui"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\UpdateCheckDialog.ui"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Generated"
|
||||
>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\moc\moc_AboutDialog.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\moc\moc_AboutDialogGraphicsView.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\moc\moc_IndentHandler.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\moc\moc_MainWindow.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\moc\moc_UiGuiErrorMessage.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\moc\moc_UiGuiHighlighter.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\moc\moc_UiGuiIndentServer.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\moc\moc_UiGuiLogger.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\moc\moc_UiGuiSettings.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\moc\moc_UiGuiSettingsDialog.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\moc\moc_UpdateCheckDialog.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\qrc\qrc_Icons.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\uic\ui_AboutDialog.h"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
ExcludedFromBuild="true"
|
||||
>
|
||||
<Tool
|
||||
Name="MOC"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
ExcludedFromBuild="true"
|
||||
>
|
||||
<Tool
|
||||
Name="MOC"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\uic\ui_MainWindow.h"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
ExcludedFromBuild="true"
|
||||
>
|
||||
<Tool
|
||||
Name="MOC"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
ExcludedFromBuild="true"
|
||||
>
|
||||
<Tool
|
||||
Name="MOC"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\uic\ui_ToolBarWidget.h"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
ExcludedFromBuild="true"
|
||||
>
|
||||
<Tool
|
||||
Name="MOC"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
ExcludedFromBuild="true"
|
||||
>
|
||||
<Tool
|
||||
Name="MOC"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\uic\ui_UiGuiSettingsDialog.h"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
ExcludedFromBuild="true"
|
||||
>
|
||||
<Tool
|
||||
Name="MOC"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
ExcludedFromBuild="true"
|
||||
>
|
||||
<Tool
|
||||
Name="MOC"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="$(OutDir)\tmp\uic\ui_UpdateCheckDialog.h"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
ExcludedFromBuild="true"
|
||||
>
|
||||
<Tool
|
||||
Name="MOC"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
ExcludedFromBuild="true"
|
||||
>
|
||||
<Tool
|
||||
Name="MOC"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
@ -1,387 +0,0 @@
|
||||
# Makefile.in generated by automake 1.9.2 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
top_builddir = ../..
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
INSTALL = @INSTALL@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
subdir = include/tclap
|
||||
DIST_COMMON = $(libtclapinclude_HEADERS) $(srcdir)/Makefile.am \
|
||||
$(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/config/ac_cxx_have_long_long.m4 \
|
||||
$(top_srcdir)/config/ac_cxx_have_sstream.m4 \
|
||||
$(top_srcdir)/config/ac_cxx_have_strstream.m4 \
|
||||
$(top_srcdir)/config/ac_cxx_namespaces.m4 \
|
||||
$(top_srcdir)/config/bb_enable_doxygen.m4 \
|
||||
$(top_srcdir)/configure.in
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
|
||||
CONFIG_HEADER = $(top_builddir)/config/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
||||
am__installdirs = "$(DESTDIR)$(libtclapincludedir)"
|
||||
libtclapincludeHEADERS_INSTALL = $(INSTALL_HEADER)
|
||||
HEADERS = $(libtclapinclude_HEADERS)
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMDEP_FALSE = @AMDEP_FALSE@
|
||||
AMDEP_TRUE = @AMDEP_TRUE@
|
||||
AMTAR = @AMTAR@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
DOC_FALSE = @DOC_FALSE@
|
||||
DOC_TRUE = @DOC_TRUE@
|
||||
DOT = @DOT@
|
||||
DOXYGEN = @DOXYGEN@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
HAVE_GNU_COMPILERS_FALSE = @HAVE_GNU_COMPILERS_FALSE@
|
||||
HAVE_GNU_COMPILERS_TRUE = @HAVE_GNU_COMPILERS_TRUE@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
OBJEXT = @OBJEXT@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
RANLIB = @RANLIB@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
VERSION = @VERSION@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_RANLIB = @ac_ct_RANLIB@
|
||||
ac_ct_STRIP = @ac_ct_STRIP@
|
||||
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
|
||||
am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build_alias = @build_alias@
|
||||
datadir = @datadir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host_alias = @host_alias@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
libtclapincludedir = $(includedir)/tclap
|
||||
libtclapinclude_HEADERS = \
|
||||
CmdLineInterface.h \
|
||||
ArgException.h \
|
||||
CmdLine.h \
|
||||
XorHandler.h \
|
||||
MultiArg.h \
|
||||
UnlabeledMultiArg.h \
|
||||
ValueArg.h \
|
||||
UnlabeledValueArg.h \
|
||||
Visitor.h Arg.h \
|
||||
HelpVisitor.h \
|
||||
SwitchArg.h \
|
||||
MultiSwitchArg.h \
|
||||
VersionVisitor.h \
|
||||
IgnoreRestVisitor.h \
|
||||
CmdLineOutput.h \
|
||||
StdOutput.h \
|
||||
DocBookOutput.h \
|
||||
ZshCompletionOutput.h \
|
||||
OptionalUnlabeledTracker.h \
|
||||
Constraint.h \
|
||||
ValuesConstraint.h \
|
||||
ArgTraits.h \
|
||||
StandardTraits.h
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/tclap/Makefile'; \
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu include/tclap/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
uninstall-info-am:
|
||||
install-libtclapincludeHEADERS: $(libtclapinclude_HEADERS)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(libtclapincludedir)" || $(mkdir_p) "$(DESTDIR)$(libtclapincludedir)"
|
||||
@list='$(libtclapinclude_HEADERS)'; for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
f=$(am__strip_dir) \
|
||||
echo " $(libtclapincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(libtclapincludedir)/$$f'"; \
|
||||
$(libtclapincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(libtclapincludedir)/$$f"; \
|
||||
done
|
||||
|
||||
uninstall-libtclapincludeHEADERS:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(libtclapinclude_HEADERS)'; for p in $$list; do \
|
||||
f=$(am__strip_dir) \
|
||||
echo " rm -f '$(DESTDIR)$(libtclapincludedir)/$$f'"; \
|
||||
rm -f "$(DESTDIR)$(libtclapincludedir)/$$f"; \
|
||||
done
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$tags $$unique; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$tags $$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& cd $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) $$here
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||||
list='$(DISTFILES)'; for file in $$list; do \
|
||||
case $$file in \
|
||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
||||
esac; \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
dir="/$$dir"; \
|
||||
$(mkdir_p) "$(distdir)$$dir"; \
|
||||
else \
|
||||
dir=''; \
|
||||
fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(HEADERS)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(libtclapincludedir)"; do \
|
||||
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
||||
done
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-libtclapincludeHEADERS
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-man:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-generic
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-info-am uninstall-libtclapincludeHEADERS
|
||||
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||||
ctags distclean distclean-generic distclean-tags distdir dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-data install-data-am install-exec install-exec-am \
|
||||
install-info install-info-am install-libtclapincludeHEADERS \
|
||||
install-man install-strip installcheck installcheck-am \
|
||||
installdirs maintainer-clean maintainer-clean-generic \
|
||||
mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \
|
||||
uninstall uninstall-am uninstall-info-am \
|
||||
uninstall-libtclapincludeHEADERS
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue