From a0148cf62fc298126980a7dc27603b123e1d764c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 10 Jul 2022 23:42:20 +0900 Subject: [PATCH] Clean up some unnecessary stuff. Signed-off-by: Michele Calgaro --- .pc/.quilt_patches | 1 - .pc/.quilt_series | 1 - .pc/.version | 1 - .pc/applied-patches | 2 - .../src/UiGuiSettings.cpp | 688 -------- .pc/qsci_rename.patch/UniversalIndentGUI.pro | 201 --- .../project.pbxproj | 741 -------- UniversalIndentGUI.pro | 2 +- UniversalIndentGUI.sln | 31 - UniversalIndentGUI.xcodeproj/project.pbxproj | 741 -------- UniversalIndentGUI.xcodeproj/qt_makeqmake.mak | 73 - .../qt_preprocess.mak | 116 -- UniversalIndentGUI.xcodeproj/thomas.pbxuser | 433 ----- .../thomas.perspectivev3 | 1487 ----------------- VS8QtRules.rules | 41 - debian/patches/disable_check_for_update.patch | 15 - debian/patches/qsci_rename.patch | 40 - debian/patches/series | 2 - debian/universalindentgui.lintian-overrides | 4 - src/UniversalIndentGUI.vcproj | 549 ------ src/tclap/Makefile.in | 387 ----- translations/universalindent.ts | 1095 ------------ translations/universalindent_de.ts | 1131 ------------- translations/universalindent_fr.ts | 1119 ------------- translations/universalindent_ja.ts | 1095 ------------ translations/universalindent_ru.ts | 1132 ------------- translations/universalindent_uk.ts | 1132 ------------- translations/universalindent_zh_TW.ts | 1132 ------------- 28 files changed, 1 insertion(+), 13391 deletions(-) delete mode 100644 .pc/.quilt_patches delete mode 100644 .pc/.quilt_series delete mode 100644 .pc/.version delete mode 100644 .pc/applied-patches delete mode 100755 .pc/disable_check_for_update.patch/src/UiGuiSettings.cpp delete mode 100755 .pc/qsci_rename.patch/UniversalIndentGUI.pro delete mode 100755 .pc/qsci_rename.patch/UniversalIndentGUI.xcodeproj/project.pbxproj delete mode 100755 UniversalIndentGUI.sln delete mode 100755 UniversalIndentGUI.xcodeproj/project.pbxproj delete mode 100755 UniversalIndentGUI.xcodeproj/qt_makeqmake.mak delete mode 100755 UniversalIndentGUI.xcodeproj/qt_preprocess.mak delete mode 100755 UniversalIndentGUI.xcodeproj/thomas.pbxuser delete mode 100755 UniversalIndentGUI.xcodeproj/thomas.perspectivev3 delete mode 100755 VS8QtRules.rules delete mode 100644 debian/patches/disable_check_for_update.patch delete mode 100644 debian/patches/qsci_rename.patch delete mode 100644 debian/universalindentgui.lintian-overrides delete mode 100755 src/UniversalIndentGUI.vcproj delete mode 100755 src/tclap/Makefile.in delete mode 100755 translations/universalindent.ts delete mode 100755 translations/universalindent_de.ts delete mode 100755 translations/universalindent_fr.ts delete mode 100755 translations/universalindent_ja.ts delete mode 100755 translations/universalindent_ru.ts delete mode 100755 translations/universalindent_uk.ts delete mode 100755 translations/universalindent_zh_TW.ts diff --git a/.pc/.quilt_patches b/.pc/.quilt_patches deleted file mode 100644 index 6857a8d..0000000 --- a/.pc/.quilt_patches +++ /dev/null @@ -1 +0,0 @@ -debian/patches diff --git a/.pc/.quilt_series b/.pc/.quilt_series deleted file mode 100644 index c206706..0000000 --- a/.pc/.quilt_series +++ /dev/null @@ -1 +0,0 @@ -series diff --git a/.pc/.version b/.pc/.version deleted file mode 100644 index 0cfbf08..0000000 --- a/.pc/.version +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/.pc/applied-patches b/.pc/applied-patches deleted file mode 100644 index 3b81d2d..0000000 --- a/.pc/applied-patches +++ /dev/null @@ -1,2 +0,0 @@ -disable_check_for_update.patch -qsci_rename.patch diff --git a/.pc/disable_check_for_update.patch/src/UiGuiSettings.cpp b/.pc/disable_check_for_update.patch/src/UiGuiSettings.cpp deleted file mode 100755 index 3aacf1f..0000000 --- a/.pc/disable_check_for_update.patch/src/UiGuiSettings.cpp +++ /dev/null @@ -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 -#include -#include -#include -#include -#include -#include -#include -#include -#include - -//! \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::_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::getInstance() { - QSharedPointer sharedInstance = _instance.toStrongRef(); - if ( sharedInstance.isNull() ) { - // Create the settings object, which loads all UiGui settings from a file. - sharedInstance = QSharedPointer(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 allObjects = obj->findChildren(); - 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 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::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::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 -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#if QT_VERSION >= 0x040600 -#include -#include -#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()) ); - 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()) ); - 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()) ); - case QVariant::Cursor : - return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QCursor, value.value()) ); - 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()) ); - 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()) ); - case QVariant::Image : - return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QImage, value.value()) ); - 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()) ); - 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()) ); - case QVariant::Transform : - return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QTransform, value.value()) ); -#if QT_VERSION >= 0x040600 - case QVariant::Matrix4x4 : - return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QMatrix4x4, value.value()) ); -#endif - case QVariant::Palette : - return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QPalette, value.value()) ); - case QVariant::Pen : - return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QPen, value.value()) ); - case QVariant::Pixmap : - return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QPixmap, value.value()) ); - case QVariant::Point : - return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QPoint, value.toPoint()) ); - // case QVariant::PointArray : - // return Q_ARG(QPointArray, value.value()) ); - 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()) ); -#if QT_VERSION >= 0x040600 - case QVariant::Quaternion : - return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QQuaternion, value.value()) ); -#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()) ); - 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()) ); - 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()) ); - case QVariant::TextLength : - return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QTextLength, value.value()) ); - 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()) ); - case QVariant::Vector3D : - return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QVector3D, value.value()) ); - case QVariant::Vector4D : - return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QVector4D, value.value()) ); -#endif - default: - return false; - } -} diff --git a/.pc/qsci_rename.patch/UniversalIndentGUI.pro b/.pc/qsci_rename.patch/UniversalIndentGUI.pro deleted file mode 100755 index 67f4f95..0000000 --- a/.pc/qsci_rename.patch/UniversalIndentGUI.pro +++ /dev/null @@ -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) diff --git a/.pc/qsci_rename.patch/UniversalIndentGUI.xcodeproj/project.pbxproj b/.pc/qsci_rename.patch/UniversalIndentGUI.xcodeproj/project.pbxproj deleted file mode 100755 index 80c1ae0..0000000 --- a/.pc/qsci_rename.patch/UniversalIndentGUI.xcodeproj/project.pbxproj +++ /dev/null @@ -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 = ""; }; - 0405CDFCAFF3A176EB7C5B2B /* SettingsPaths.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SettingsPaths.h; path = src/SettingsPaths.h; sourceTree = ""; }; - 04EC27988BE80C166C06D386 /* ui_AboutDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_AboutDialog.h; path = release/uic/ui_AboutDialog.h; sourceTree = ""; }; - 0501473B7E166B9D10974B09 /* AboutDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AboutDialog.h; path = src/AboutDialog.h; sourceTree = ""; }; - 0D2093D6D7971F9434E27A2D /* UiGuiHighlighter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiHighlighter.h; path = src/UiGuiHighlighter.h; sourceTree = ""; }; - 19D832A234461F61E597073E /* UiGuiErrorMessage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiErrorMessage.h; path = src/UiGuiErrorMessage.h; sourceTree = ""; }; - 1BB748495103B59368976F44 /* qrc_Icons.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = qrc_Icons.cpp; path = release/qrc/qrc_Icons.cpp; sourceTree = ""; }; - 1C0B64226A129D35F02DC004 /* MainWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MainWindow.cpp; path = src/MainWindow.cpp; sourceTree = ""; }; - 234F1B047D06A4E84A3BA652 /* UiGuiIndentServer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiIndentServer.h; path = src/UiGuiIndentServer.h; sourceTree = ""; }; - 2365565B0E8281A9A554DE48 /* IndentHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IndentHandler.h; path = src/IndentHandler.h; sourceTree = ""; }; - 240575E52D89C74CAFF8C83F /* UpdateCheckDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UpdateCheckDialog.h; path = src/UpdateCheckDialog.h; sourceTree = ""; }; - 26383A497B0CC65909DA431D /* UiGuiSettingsDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSettingsDialog.cpp; path = src/UiGuiSettingsDialog.cpp; sourceTree = ""; }; - 290E702759265E2A11910569 /* UpdateCheckDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = UpdateCheckDialog.ui; path = src/UpdateCheckDialog.ui; sourceTree = ""; }; - 3194C2F269DA07FBC8FB120D /* UiGuiSettingsDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSettingsDialog.h; path = src/UiGuiSettingsDialog.h; sourceTree = ""; }; - 3E78CB522F65C3B2CD054660 /* AboutDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = AboutDialog.ui; path = src/AboutDialog.ui; sourceTree = ""; }; - 4082D6E68F89F86822C28CAE /* moc_TSLogger.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_TSLogger.cpp; path = release/moc/moc_TSLogger.cpp; sourceTree = ""; }; - 4B2D11C739E037330FF187DB /* UpdateCheckDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UpdateCheckDialog.cpp; path = src/UpdateCheckDialog.cpp; sourceTree = ""; }; - 59F78802D4802B940EA308A0 /* moc_MainWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_MainWindow.cpp; path = release/moc/moc_MainWindow.cpp; sourceTree = ""; }; - 5EEB118D3C499097B07CA6DC /* TSLogger.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TSLogger.cpp; path = src/debugging/TSLogger.cpp; sourceTree = ""; }; - 5FDBC0A18FE03C4893ABD97E /* UiGuiSystemInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSystemInfo.h; path = src/UiGuiSystemInfo.h; sourceTree = ""; }; - 6988CE9D964BC66484DA49D5 /* QtGui */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtGui; path = /opt/local/lib/libQtGui.4.7.4.dylib; sourceTree = ""; }; - 705CF7C739E81ED3345C9F41 /* moc_UiGuiHighlighter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiHighlighter.cpp; path = release/moc/moc_UiGuiHighlighter.cpp; sourceTree = ""; }; - 71D24B3D256D9E9FC90EEDF7 /* moc_AboutDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_AboutDialog.cpp; path = release/moc/moc_AboutDialog.cpp; sourceTree = ""; }; - 7B749332F0EE106BAF891CBB /* IndentHandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IndentHandler.cpp; path = src/IndentHandler.cpp; sourceTree = ""; }; - 7DBF76AABA74FE9F8ACD5DB5 /* Icons.qrc */ = {isa = PBXFileReference; lastKnownFileType = text; name = Icons.qrc; path = resources/Icons.qrc; sourceTree = ""; }; - 7EC3C68A81EFFF79B6CA22AC /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = src/main.cpp; sourceTree = ""; }; - 836D42CF391C82A0B70687F3 /* moc_UiGuiIndentServer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiIndentServer.cpp; path = release/moc/moc_UiGuiIndentServer.cpp; sourceTree = ""; }; - 8B5B29CE11F2EFCD1C93EB6C /* AboutDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AboutDialog.cpp; path = src/AboutDialog.cpp; sourceTree = ""; }; - 8CE031E032D58BFFADB163E3 /* UiGuiSystemInfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSystemInfo.cpp; path = src/UiGuiSystemInfo.cpp; sourceTree = ""; }; - 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSettings.cpp; path = src/UiGuiSettings.cpp; sourceTree = ""; }; - 957A01A17EA639CF3AC8D438 /* ui_TSLoggerDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_TSLoggerDialog.h; path = release/uic/ui_TSLoggerDialog.h; sourceTree = ""; }; - 95C394A7DB7625A6018F145F /* UiGuiHighlighter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiHighlighter.cpp; path = src/UiGuiHighlighter.cpp; sourceTree = ""; }; - 97D35E3EB9A27948A62C0C38 /* ui_MainWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_MainWindow.h; path = release/uic/ui_MainWindow.h; sourceTree = ""; }; - 9840C47AE913CA84966C04AE /* UiGuiIndentServer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiIndentServer.cpp; path = src/UiGuiIndentServer.cpp; sourceTree = ""; }; - 998C921BBFDF579B258C28EA /* moc_UiGuiErrorMessage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiErrorMessage.cpp; path = release/moc/moc_UiGuiErrorMessage.cpp; sourceTree = ""; }; - 9B1A8589DE3DB63FE9FEADAD /* AboutDialogGraphicsView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AboutDialogGraphicsView.h; path = src/AboutDialogGraphicsView.h; sourceTree = ""; }; - 9EF9FEB32A7980D519425A9E /* QtScript */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtScript; path = /opt/local/lib/libQtScript.4.7.4.dylib; sourceTree = ""; }; - 9FAD1502AC6B577554578224 /* TSLoggerDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = TSLoggerDialog.ui; path = src/debugging/TSLoggerDialog.ui; sourceTree = ""; }; - A1FD7528F1BA6EC4A87E142A /* ui_ToolBarWidget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_ToolBarWidget.h; path = release/uic/ui_ToolBarWidget.h; sourceTree = ""; }; - A6C4B7ADC28FF6F9840A9319 /* UniversalIndentGUI.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; name = UniversalIndentGUI.icns; path = resources/UniversalIndentGUI.icns; sourceTree = ""; }; - A77AB8EA63A1F08C970A0DB1 /* TemplateBatchScript.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = TemplateBatchScript.h; path = src/TemplateBatchScript.h; sourceTree = ""; }; - A7CBECAE098937E7541F811C /* MainWindow.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = MainWindow.ui; path = src/MainWindow.ui; sourceTree = ""; }; - A7DD7C62D24BBDB386C3840D /* moc_UiGuiSettingsDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiSettingsDialog.cpp; path = release/moc/moc_UiGuiSettingsDialog.cpp; sourceTree = ""; }; - AAFD01B4A071D73CD002C7FD /* SettingsPaths.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SettingsPaths.cpp; path = src/SettingsPaths.cpp; sourceTree = ""; }; - AC4AC748C3685570D9D8B977 /* UiGuiSettings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSettings.h; path = src/UiGuiSettings.h; sourceTree = ""; }; - B235A8A774654CA992F5A861 /* QtNetwork */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtNetwork; path = /opt/local/lib/libQtNetwork.4.7.4.dylib; sourceTree = ""; }; - B3201EB1AA113D49631A1BC2 /* UiGuiSettingsDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = UiGuiSettingsDialog.ui; path = src/UiGuiSettingsDialog.ui; sourceTree = ""; }; - B3E50F5A6CE91D794A9AE2AA /* ToolBarWidget.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ToolBarWidget.ui; path = src/ToolBarWidget.ui; sourceTree = ""; }; - BAC68B56402ED1C21C4A4561 /* UiGuiIniFileParser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiIniFileParser.cpp; path = src/UiGuiIniFileParser.cpp; sourceTree = ""; }; - C2D745F51D062CD6409FA16C /* ui_UpdateCheckDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_UpdateCheckDialog.h; path = release/uic/ui_UpdateCheckDialog.h; sourceTree = ""; }; - D038693E47A07F84995184E5 /* UiGuiVersion.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiVersion.cpp; path = src/UiGuiVersion.cpp; sourceTree = ""; }; - D3A96D6E7DF8830490467C04 /* AboutDialogGraphicsView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AboutDialogGraphicsView.cpp; path = src/AboutDialogGraphicsView.cpp; sourceTree = ""; }; - D4515A4B9864E652FE65CBDE /* moc_UpdateCheckDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UpdateCheckDialog.cpp; path = release/moc/moc_UpdateCheckDialog.cpp; sourceTree = ""; }; - D807F0DE3110F0AD45593FA7 /* MainWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MainWindow.h; path = src/MainWindow.h; sourceTree = ""; }; - DCEF1F98F703B62597F530A9 /* ui_UiGuiSettingsDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_UiGuiSettingsDialog.h; path = release/uic/ui_UiGuiSettingsDialog.h; sourceTree = ""; }; - DEDA4624B80C4136C3D118C2 /* moc_IndentHandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_IndentHandler.cpp; path = release/moc/moc_IndentHandler.cpp; sourceTree = ""; }; - E457C7C0F6FE92258C9ABDE6 /* UniversalIndentGUI.pro */ = {isa = PBXFileReference; lastKnownFileType = text; path = UniversalIndentGUI.pro; sourceTree = ""; }; - 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 = ""; }; - EB9AF2B1C20FF4B1225EA3FB /* UiGuiErrorMessage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiErrorMessage.cpp; path = src/UiGuiErrorMessage.cpp; sourceTree = ""; }; - F45A82FFD3FBFC99A2A0B897 /* UiGuiVersion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiVersion.h; path = src/UiGuiVersion.h; sourceTree = ""; }; - F4DF9DB04F138672E3CB95D5 /* moc_UiGuiSettings.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiSettings.cpp; path = release/moc/moc_UiGuiSettings.cpp; sourceTree = ""; }; - F5BD042A2B240A02A39C20AC /* TSLogger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = TSLogger.h; path = src/debugging/TSLogger.h; sourceTree = ""; }; - F84894CE7D4FF11845C5DEC1 /* moc_AboutDialogGraphicsView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_AboutDialogGraphicsView.cpp; path = release/moc/moc_AboutDialogGraphicsView.cpp; sourceTree = ""; }; - FC65490F7BEA4427C242848C /* QtCore */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtCore; path = /opt/local/lib/libQtCore.4.7.4.dylib; sourceTree = ""; }; -/* 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 = ""; - }; - 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 = ""; - }; - 16A82DA2701971900CCC9274 /* resources */ = { - isa = PBXGroup; - children = ( - 7DBF76AABA74FE9F8ACD5DB5 /* Icons.qrc */, - ); - name = resources; - sourceTree = ""; - }; - 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 = ""; - }; - 46E892BBB6BB6952967E0561 /* Temporary Sources */ = { - isa = PBXGroup; - children = ( - BC7AF8B1E3D64E5DB82A180B /* release */, - ); - name = "Temporary Sources"; - sourceTree = ""; - }; - 52C235EBF1C9B07808119459 /* Sources [RCC] */ = { - isa = PBXGroup; - children = ( - 16A82DA2701971900CCC9274 /* resources */, - ); - name = "Sources [RCC]"; - sourceTree = ""; - }; - 682C39EDA1B6CDF80B0D9214 /* debugging */ = { - isa = PBXGroup; - children = ( - 5EEB118D3C499097B07CA6DC /* TSLogger.cpp */, - ); - name = debugging; - sourceTree = ""; - }; - 7CABE3C80E79AD2B307756D2 /* Sources [qmake] */ = { - isa = PBXGroup; - children = ( - E457C7C0F6FE92258C9ABDE6 /* UniversalIndentGUI.pro */, - ); - name = "Sources [qmake]"; - sourceTree = ""; - }; - 8161BBD1CA4ABAD2BDCD1290 /* debugging */ = { - isa = PBXGroup; - children = ( - 9FAD1502AC6B577554578224 /* TSLoggerDialog.ui */, - ); - name = debugging; - sourceTree = ""; - }; - 883D7615C4D2DE3FA1218F12 /* Headers */ = { - isa = PBXGroup; - children = ( - F4AF6147B42623F6B3284738 /* src */, - ); - name = Headers; - sourceTree = ""; - }; - 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 = ""; - }; - 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 = ""; - }; - B06B937E4E5DB1B571475081 /* resources */ = { - isa = PBXGroup; - children = ( - A6C4B7ADC28FF6F9840A9319 /* UniversalIndentGUI.icns */, - ); - name = resources; - sourceTree = ""; - }; - BC7AF8B1E3D64E5DB82A180B /* release */ = { - isa = PBXGroup; - children = ( - 17088D39164D72415814D3CE /* moc */, - E60B3FBF3190558138C79865 /* qrc */, - A742563A513C5350203403C2 /* uic */, - ); - name = release; - sourceTree = ""; - }; - CAC892C702EF9F77734C8010 /* debugging */ = { - isa = PBXGroup; - children = ( - F5BD042A2B240A02A39C20AC /* TSLogger.h */, - ); - name = debugging; - sourceTree = ""; - }; - E60B3FBF3190558138C79865 /* qrc */ = { - isa = PBXGroup; - children = ( - 1BB748495103B59368976F44 /* qrc_Icons.cpp */, - ); - name = qrc; - sourceTree = ""; - }; - E938E42D14AC74220066EAA2 /* Products */ = { - isa = PBXGroup; - children = ( - E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */, - ); - name = Products; - sourceTree = ""; - }; - ED1E82605DD74B483AF3C982 /* External Frameworks and Libraries */ = { - isa = PBXGroup; - children = ( - 9EF9FEB32A7980D519425A9E /* QtScript */, - 6988CE9D964BC66484DA49D5 /* QtGui */, - B235A8A774654CA992F5A861 /* QtNetwork */, - FC65490F7BEA4427C242848C /* QtCore */, - ); - name = "External Frameworks and Libraries"; - sourceTree = ""; - }; - EEC299C65D5017EB9DD513B0 /* Sources [UIC] */ = { - isa = PBXGroup; - children = ( - A1B6D1488110DA0868414A40 /* src */, - ); - name = "Sources [UIC]"; - sourceTree = ""; - }; - 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 = ""; - }; - FB61758D0F0FDA4BA867C3D5 /* Sources */ = { - isa = PBXGroup; - children = ( - 06674E1DE8D3EB6E763DFFDA /* src */, - B06B937E4E5DB1B571475081 /* resources */, - ); - name = Sources; - sourceTree = ""; - }; -/* 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 */; -} diff --git a/UniversalIndentGUI.pro b/UniversalIndentGUI.pro index 339835c..67f4f95 100755 --- a/UniversalIndentGUI.pro +++ b/UniversalIndentGUI.pro @@ -23,7 +23,7 @@ macx { ICON = resources/UniversalIndentGUI.icns } else { - LIBS += -lqscintilla2_qt4 + LIBS += -lqscintilla2 } CONFIG(release, debug|release) { diff --git a/UniversalIndentGUI.sln b/UniversalIndentGUI.sln deleted file mode 100755 index 63a2fd3..0000000 --- a/UniversalIndentGUI.sln +++ /dev/null @@ -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 diff --git a/UniversalIndentGUI.xcodeproj/project.pbxproj b/UniversalIndentGUI.xcodeproj/project.pbxproj deleted file mode 100755 index 64d6391..0000000 --- a/UniversalIndentGUI.xcodeproj/project.pbxproj +++ /dev/null @@ -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 = ""; }; - 0405CDFCAFF3A176EB7C5B2B /* SettingsPaths.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SettingsPaths.h; path = src/SettingsPaths.h; sourceTree = ""; }; - 04EC27988BE80C166C06D386 /* ui_AboutDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_AboutDialog.h; path = release/uic/ui_AboutDialog.h; sourceTree = ""; }; - 0501473B7E166B9D10974B09 /* AboutDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AboutDialog.h; path = src/AboutDialog.h; sourceTree = ""; }; - 0D2093D6D7971F9434E27A2D /* UiGuiHighlighter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiHighlighter.h; path = src/UiGuiHighlighter.h; sourceTree = ""; }; - 19D832A234461F61E597073E /* UiGuiErrorMessage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiErrorMessage.h; path = src/UiGuiErrorMessage.h; sourceTree = ""; }; - 1BB748495103B59368976F44 /* qrc_Icons.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = qrc_Icons.cpp; path = release/qrc/qrc_Icons.cpp; sourceTree = ""; }; - 1C0B64226A129D35F02DC004 /* MainWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MainWindow.cpp; path = src/MainWindow.cpp; sourceTree = ""; }; - 234F1B047D06A4E84A3BA652 /* UiGuiIndentServer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiIndentServer.h; path = src/UiGuiIndentServer.h; sourceTree = ""; }; - 2365565B0E8281A9A554DE48 /* IndentHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IndentHandler.h; path = src/IndentHandler.h; sourceTree = ""; }; - 240575E52D89C74CAFF8C83F /* UpdateCheckDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UpdateCheckDialog.h; path = src/UpdateCheckDialog.h; sourceTree = ""; }; - 26383A497B0CC65909DA431D /* UiGuiSettingsDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSettingsDialog.cpp; path = src/UiGuiSettingsDialog.cpp; sourceTree = ""; }; - 290E702759265E2A11910569 /* UpdateCheckDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = UpdateCheckDialog.ui; path = src/UpdateCheckDialog.ui; sourceTree = ""; }; - 3194C2F269DA07FBC8FB120D /* UiGuiSettingsDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSettingsDialog.h; path = src/UiGuiSettingsDialog.h; sourceTree = ""; }; - 3E78CB522F65C3B2CD054660 /* AboutDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = AboutDialog.ui; path = src/AboutDialog.ui; sourceTree = ""; }; - 4082D6E68F89F86822C28CAE /* moc_TSLogger.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_TSLogger.cpp; path = release/moc/moc_TSLogger.cpp; sourceTree = ""; }; - 4B2D11C739E037330FF187DB /* UpdateCheckDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UpdateCheckDialog.cpp; path = src/UpdateCheckDialog.cpp; sourceTree = ""; }; - 59F78802D4802B940EA308A0 /* moc_MainWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_MainWindow.cpp; path = release/moc/moc_MainWindow.cpp; sourceTree = ""; }; - 5EEB118D3C499097B07CA6DC /* TSLogger.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TSLogger.cpp; path = src/debugging/TSLogger.cpp; sourceTree = ""; }; - 5FDBC0A18FE03C4893ABD97E /* UiGuiSystemInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSystemInfo.h; path = src/UiGuiSystemInfo.h; sourceTree = ""; }; - 6988CE9D964BC66484DA49D5 /* QtGui */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtGui; path = /opt/local/lib/libQtGui.4.7.4.dylib; sourceTree = ""; }; - 705CF7C739E81ED3345C9F41 /* moc_UiGuiHighlighter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiHighlighter.cpp; path = release/moc/moc_UiGuiHighlighter.cpp; sourceTree = ""; }; - 71D24B3D256D9E9FC90EEDF7 /* moc_AboutDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_AboutDialog.cpp; path = release/moc/moc_AboutDialog.cpp; sourceTree = ""; }; - 7B749332F0EE106BAF891CBB /* IndentHandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IndentHandler.cpp; path = src/IndentHandler.cpp; sourceTree = ""; }; - 7DBF76AABA74FE9F8ACD5DB5 /* Icons.qrc */ = {isa = PBXFileReference; lastKnownFileType = text; name = Icons.qrc; path = resources/Icons.qrc; sourceTree = ""; }; - 7EC3C68A81EFFF79B6CA22AC /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = src/main.cpp; sourceTree = ""; }; - 836D42CF391C82A0B70687F3 /* moc_UiGuiIndentServer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiIndentServer.cpp; path = release/moc/moc_UiGuiIndentServer.cpp; sourceTree = ""; }; - 8B5B29CE11F2EFCD1C93EB6C /* AboutDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AboutDialog.cpp; path = src/AboutDialog.cpp; sourceTree = ""; }; - 8CE031E032D58BFFADB163E3 /* UiGuiSystemInfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSystemInfo.cpp; path = src/UiGuiSystemInfo.cpp; sourceTree = ""; }; - 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSettings.cpp; path = src/UiGuiSettings.cpp; sourceTree = ""; }; - 957A01A17EA639CF3AC8D438 /* ui_TSLoggerDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_TSLoggerDialog.h; path = release/uic/ui_TSLoggerDialog.h; sourceTree = ""; }; - 95C394A7DB7625A6018F145F /* UiGuiHighlighter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiHighlighter.cpp; path = src/UiGuiHighlighter.cpp; sourceTree = ""; }; - 97D35E3EB9A27948A62C0C38 /* ui_MainWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_MainWindow.h; path = release/uic/ui_MainWindow.h; sourceTree = ""; }; - 9840C47AE913CA84966C04AE /* UiGuiIndentServer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiIndentServer.cpp; path = src/UiGuiIndentServer.cpp; sourceTree = ""; }; - 998C921BBFDF579B258C28EA /* moc_UiGuiErrorMessage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiErrorMessage.cpp; path = release/moc/moc_UiGuiErrorMessage.cpp; sourceTree = ""; }; - 9B1A8589DE3DB63FE9FEADAD /* AboutDialogGraphicsView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AboutDialogGraphicsView.h; path = src/AboutDialogGraphicsView.h; sourceTree = ""; }; - 9EF9FEB32A7980D519425A9E /* QtScript */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtScript; path = /opt/local/lib/libQtScript.4.7.4.dylib; sourceTree = ""; }; - 9FAD1502AC6B577554578224 /* TSLoggerDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = TSLoggerDialog.ui; path = src/debugging/TSLoggerDialog.ui; sourceTree = ""; }; - A1FD7528F1BA6EC4A87E142A /* ui_ToolBarWidget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_ToolBarWidget.h; path = release/uic/ui_ToolBarWidget.h; sourceTree = ""; }; - A6C4B7ADC28FF6F9840A9319 /* UniversalIndentGUI.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; name = UniversalIndentGUI.icns; path = resources/UniversalIndentGUI.icns; sourceTree = ""; }; - A77AB8EA63A1F08C970A0DB1 /* TemplateBatchScript.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = TemplateBatchScript.h; path = src/TemplateBatchScript.h; sourceTree = ""; }; - A7CBECAE098937E7541F811C /* MainWindow.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = MainWindow.ui; path = src/MainWindow.ui; sourceTree = ""; }; - A7DD7C62D24BBDB386C3840D /* moc_UiGuiSettingsDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiSettingsDialog.cpp; path = release/moc/moc_UiGuiSettingsDialog.cpp; sourceTree = ""; }; - AAFD01B4A071D73CD002C7FD /* SettingsPaths.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SettingsPaths.cpp; path = src/SettingsPaths.cpp; sourceTree = ""; }; - AC4AC748C3685570D9D8B977 /* UiGuiSettings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSettings.h; path = src/UiGuiSettings.h; sourceTree = ""; }; - B235A8A774654CA992F5A861 /* QtNetwork */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtNetwork; path = /opt/local/lib/libQtNetwork.4.7.4.dylib; sourceTree = ""; }; - B3201EB1AA113D49631A1BC2 /* UiGuiSettingsDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = UiGuiSettingsDialog.ui; path = src/UiGuiSettingsDialog.ui; sourceTree = ""; }; - B3E50F5A6CE91D794A9AE2AA /* ToolBarWidget.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ToolBarWidget.ui; path = src/ToolBarWidget.ui; sourceTree = ""; }; - BAC68B56402ED1C21C4A4561 /* UiGuiIniFileParser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiIniFileParser.cpp; path = src/UiGuiIniFileParser.cpp; sourceTree = ""; }; - C2D745F51D062CD6409FA16C /* ui_UpdateCheckDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_UpdateCheckDialog.h; path = release/uic/ui_UpdateCheckDialog.h; sourceTree = ""; }; - D038693E47A07F84995184E5 /* UiGuiVersion.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiVersion.cpp; path = src/UiGuiVersion.cpp; sourceTree = ""; }; - D3A96D6E7DF8830490467C04 /* AboutDialogGraphicsView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AboutDialogGraphicsView.cpp; path = src/AboutDialogGraphicsView.cpp; sourceTree = ""; }; - D4515A4B9864E652FE65CBDE /* moc_UpdateCheckDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UpdateCheckDialog.cpp; path = release/moc/moc_UpdateCheckDialog.cpp; sourceTree = ""; }; - D807F0DE3110F0AD45593FA7 /* MainWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MainWindow.h; path = src/MainWindow.h; sourceTree = ""; }; - DCEF1F98F703B62597F530A9 /* ui_UiGuiSettingsDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_UiGuiSettingsDialog.h; path = release/uic/ui_UiGuiSettingsDialog.h; sourceTree = ""; }; - DEDA4624B80C4136C3D118C2 /* moc_IndentHandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_IndentHandler.cpp; path = release/moc/moc_IndentHandler.cpp; sourceTree = ""; }; - E457C7C0F6FE92258C9ABDE6 /* UniversalIndentGUI.pro */ = {isa = PBXFileReference; lastKnownFileType = text; path = UniversalIndentGUI.pro; sourceTree = ""; }; - 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 = ""; }; - EB9AF2B1C20FF4B1225EA3FB /* UiGuiErrorMessage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiErrorMessage.cpp; path = src/UiGuiErrorMessage.cpp; sourceTree = ""; }; - F45A82FFD3FBFC99A2A0B897 /* UiGuiVersion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiVersion.h; path = src/UiGuiVersion.h; sourceTree = ""; }; - F4DF9DB04F138672E3CB95D5 /* moc_UiGuiSettings.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiSettings.cpp; path = release/moc/moc_UiGuiSettings.cpp; sourceTree = ""; }; - F5BD042A2B240A02A39C20AC /* TSLogger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = TSLogger.h; path = src/debugging/TSLogger.h; sourceTree = ""; }; - F84894CE7D4FF11845C5DEC1 /* moc_AboutDialogGraphicsView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_AboutDialogGraphicsView.cpp; path = release/moc/moc_AboutDialogGraphicsView.cpp; sourceTree = ""; }; - FC65490F7BEA4427C242848C /* QtCore */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtCore; path = /opt/local/lib/libQtCore.4.7.4.dylib; sourceTree = ""; }; -/* 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 = ""; - }; - 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 = ""; - }; - 16A82DA2701971900CCC9274 /* resources */ = { - isa = PBXGroup; - children = ( - 7DBF76AABA74FE9F8ACD5DB5 /* Icons.qrc */, - ); - name = resources; - sourceTree = ""; - }; - 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 = ""; - }; - 46E892BBB6BB6952967E0561 /* Temporary Sources */ = { - isa = PBXGroup; - children = ( - BC7AF8B1E3D64E5DB82A180B /* release */, - ); - name = "Temporary Sources"; - sourceTree = ""; - }; - 52C235EBF1C9B07808119459 /* Sources [RCC] */ = { - isa = PBXGroup; - children = ( - 16A82DA2701971900CCC9274 /* resources */, - ); - name = "Sources [RCC]"; - sourceTree = ""; - }; - 682C39EDA1B6CDF80B0D9214 /* debugging */ = { - isa = PBXGroup; - children = ( - 5EEB118D3C499097B07CA6DC /* TSLogger.cpp */, - ); - name = debugging; - sourceTree = ""; - }; - 7CABE3C80E79AD2B307756D2 /* Sources [qmake] */ = { - isa = PBXGroup; - children = ( - E457C7C0F6FE92258C9ABDE6 /* UniversalIndentGUI.pro */, - ); - name = "Sources [qmake]"; - sourceTree = ""; - }; - 8161BBD1CA4ABAD2BDCD1290 /* debugging */ = { - isa = PBXGroup; - children = ( - 9FAD1502AC6B577554578224 /* TSLoggerDialog.ui */, - ); - name = debugging; - sourceTree = ""; - }; - 883D7615C4D2DE3FA1218F12 /* Headers */ = { - isa = PBXGroup; - children = ( - F4AF6147B42623F6B3284738 /* src */, - ); - name = Headers; - sourceTree = ""; - }; - 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 = ""; - }; - 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 = ""; - }; - B06B937E4E5DB1B571475081 /* resources */ = { - isa = PBXGroup; - children = ( - A6C4B7ADC28FF6F9840A9319 /* UniversalIndentGUI.icns */, - ); - name = resources; - sourceTree = ""; - }; - BC7AF8B1E3D64E5DB82A180B /* release */ = { - isa = PBXGroup; - children = ( - 17088D39164D72415814D3CE /* moc */, - E60B3FBF3190558138C79865 /* qrc */, - A742563A513C5350203403C2 /* uic */, - ); - name = release; - sourceTree = ""; - }; - CAC892C702EF9F77734C8010 /* debugging */ = { - isa = PBXGroup; - children = ( - F5BD042A2B240A02A39C20AC /* TSLogger.h */, - ); - name = debugging; - sourceTree = ""; - }; - E60B3FBF3190558138C79865 /* qrc */ = { - isa = PBXGroup; - children = ( - 1BB748495103B59368976F44 /* qrc_Icons.cpp */, - ); - name = qrc; - sourceTree = ""; - }; - E938E42D14AC74220066EAA2 /* Products */ = { - isa = PBXGroup; - children = ( - E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */, - ); - name = Products; - sourceTree = ""; - }; - ED1E82605DD74B483AF3C982 /* External Frameworks and Libraries */ = { - isa = PBXGroup; - children = ( - 9EF9FEB32A7980D519425A9E /* QtScript */, - 6988CE9D964BC66484DA49D5 /* QtGui */, - B235A8A774654CA992F5A861 /* QtNetwork */, - FC65490F7BEA4427C242848C /* QtCore */, - ); - name = "External Frameworks and Libraries"; - sourceTree = ""; - }; - EEC299C65D5017EB9DD513B0 /* Sources [UIC] */ = { - isa = PBXGroup; - children = ( - A1B6D1488110DA0868414A40 /* src */, - ); - name = "Sources [UIC]"; - sourceTree = ""; - }; - 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 = ""; - }; - FB61758D0F0FDA4BA867C3D5 /* Sources */ = { - isa = PBXGroup; - children = ( - 06674E1DE8D3EB6E763DFFDA /* src */, - B06B937E4E5DB1B571475081 /* resources */, - ); - name = Sources; - sourceTree = ""; - }; -/* 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 */; -} diff --git a/UniversalIndentGUI.xcodeproj/qt_makeqmake.mak b/UniversalIndentGUI.xcodeproj/qt_makeqmake.mak deleted file mode 100755 index 99849c2..0000000 --- a/UniversalIndentGUI.xcodeproj/qt_makeqmake.mak +++ /dev/null @@ -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 - diff --git a/UniversalIndentGUI.xcodeproj/qt_preprocess.mak b/UniversalIndentGUI.xcodeproj/qt_preprocess.mak deleted file mode 100755 index 763659b..0000000 --- a/UniversalIndentGUI.xcodeproj/qt_preprocess.mak +++ /dev/null @@ -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 - diff --git a/UniversalIndentGUI.xcodeproj/thomas.pbxuser b/UniversalIndentGUI.xcodeproj/thomas.pbxuser deleted file mode 100755 index a12338e..0000000 --- a/UniversalIndentGUI.xcodeproj/thomas.pbxuser +++ /dev/null @@ -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 = ""; - }; - 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 = ""; - }; - 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 = ""; - }; - 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}"; - }; - }; -} diff --git a/UniversalIndentGUI.xcodeproj/thomas.perspectivev3 b/UniversalIndentGUI.xcodeproj/thomas.perspectivev3 deleted file mode 100755 index 36a8ca5..0000000 --- a/UniversalIndentGUI.xcodeproj/thomas.perspectivev3 +++ /dev/null @@ -1,1487 +0,0 @@ - - - - - ActivePerspectiveName - Project - AllowedModules - - - BundleLoadPath - - MaxInstances - n - Module - PBXSmartGroupTreeModule - Name - Groups and Files Outline View - - - BundleLoadPath - - MaxInstances - n - Module - PBXNavigatorGroup - Name - Editor - - - BundleLoadPath - - MaxInstances - n - Module - XCTaskListModule - Name - Task List - - - BundleLoadPath - - MaxInstances - n - Module - XCDetailModule - Name - File and Smart Group Detail Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXBuildResultsModule - Name - Detailed Build Results Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXProjectFindModule - Name - Project Batch Find Tool - - - BundleLoadPath - - MaxInstances - n - Module - XCProjectFormatConflictsModule - Name - Project Format Conflicts List - - - BundleLoadPath - - MaxInstances - n - Module - PBXBookmarksModule - Name - Bookmarks Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXClassBrowserModule - Name - Class Browser - - - BundleLoadPath - - MaxInstances - n - Module - PBXCVSModule - Name - Source Code Control Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXDebugBreakpointsModule - Name - Debug Breakpoints Tool - - - BundleLoadPath - - MaxInstances - n - Module - XCDockableInspector - Name - Inspector - - - BundleLoadPath - - MaxInstances - n - Module - PBXOpenQuicklyModule - Name - Open Quickly Tool - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugSessionModule - Name - Debugger - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugCLIModule - Name - Debug Console - - - BundleLoadPath - - MaxInstances - n - Module - XCSnapshotModule - Name - Snapshots Tool - - - BundlePath - /Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources - Description - AIODescriptionKey - DockingSystemVisible - - Extension - perspectivev3 - FavBarConfig - - PBXProjectModuleGUID - E938E41514AC70190066EAA2 - XCBarModuleItemNames - - XCBarModuleItems - - - FirstTimeWindowDisplayed - - Identifier - com.apple.perspectives.project.defaultV3 - MajorVersion - 34 - MinorVersion - 0 - Name - All-In-One - Notifications - - OpenEditors - - PerspectiveWidths - - 1308 - 1308 - - Perspectives - - - ChosenToolbarItems - - XCToolbarPerspectiveControl - NSToolbarSeparatorItem - active-combo-popup - action - NSToolbarFlexibleSpaceItem - debugger-enable-breakpoints - buildOrClean - build-and-go - com.apple.ide.PBXToolbarStopButton - get-info - NSToolbarFlexibleSpaceItem - com.apple.pbx.toolbar.searchfield - - ControllerClassBaseName - - IconName - WindowOfProject - Identifier - perspective.project - IsVertical - - Layout - - - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C37FBAC04509CD000000102 - 1C37FAAC04509CD000000102 - 1C37FABC05509CD000000102 - 1C37FABC05539CD112110102 - E2644B35053B69B200211256 - 1C37FABC04509CD000100104 - 1CC0EA4004350EF90044410B - 1CC0EA4004350EF90041110B - 1C77FABC04509CD000000102 - - PBXProjectModuleGUID - 1CA23ED40692098700951B8B - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - yes - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 185 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 1C37FBAC04509CD000000102 - 1C37FAAC04509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 2 - 1 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {185, 751}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - - - GeometryConfiguration - - Frame - {{0, 0}, {202, 769}} - GroupTreeTableConfiguration - - MainColumn - 185 - - RubberWindowFrame - 132 68 1308 810 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 202pt - - - Dock - - - BecomeActive - - ContentConfiguration - - PBXProjectModuleGUID - E938E40A14AC70190066EAA2 - PBXProjectModuleLabel - UiGuiVersion.h - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - E938E40B14AC70190066EAA2 - PBXProjectModuleLabel - UiGuiVersion.h - _historyCapacity - 0 - bookmark - E938E4E914ACB49E0066EAA2 - history - - E938E46314AC75960066EAA2 - E938E48114AC77A80066EAA2 - E938E4B314AC7A360066EAA2 - E938E4B714AC7A360066EAA2 - E938E4C714AC7B520066EAA2 - E938E4CD14AC7B650066EAA2 - E938E4D314AC7D730066EAA2 - E938E4D414AC7D730066EAA2 - E938E4D514AC7D730066EAA2 - E938E4D614AC7D730066EAA2 - E938E4E714ACB49E0066EAA2 - E938E4E814ACB49E0066EAA2 - - - SplitCount - 1 - - StatusBarVisibility - - XCSharingToken - com.apple.Xcode.CommonNavigatorGroupSharingToken - - GeometryConfiguration - - Frame - {{0, 0}, {1101, 421}} - RubberWindowFrame - 132 68 1308 810 0 0 1440 878 - - Module - PBXNavigatorGroup - Proportion - 421pt - - - Proportion - 343pt - Tabs - - - ContentConfiguration - - PBXProjectModuleGUID - 1CA23EDF0692099D00951B8B - PBXProjectModuleLabel - Detail - - GeometryConfiguration - - Frame - {{10, 27}, {1101, 316}} - - Module - XCDetailModule - - - ContentConfiguration - - PBXProjectModuleGUID - 1CA23EE00692099D00951B8B - PBXProjectModuleLabel - Project Find - - GeometryConfiguration - - Frame - {{10, 27}, {1101, 316}} - RubberWindowFrame - 132 68 1308 810 0 0 1440 878 - - Module - PBXProjectFindModule - - - ContentConfiguration - - PBXCVSModuleFilterTypeKey - 1032 - PBXProjectModuleGUID - 1CA23EE10692099D00951B8B - PBXProjectModuleLabel - SCM Results - - GeometryConfiguration - - Frame - {{10, 31}, {603, 297}} - - Module - PBXCVSModule - - - ContentConfiguration - - PBXProjectModuleGUID - XCMainBuildResultsModuleGUID - PBXProjectModuleLabel - Build Results - XCBuildResultsTrigger_Collapse - 1021 - XCBuildResultsTrigger_Open - 1011 - - GeometryConfiguration - - Frame - {{10, 27}, {1101, 307}} - - Module - PBXBuildResultsModule - - - - - Proportion - 1101pt - - - Name - Project - ServiceClasses - - XCModuleDock - PBXSmartGroupTreeModule - XCModuleDock - PBXNavigatorGroup - XCDockableTabModule - XCDetailModule - PBXProjectFindModule - PBXCVSModule - PBXBuildResultsModule - - TableOfContents - - E938E4EA14ACB49E0066EAA2 - 1CA23ED40692098700951B8B - E938E4EB14ACB49E0066EAA2 - E938E40A14AC70190066EAA2 - E938E4EC14ACB49E0066EAA2 - 1CA23EDF0692099D00951B8B - 1CA23EE00692099D00951B8B - 1CA23EE10692099D00951B8B - XCMainBuildResultsModuleGUID - - ToolbarConfigUserDefaultsMinorVersion - 2 - ToolbarConfiguration - xcode.toolbar.config.defaultV3 - - - ChosenToolbarItems - - XCToolbarPerspectiveControl - NSToolbarSeparatorItem - active-combo-popup - NSToolbarFlexibleSpaceItem - debugger-enable-breakpoints - build-and-go - com.apple.ide.PBXToolbarStopButton - debugger-restart-executable - debugger-pause - debugger-step-over - debugger-step-into - debugger-step-out - NSToolbarFlexibleSpaceItem - servicesModulebreakpoints - debugger-show-console-window - - ControllerClassBaseName - PBXDebugSessionModule - IconName - DebugTabIcon - Identifier - perspective.debug - IsVertical - - Layout - - - ContentConfiguration - - PBXProjectModuleGUID - 1CCC7628064C1048000F2A68 - PBXProjectModuleLabel - Debugger Console - - GeometryConfiguration - - Frame - {{0, 0}, {1308, 86}} - - Module - PBXDebugCLIModule - Proportion - 86pt - - - ContentConfiguration - - Debugger - - HorizontalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {638, 330}} - {{638, 0}, {670, 330}} - - - VerticalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {1308, 330}} - {{0, 330}, {1308, 348}} - - - - LauncherConfigVersion - 8 - PBXProjectModuleGUID - 1CCC7629064C1048000F2A68 - PBXProjectModuleLabel - Debug - - GeometryConfiguration - - DebugConsoleVisible - None - DebugConsoleWindowFrame - {{200, 200}, {500, 300}} - DebugSTDIOWindowFrame - {{200, 200}, {500, 300}} - Frame - {{0, 91}, {1308, 678}} - PBXDebugSessionStackFrameViewKey - - DebugVariablesTableConfiguration - - Name - 120 - Value - 85 - Summary - 440 - - Frame - {{638, 0}, {670, 330}} - - - Module - PBXDebugSessionModule - Proportion - 678pt - - - Name - Debug - ServiceClasses - - XCModuleDock - PBXDebugCLIModule - PBXDebugSessionModule - PBXDebugProcessAndThreadModule - PBXDebugProcessViewModule - PBXDebugThreadViewModule - PBXDebugStackFrameViewModule - PBXNavigatorGroup - - TableOfContents - - E938E44814AC75170066EAA2 - 1CCC7628064C1048000F2A68 - 1CCC7629064C1048000F2A68 - E938E44914AC75170066EAA2 - E938E44A14AC75170066EAA2 - E938E44B14AC75170066EAA2 - E938E44C14AC75170066EAA2 - E938E40A14AC70190066EAA2 - - ToolbarConfigUserDefaultsMinorVersion - 2 - ToolbarConfiguration - xcode.toolbar.config.debugV3 - - - PerspectivesBarVisible - - ShelfIsVisible - - SourceDescription - file at '/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources/XCPerspectivesSpecification.xcperspec' - StatusbarIsVisible - - TimeStamp - 0.0 - ToolbarConfigUserDefaultsMinorVersion - 2 - ToolbarDisplayMode - 2 - ToolbarIsVisible - - ToolbarSizeMode - 2 - Type - Perspectives - UpdateMessage - - WindowJustification - 5 - WindowOrderList - - /Volumes/SHARED/Programming/uigui/universalindent/trunk/UniversalIndentGUI.xcodeproj - - WindowString - 132 68 1308 810 0 0 1440 878 - WindowToolsV3 - - - Identifier - windowTool.debugger - Layout - - - Dock - - - ContentConfiguration - - Debugger - - HorizontalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {317, 164}} - {{317, 0}, {377, 164}} - - - VerticalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {694, 164}} - {{0, 164}, {694, 216}} - - - - LauncherConfigVersion - 8 - PBXProjectModuleGUID - 1C162984064C10D400B95A72 - PBXProjectModuleLabel - Debug - GLUTExamples (Underwater) - - GeometryConfiguration - - DebugConsoleDrawerSize - {100, 120} - DebugConsoleVisible - None - DebugConsoleWindowFrame - {{200, 200}, {500, 300}} - DebugSTDIOWindowFrame - {{200, 200}, {500, 300}} - Frame - {{0, 0}, {694, 380}} - RubberWindowFrame - 321 238 694 422 0 0 1440 878 - - Module - PBXDebugSessionModule - Proportion - 100% - - - Proportion - 100% - - - Name - Debugger - ServiceClasses - - PBXDebugSessionModule - - StatusbarIsVisible - 1 - TableOfContents - - 1CD10A99069EF8BA00B06720 - 1C0AD2AB069F1E9B00FABCE6 - 1C162984064C10D400B95A72 - 1C0AD2AC069F1E9B00FABCE6 - - ToolbarConfiguration - xcode.toolbar.config.debugV3 - WindowString - 321 238 694 422 0 0 1440 878 - WindowToolGUID - 1CD10A99069EF8BA00B06720 - WindowToolIsVisible - 0 - - - Identifier - windowTool.build - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528F0623707200166675 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1CD052900623707200166675 - - SplitCount - 1 - - StatusBarVisibility - 1 - - GeometryConfiguration - - Frame - {{0, 0}, {500, 215}} - RubberWindowFrame - 192 257 500 500 0 0 1280 1002 - - Module - PBXNavigatorGroup - Proportion - 218pt - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - XCMainBuildResultsModuleGUID - PBXProjectModuleLabel - Build Results - - GeometryConfiguration - - Frame - {{0, 222}, {500, 236}} - RubberWindowFrame - 192 257 500 500 0 0 1280 1002 - - Module - PBXBuildResultsModule - Proportion - 236pt - - - Proportion - 458pt - - - Name - Build Results - ServiceClasses - - PBXBuildResultsModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C78EAA5065D492600B07095 - 1C78EAA6065D492600B07095 - 1CD0528F0623707200166675 - XCMainBuildResultsModuleGUID - - ToolbarConfiguration - xcode.toolbar.config.buildV3 - WindowString - 192 257 500 500 0 0 1280 1002 - - - Identifier - windowTool.find - Layout - - - Dock - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CDD528C0622207200134675 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1CD0528D0623707200166675 - - SplitCount - 1 - - StatusBarVisibility - 1 - - GeometryConfiguration - - Frame - {{0, 0}, {781, 167}} - RubberWindowFrame - 62 385 781 470 0 0 1440 878 - - Module - PBXNavigatorGroup - Proportion - 781pt - - - Proportion - 50% - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528E0623707200166675 - PBXProjectModuleLabel - Project Find - - GeometryConfiguration - - Frame - {{8, 0}, {773, 254}} - RubberWindowFrame - 62 385 781 470 0 0 1440 878 - - Module - PBXProjectFindModule - Proportion - 50% - - - Proportion - 428pt - - - Name - Project Find - ServiceClasses - - PBXProjectFindModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C530D57069F1CE1000CFCEE - 1C530D58069F1CE1000CFCEE - 1C530D59069F1CE1000CFCEE - 1CDD528C0622207200134675 - 1C530D5A069F1CE1000CFCEE - 1CE0B1FE06471DED0097A5F4 - 1CD0528E0623707200166675 - - WindowString - 62 385 781 470 0 0 1440 878 - WindowToolGUID - 1C530D57069F1CE1000CFCEE - WindowToolIsVisible - 0 - - - Identifier - windowTool.snapshots - Layout - - - Dock - - - Module - XCSnapshotModule - Proportion - 100% - - - Proportion - 100% - - - Name - Snapshots - ServiceClasses - - XCSnapshotModule - - StatusbarIsVisible - Yes - ToolbarConfiguration - xcode.toolbar.config.snapshots - WindowString - 315 824 300 550 0 0 1440 878 - WindowToolIsVisible - Yes - - - Identifier - windowTool.debuggerConsole - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAAC065D492600B07095 - PBXProjectModuleLabel - Debugger Console - - GeometryConfiguration - - Frame - {{0, 0}, {700, 358}} - RubberWindowFrame - 149 87 700 400 0 0 1440 878 - - Module - PBXDebugCLIModule - Proportion - 358pt - - - Proportion - 358pt - - - Name - Debugger Console - ServiceClasses - - PBXDebugCLIModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C530D5B069F1CE1000CFCEE - 1C530D5C069F1CE1000CFCEE - 1C78EAAC065D492600B07095 - - ToolbarConfiguration - xcode.toolbar.config.consoleV3 - WindowString - 149 87 440 400 0 0 1440 878 - WindowToolGUID - 1C530D5B069F1CE1000CFCEE - WindowToolIsVisible - 0 - - - Identifier - windowTool.scm - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAB2065D492600B07095 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1C78EAB3065D492600B07095 - - SplitCount - 1 - - StatusBarVisibility - 1 - - GeometryConfiguration - - Frame - {{0, 0}, {452, 0}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - - Module - PBXNavigatorGroup - Proportion - 0pt - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1CD052920623707200166675 - PBXProjectModuleLabel - SCM - - GeometryConfiguration - - ConsoleFrame - {{0, 259}, {452, 0}} - Frame - {{0, 7}, {452, 259}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - TableConfiguration - - Status - 30 - FileName - 199 - Path - 197.09500122070312 - - TableFrame - {{0, 0}, {452, 250}} - - Module - PBXCVSModule - Proportion - 262pt - - - Proportion - 266pt - - - Name - SCM - ServiceClasses - - PBXCVSModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C78EAB4065D492600B07095 - 1C78EAB5065D492600B07095 - 1C78EAB2065D492600B07095 - 1CD052920623707200166675 - - ToolbarConfiguration - xcode.toolbar.config.scmV3 - WindowString - 743 379 452 308 0 0 1280 1002 - - - Identifier - windowTool.breakpoints - IsVertical - 0 - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C77FABC04509CD000000102 - - PBXProjectModuleGUID - 1CE0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - no - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 168 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 1C77FABC04509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {168, 350}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - 0 - - GeometryConfiguration - - Frame - {{0, 0}, {185, 368}} - GroupTreeTableConfiguration - - MainColumn - 168 - - RubberWindowFrame - 315 424 744 409 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 185pt - - - ContentConfiguration - - PBXProjectModuleGUID - 1CA1AED706398EBD00589147 - PBXProjectModuleLabel - Detail - - GeometryConfiguration - - Frame - {{190, 0}, {554, 368}} - RubberWindowFrame - 315 424 744 409 0 0 1440 878 - - Module - XCDetailModule - Proportion - 554pt - - - Proportion - 368pt - - - MajorVersion - 3 - MinorVersion - 0 - Name - Breakpoints - ServiceClasses - - PBXSmartGroupTreeModule - XCDetailModule - - StatusbarIsVisible - 1 - TableOfContents - - 1CDDB66807F98D9800BB5817 - 1CDDB66907F98D9800BB5817 - 1CE0B1FE06471DED0097A5F4 - 1CA1AED706398EBD00589147 - - ToolbarConfiguration - xcode.toolbar.config.breakpointsV3 - WindowString - 315 424 744 409 0 0 1440 878 - WindowToolGUID - 1CDDB66807F98D9800BB5817 - WindowToolIsVisible - 1 - - - Identifier - windowTool.debugAnimator - Layout - - - Dock - - - Module - PBXNavigatorGroup - Proportion - 100% - - - Proportion - 100% - - - Name - Debug Visualizer - ServiceClasses - - PBXNavigatorGroup - - StatusbarIsVisible - 1 - ToolbarConfiguration - xcode.toolbar.config.debugAnimatorV3 - WindowString - 100 100 700 500 0 0 1280 1002 - - - Identifier - windowTool.bookmarks - Layout - - - Dock - - - Module - PBXBookmarksModule - Proportion - 166pt - - - Proportion - 166pt - - - Name - Bookmarks - ServiceClasses - - PBXBookmarksModule - - StatusbarIsVisible - 0 - WindowString - 538 42 401 187 0 0 1280 1002 - - - Identifier - windowTool.projectFormatConflicts - Layout - - - Dock - - - Module - XCProjectFormatConflictsModule - Proportion - 100% - - - Proportion - 100% - - - Name - Project Format Conflicts - ServiceClasses - - XCProjectFormatConflictsModule - - StatusbarIsVisible - 0 - WindowContentMinSize - 450 300 - WindowString - 50 850 472 307 0 0 1440 877 - - - Identifier - windowTool.classBrowser - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - OptionsSetName - Hierarchy, all classes - PBXProjectModuleGUID - 1CA6456E063B45B4001379D8 - PBXProjectModuleLabel - Class Browser - NSObject - - GeometryConfiguration - - ClassesFrame - {{0, 0}, {369, 96}} - ClassesTreeTableConfiguration - - PBXClassNameColumnIdentifier - 208 - PBXClassBookColumnIdentifier - 22 - - Frame - {{0, 0}, {616, 353}} - MembersFrame - {{0, 105}, {369, 395}} - MembersTreeTableConfiguration - - PBXMemberTypeIconColumnIdentifier - 22 - PBXMemberNameColumnIdentifier - 216 - PBXMemberTypeColumnIdentifier - 94 - PBXMemberBookColumnIdentifier - 22 - - PBXModuleWindowStatusBarHidden2 - 1 - RubberWindowFrame - 597 125 616 374 0 0 1280 1002 - - Module - PBXClassBrowserModule - Proportion - 354pt - - - Proportion - 354pt - - - Name - Class Browser - ServiceClasses - - PBXClassBrowserModule - - StatusbarIsVisible - 0 - TableOfContents - - 1C78EABA065D492600B07095 - 1C78EABB065D492600B07095 - 1CA6456E063B45B4001379D8 - - ToolbarConfiguration - xcode.toolbar.config.classbrowser - WindowString - 597 125 616 374 0 0 1280 1002 - - - Identifier - windowTool.refactoring - IncludeInToolsMenu - 0 - Layout - - - Dock - - - BecomeActive - 1 - GeometryConfiguration - - Frame - {0, 0}, {500, 335} - RubberWindowFrame - {0, 0}, {500, 335} - - Module - XCRefactoringModule - Proportion - 100% - - - Proportion - 100% - - - Name - Refactoring - ServiceClasses - - XCRefactoringModule - - WindowString - 200 200 500 356 0 0 1920 1200 - - - - diff --git a/VS8QtRules.rules b/VS8QtRules.rules deleted file mode 100755 index cdb6162..0000000 --- a/VS8QtRules.rules +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/debian/patches/disable_check_for_update.patch b/debian/patches/disable_check_for_update.patch deleted file mode 100644 index 26fe12e..0000000 --- a/debian/patches/disable_check_for_update.patch +++ /dev/null @@ -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. diff --git a/debian/patches/qsci_rename.patch b/debian/patches/qsci_rename.patch deleted file mode 100644 index 54489c1..0000000 --- a/debian/patches/qsci_rename.patch +++ /dev/null @@ -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 = ""; diff --git a/debian/patches/series b/debian/patches/series index 3b81d2d..e69de29 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,2 +0,0 @@ -disable_check_for_update.patch -qsci_rename.patch diff --git a/debian/universalindentgui.lintian-overrides b/debian/universalindentgui.lintian-overrides deleted file mode 100644 index c9e325d..0000000 --- a/debian/universalindentgui.lintian-overrides +++ /dev/null @@ -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 diff --git a/src/UniversalIndentGUI.vcproj b/src/UniversalIndentGUI.vcproj deleted file mode 100755 index 2fabfe7..0000000 --- a/src/UniversalIndentGUI.vcproj +++ /dev/null @@ -1,549 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/tclap/Makefile.in b/src/tclap/Makefile.in deleted file mode 100755 index d4b451f..0000000 --- a/src/tclap/Makefile.in +++ /dev/null @@ -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: diff --git a/translations/universalindent.ts b/translations/universalindent.ts deleted file mode 100755 index f4abf36..0000000 --- a/translations/universalindent.ts +++ /dev/null @@ -1,1095 +0,0 @@ - - - - - AboutDialog - - - About UniversalIndentGUI - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'sans-serif'; font-size:large;">Version %1 rev.%2, %3</span></p></body></html> - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;"><br />Written by : </span><a href="http://www.thomas-schweitzer.de"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">Thomas Schweitzer</span></a></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">Project Homepage : </span><a href="http://universalindent.sourceforge.net"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit </span><a href="http://www.gnu.org/licenses/gpl.html"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">Credits:</span></p></body></html> - - - - - OK - - - - - FindDialog - - - Find - - - - - Find what: - - - - - Find options - - - - - Match case - - - - - Match whole word - - - - - Search forward - - - - - Use Regular Expressions - - - - - Find Next - - - - - Close - - - - - IndentHandler - - - No indenter ini files - - - - - There exists no indenter ini files in the directory " - - - - - No indenter executable - - - - - There exists no indenter executable with the name "%1" in the directory "%2" nor in the global environment. - - - - - <b>Returned error message:</b> - - - - - <b>Reason could be:</b> - - - - - - <br><b>Callstring was:</b> - - - - - <br><br><b>Indenter output was:</b><pre> - - - - - Error calling Indenter - - - - - <b>Indenter returned with exit code:</b> - - - - - <b>Indent console output was:</b> - - - - - Indenter returned error - - - - - Indenter ini file header error - - - - - The loaded indenter ini file "%1"has a faulty header. At least the indenters file name is not set. - - - - - Interpreter needed - - - - - To use the selected indenter the program "%1" needs to be available in the global environment. You should add an entry to your path settings. - - - - - wine not installed - - - - - There exists only a win32 executable of the indenter and wine does not seem to be installed. Please install wine to be able to run the indenter. - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shows the currently chosen indenters name and lets you choose other available indenters</p></body></html> - - - - - Brings you to the online manual of the currently selected indenter, where you can get further help on the possible parameters. - - - - - Load Indenter Config File - - - - - Opens a file dialog to load the original config file of the indenter. - - - - - Alt+O - - - - - Save Indenter Config File - - - - - Opens a dialog to save the current indenter configuration to a file. - - - - - Alt+S - - - - - Create Indenter Call Shell Script - - - - - - Create a shell script that calls the current selected indenter for formatting an as parameter given file with the current indent settings. - - - - - Reset indenter parameters - - - - - - Resets all indenter parameters to the default values. - - - - - Choose indenter config file - - - - - - All files - - - - - Save indent config file - - - - - Shell Script - - - - - Save shell script - - - - - Really reset parameters? - - - - - Do you really want to reset the indenter parameters to the default values? - - - - - MainWindow - - - - Line %1, Column %2 - - - - - - Error opening file - - - - - - Cannot read the file - - - - - - Supported by indenter - - - - - - All files - - - - - Choose source code file - - - - - Save source code file - - - - - PDF Document - - - - - - Export source code file - - - - - HTML Document - - - - - Modified code - - - - - The source code has been modified. -Do you want to save your changes? - - - - - - Reopen the currently opened source code file by using the text encoding scheme - - - - - - Save the currently opened source code file by using the text encoding scheme - - - - - - Set the syntax highlightning to - - - - - File no longer exists - - - - - The file %1 in the list of recently opened files does no longer exist. - - - - - MainWindowUi - - - UniversalIndentGUI - - - - - Indenter - - - - - File - - - - - Export - - - - - Recently Opened Files - - - - - Reopen File with other Encoding - - - - - Save Source File As with other Encoding - - - - - - - Settings - - - - - Set Syntax Highlighter - - - - - Help - - - - - Indenter Settings - - - - - Main Toolbar - - - - - Open Source File - - - - - Opens a dialog for selecting a source code file. - - - - - Ctrl+O - - - - - Save Source File - - - - - Saves the currently shown source code to the last opened or saved source file. - - - - - Ctrl+S - - - - - - - Save Source File As... - - - - - Opens a file dialog to save the currently shown source code. - - - - - Ctrl+Shift+S - - - - - About UniversalIndentGUI - - - - - Shows info about UniversalIndentGUI. - - - - - Exit - - - - - Quits the UniversalIndentGUI. - - - - - Ctrl+Q - - - - - PDF - - - - - Export the currently visible source code as PDF document - - - - - HTML - - - - - Export the currently visible source code as HTML document - - - - - Parameter Tooltips - - - - - If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while. - - - - - DONOTTRANSLATE:indenterParameterTooltipsEnabled - - - - - Live Indent Preview - - - - - Ctrl+L - - - - - - Syntax Highlighting - - - - - Enables or disables syntax highlighting for the source code. - - - - - By enabling special key words of the source code are highlighted. - - - - - Ctrl+H - - - - - DONOTTRANSLATE:SyntaxHighlightingEnabled - - - - - - White Space Visible - - - - - Set white space visible - - - - - Enables or disables diplaying of white space characters in the editor. - - - - - DONOTTRANSLATE:whiteSpaceIsVisible - - - - - Auto Open Last File - - - - - Auto open last source file on startup - - - - - If selected opens last source code file on startup - - - - - DONOTTRANSLATE:loadLastSourceCodeFileOnStartup - - - - - Opens the settings dialog - - - - - Opens the settings dialog, to set language etc. - - - - - Check for update - - - - - - Checks online whether a new version of UniversalIndentGUI is available. - - - - - Clear Recently Opened List - - - - - Show Log - - - - - Displays logging information. - - - - - Displays logging info about the currently running UiGUI application. - - - - - SettingsDialog - - - Settings - - - - - Common - - - - - - Displays all available translations for UniversalIndentGui and lets you choose one. - - - - - Application language - - - - - If selected opens the source code file on startup that was opened last time. - - - - - Automatically open last file on startup - - - - - If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while. - - - - - Enable Parameter Tooltips - - - - - - Sets how many files should be remembered in the list of recently opened files. - - - - - Number of files in recently opened list - - - - - Editor - - - - - Enables or disables displaying of white space characters in the editor. - - - - - Display white space character (tabs, spaces, etc.) - - - - - Sets width in single spaces used for tabs - - - - - Defines how many spaces should be displayed in the editor for one tab. - - - - - Displayed width of tabs - - - - - Defines how many spaces should be displayed in the editor for one tab character. - - - - - Network - - - - - Checks whether a new version of UniversalIndentGUI exists on program start, but only once a day. - - - - - Check online for update on program start - - - - - If checked, the made proxy settings will be applied for all network connections. Type of the used proxy is SOCKS5. - - - - - Enable proxy - - - - - Host name: - - - - - Host name of the to be used proxy. E.g.: proxy.example.com - - - - - Port: - - - - - Port number to connect to the before named proxy. - - - - - User name: - - - - - If the proxy needs authentification, enter the login name here. - - - - - Password: - - - - - If the proxy needs authentification, enter the password here. - - - - - Syntax Highlighting - - - - - By enabling special key words of the source code are highlighted. - - - - - Enable syntax highlighting - - - - - Lets you make settings for all properties of the available syntax highlighters, like font and color. - - - - - Highlighter settings - - - - - Set the font for the current selected highlighter property. - - - - - Set Font - - - - - Set the color for the current selected highlighter property. - - - - - Set Color - - - - - TSLoggerDialog - - - Log - - - - - Logged messages - - - - - Clear log - - - - - ... - - - - - - Open folder containing log file. - - - - - ToolBarWidget - - - Form - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Opens a dialog for selecting a source code file.</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This file will be used to show what the indent tool changes.</p></body></html> - - - - - Open Source File - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Turns the preview of the reformatted source code on and off.</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">In other words it switches between formatted and nonformatted code. (Ctrl+L)</p></body></html> - - - - - Live Indent Preview - - - - - Ctrl+L - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Enables and disables the highlightning of the source</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">code shown below. (Still needs some performance improvements) (Ctrl+H)</p></body></html> - - - - - Syntax Highlight - - - - - Ctrl+H - - - - - DONOTTRANSLATE:SyntaxHighlightingEnabled - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shows info about UniversalIndentGUI</p></body></html> - - - - - About - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Quits the UniversalIndentGUI</p></body></html> - - - - - Exit - - - - - UiGuiErrorMessage - - - Show this message again - - - - - UiGuiIndentServer - - - UiGUI Server - - - - - Unable to start the server: %1. - - - - - UiGuiSettingsDialog - - - - English - - - - - - French - - - - - - German - - - - - - Chinese (Taiwan) - - - - - - Japanese - - - - - - Russian - - - - - - Ukrainian - - - - - - Unknown language mnemonic - - - - - UpdateCheckDialog - - - - Checking for update... - - - - - - Checking whether a newer version is available - - - - - - Update check error - - - - - There was an error while trying to check for an update! The retrieved file did not contain expected content. - - - - - There was an error while trying to check for an update! Error was : %1 - - - - - Update available - - - - - A newer version of UniversalIndentGUI is available. -Your version is %1. New version is %2. -Do you want to go to the download website? - - - - - No new update available - - - - - You already have the latest version of UniversalIndentGUI. - - - - diff --git a/translations/universalindent_de.ts b/translations/universalindent_de.ts deleted file mode 100755 index 24e1fe9..0000000 --- a/translations/universalindent_de.ts +++ /dev/null @@ -1,1131 +0,0 @@ - - - - - AboutDialog - - - About UniversalIndentGUI - Über UniversalIndentGUI - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'sans-serif'; font-size:large;">Version %1 rev.%2, %3</span></p></body></html> - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;"><br />Written by : </span><a href="http://www.thomas-schweitzer.de"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">Thomas Schweitzer</span></a></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">Project Homepage : </span><a href="http://universalindent.sourceforge.net"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit </span><a href="http://www.gnu.org/licenses/gpl.html"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">Credits:</span></p></body></html> - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Version %1 rev.%2, %3 </span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;">Version %1 rev.%2, %3 </p></body></html> - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;"><br />Written by : </span><a href="http://www.thomas-schweitzer.de"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt; text-decoration: underline; color:#0000ff;">Thomas Schweitzer</span></a></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">Project Homepage : </span><a href="http://universalindent.sourceforge.net"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt; text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit </span><a href="http://www.gnu.org/licenses/gpl.html"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt; text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:9pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">Credits:</span></p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2';">... ist eine Betriebssystem unabhängige, grafische Benutzeroberfläche für nahezu beliebige Quellcode Formatierer wie GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP und weitere. Hauptmerkmal ist eine Vorschau, welche es ermöglicht direkt zu sehen, welche Auswirkungen eine Änderung der Einstellungen des Quellcode Formatierers auf den Code haben.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2';"><br />Entwickelt von : <a href="http://www.thomas-schweitzer.de"><span style=" text-decoration: underline; color:#0000ff;">Thomas Schweitzer</span></a></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2';">Projekt Homepage : <a href="http://universalindent.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2';">Lizenz: UniversalIndentGui wird unter der Lizenz GPL 2 veröffentlicht. Details können in der Datei LICENSE.GPL oder auf <a href="http://www.gnu.org/licenses/gpl.html">nachgelesen werden.<span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a>.</p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2';"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2';">Credits:</p></body></html> - - - - OK - OK - - - - FindDialog - - - Find - - - - - Find what: - - - - - Find options - - - - - Match case - - - - - Match whole word - - - - - Search forward - - - - - Use Regular Expressions - - - - - Find Next - - - - - Close - - - - - IndentHandler - - - No indenter executable - Keine ausführbare Formatierer Datei - - - - Error calling Indenter - Fehler beim Aufruf des Formatierers - - - - Indenter returned error - Fehler beim Ausführen des Formatierers - - - - wine not installed - wine nicht installiert - - - - There exists only a win32 executable of the indenter and wine does not seem to be installed. Please install wine to be able to run the indenter. - Es existiert nur eine Win32 Version des Formatierers, für dessen Ausführung wine benötigt wird. Wine scheint nicht installiert zu sein. Bitte installieren Sie es. - - - - <b>Returned error message:</b> - <b>Zurückgegebene Fehlermeldung:</b> - - - - <b>Reason could be:</b> - <b>Grund könnte sein:</b> - - - - <b>Indenter returned with exit code:</b> - <b>Zurückgegebener Exit Code ist:</b> - - - - <b>Indent console output was:</b> - <b>Ausgabe des Formatierers war:</b> - - - - - <br><b>Callstring was:</b> - <br><b>Der Aufruf lautete:</b> - - - - No indenter ini files - Keine Indenter ini-Dateien - - - - There exists no indenter ini files in the directory " - Es wurden keine ini-Dateien für Indenter gefunden. Suchpfad war " - - - - There exists no indenter executable with the name "%1" in the directory "%2" nor in the global environment. - Es wurde kein ausführbarer Formatierer mit dem Namen "%1" in dem Verzeichnis "%2" oder global über die Pathvariable gefunden. - - - - <br><br><b>Indenter output was:</b><pre> - <br><br><b>Ausgabe des Formatierers:</b><pre> - - - - Indenter ini file header error - - - - - The loaded indenter ini file "%1"has a faulty header. At least the indenters file name is not set. - - - - - Interpreter needed - Interpreter benötigt - - - - To use the selected indenter the program "%1" needs to be available in the global environment. You should add an entry to your path settings. - Um den gewählten Formatierer benutzen zu können, muss das Programm "%1" global aufrufbar sein. Sie sollten den Pfad des Programms der Pathvariablen hinzufügen. - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shows the currently chosen indenters name and lets you choose other available indenters</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Zeigt den aktuell gewählten und alle verfügbaren Formatierer an.</p></body></html> - - - - Brings you to the online manual of the currently selected indenter, where you can get further help on the possible parameters. - Öffnet die Webseite mit dem Benutzerhandbuch des gewählten Formatierers, wo Sie weitere Informationen zu den möglichen Parametern erhalten. - - - - - Create a shell script that calls the current selected indenter for formatting an as parameter given file with the current indent settings. - Erzeugt ein Shell Skript mit dem sich der momentan gewählte Formatierer mit den momentanen Einstellungen zum Formatieren einer Datei aufrufen lässt. - - - - Choose indenter config file - Formatierer Konfigurationsdatei wählen - - - - - All files - Alle Dateien - - - - Save indent config file - Formatierer Konfiguration speichern - - - - Shell Script - Shell Skript - - - - Save shell script - Shell Skript speichern - - - - Load Indenter Config File - Formatierer Konfiguration laden - - - - Opens a file dialog to load the original config file of the indenter. - Öffnet ein Dialogfenster zum Laden einer Konfigurationsdatei des momentan gewählten Formatierers. - - - - Alt+O - Alt+O - - - - Save Indenter Config File - Formatierer Konfiguration speichern - - - - Opens a dialog to save the current indenter configuration to a file. - Öffnet ein Dialogfenster zum Speichern der Konfigurationsdatei des momentan gewählten Formatierers. - - - - Alt+S - Alt+S - - - - Create Indenter Call Shell Script - Formatierer Shell Skript erzeugen - - - - Reset indenter parameters - Parameter des Formatierers zurücksetzen - - - - - Resets all indenter parameters to the default values. - Alle Parameter des Formatierers auf Standardwerte zurücksetzen. - - - - Really reset parameters? - Wirklich alle Parameter zurücksetzen? - - - - Do you really want to reset the indenter parameters to the default values? - Wollen Sie wirklich alle Parameter des Formatierers auf die Standardwerte zurücksetzen? - - - - MainWindow - - - - Error opening file - Fehler beim Dateiöffnen - - - - - Cannot read the file - Kann folgende Datei nicht lesen - - - - Choose source code file - Quellcodedatei wählen - - - - Save source code file - Quellcodedatei speichern - - - - - Export source code file - Quellcode exportieren - - - - The source code has been modified. -Do you want to save your changes? - Die Quellcodedatei wurde geändert. -Möchten Sie die Änderungen speichern? - - - - - Supported by indenter - Von Formatierer unterstützt - - - - - All files - Alle Dateien - - - - PDF Document - PDF Dokument - - - - HTML Document - HTML Dokument - - - - Modified code - Geänderter Quellcode - - - - - Reopen the currently opened source code file by using the text encoding scheme - Die momentan geöffnete Quellcodedatei erneut öffnen, unter Verwendung der Textkodierung - - - - - Set the syntax highlightning to - Setzte Syntax-Hervorhebung für - - - - File no longer exists - Datei existiert nicht mehr - - - - The file %1 in the list of recently opened files does no longer exist. - Die Datei %1 in der Liste der zuletzt geöffneten Dateien existiert nicht mehr. - - - - - Save the currently opened source code file by using the text encoding scheme - Die momentan geöffnete Quellcodedatei speichern, unter Verwendung der Textkodierung - - - - - Line %1, Column %2 - Zeile %1, Spalte %2 - - - - MainWindowUi - - - UniversalIndentGUI - - - - - Indenter - - - - - File - Datei - - - - Export - - - - - Recently Opened Files - Zuletzt geöffnete Dateien - - - - Reopen File with other Encoding - Datei mit anderer Kodierung erneut öffnen - - - - Save Source File As with other Encoding - Quellcodedatei mit anderer Kodierung speichern - - - - - - Settings - Einstellungen - - - - Set Syntax Highlighter - Setze Syntax Highlighter - - - - Help - Hilfe - - - - Main Toolbar - Hauptmenüleiste - - - - Open Source File - Quellcodedatei öffnen - - - - Opens a dialog for selecting a source code file. - Öffnet ein Dialogfenster zur Auswahl der Quellcodedatei. - - - - Ctrl+O - Ctrl+O - - - - Save Source File - Speichern des Quellcodes - - - - Saves the currently shown source code to the last opened or saved source file. - Speichert den momentan sichtbaren Quellcode unter dem zuletzt gewählten Dateinamen. - - - - Ctrl+S - Ctrl+S - - - - Opens a file dialog to save the currently shown source code. - Öffnet ein Dialogfenster zur Auswahl des Dateinamens unter dem der momentan sichtbare Quellcode gespeichert werden soll. - - - - About UniversalIndentGUI - Über UniversalIndentGUI - - - - Shows info about UniversalIndentGUI. - Zeigt Informationen über UniversalIndentGUI. - - - - Exit - Beenden - - - - Quits the UniversalIndentGUI. - Beendet UniversalIndentGUI. - - - - Ctrl+Q - Ctrl+Q - - - - PDF - PDF - - - - Export the currently visible source code as PDF document - Exportiert den momentan sichtbaren Quellcode als PDF Dokument - - - - HTML - HTML - - - - Export the currently visible source code as HTML document - Exportiert den momentan sichtbaren Quellcode als HTML Dokument - - - - Parameter Tooltips - Parameter Tooltips - - - - If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while. - Zeigt Tooltips zu den Formatierer Einstellungen an, wenn aktiviert. - - - - DONOTTRANSLATE:indenterParameterTooltipsEnabled - - - - - Live Indent Preview - Echtzeit Formatieransicht - - - - Ctrl+L - Strg+L - - - - - Syntax Highlighting - Syntax Hervorhebung - - - - Enables or disables syntax highlighting for the source code. - Aktiviert oder deaktiviert die Syntaxhervorhebung des Quellcodes. - - - - By enabling special key words of the source code are highlighted. - Aktiviert oder deaktiviert die Syntaxhervorhebung des Quellcodes. - - - - DONOTTRANSLATE:SyntaxHighlightingEnabled - - - - - - White Space Visible - Leerzeichen sichtbar - - - - Set white space visible - Stelle Leerzeichen dar - - - - Enables or disables diplaying of white space characters in the editor. - Aktiviert oder deaktiviert die Darstellung von Leerzeichen im Editor. - - - - DONOTTRANSLATE:whiteSpaceIsVisible - - - - - Auto Open Last File - Letzte Datei automatisch öffnen - - - - Auto open last source file on startup - Bei Porgrammstart letzte Datei automatisch öffnen - - - - If selected opens last source code file on startup - Wenn aktiviert, dann wird die zuletzt geöffnete Datei bei Progrannstart automatisch geladen - - - - DONOTTRANSLATE:loadLastSourceCodeFileOnStartup - - - - - Opens the settings dialog - Öffnet das Einstellungsmenü - - - - Opens the settings dialog, to set language etc. - Öffnet das Einstellungsmenü, für Sprache usw. - - - - Check for update - Auf Update prüfen - - - - - Checks online whether a new version of UniversalIndentGUI is available. - Prüft ob eine neue Version von UniversalIndentGUI zum Download verfügbar ist. - - - - Clear Recently Opened List - Liste zuletzt geöffneter Dateien leeren - - - - Show Log - - - - - Displays logging information. - - - - - Displays logging info about the currently running UiGUI application. - - - - - Indenter Settings - Indenter Einstellungen - - - - - - Save Source File As... - Speichern unter... - - - - Ctrl+Shift+S - Strg+Shift+S - - - - Ctrl+H - Strg+H - - - - SettingsDialog - - - Common - Allgemein - - - - Settings - Einstellungen - - - - Automatically open last file on startup - Letzte Datei automatisch öffnen - - - - Enable Parameter Tooltips - Parameter Tooltips aktivieren - - - - Editor - Editor - - - - Highlighter settings - Syntaxhervorhebung - - - - Set Font - Schriftart - - - - Set Color - Farbe - - - - - Displays all available translations for UniversalIndentGui and lets you choose one. - Zeigt alle für UniversalIndentGui zum Auswählen verfügbaren Übersetzungen an. - - - - Application language - Programmsprache - - - - If selected opens the source code file on startup that was opened last time. - Wenn aktiviert, dann wird die zuletzt geöffnete Datei bei Progrannstart automatisch geladen. - - - - If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while. - Zeigt Tooltips zu den Formatierer Einstellungen an, wenn aktiviert. - - - - - Sets how many files should be remembered in the list of recently opened files. - Legt fest wieviele Einträge in der Liste der zuletzt geöffneten Dateien möglich sein sollen. - - - - Enables or disables displaying of white space characters in the editor. - Aktiviert oder deaktiviert die Darstellung von Leerzeichen, Tbs usw. im Editor. - - - - Display white space character (tabs, spaces, etc.) - Leerzeichen, Tabs usw. darstellen - - - - Defines how many spaces should be displayed in the editor for one tab character. - Legt fest wie viele Zeichen breit ein Tabulator dargestellt werden soll. - - - - Sets width in single spaces used for tabs - Legt die Breite eines Tabs fest - - - - Defines how many spaces should be displayed in the editor for one tab. - Legt fest wie viele Zeichen breit ein Tabulator dargestellt werden soll. - - - - Displayed width of tabs - Breite eines Tabs - - - - Network - - - - - If checked, the made proxy settings will be applied for all network connections. Type of the used proxy is SOCKS5. - - - - - Enable proxy - - - - - Host name: - - - - - Host name of the to be used proxy. E.g.: proxy.example.com - - - - - Port: - - - - - Port number to connect to the before named proxy. - - - - - User name: - - - - - If the proxy needs authentification, enter the login name here. - - - - - Password: - - - - - If the proxy needs authentification, enter the password here. - - - - - Syntax Highlighting - Syntax Hervorhebung - - - - By enabling special key words of the source code are highlighted. - Aktiviert oder deaktiviert die Syntaxhervorhebung des Quellcodes. - - - - Enable syntax highlighting - Syntaxhervorhebung aktivieren - - - - Lets you make settings for all properties of the available syntax highlighters, like font and color. - Einstellungen für die verschiedenen Syntaxhervorhebungen, wie Schriftart und Farbe. - - - - Set the font for the current selected highlighter property. - Schriftart für die gewählte Syntaxeigenschaft festlegen. - - - - Set the color for the current selected highlighter property. - Farbe für die gewählte Syntaxeigenschaft festlegen. - - - - Number of files in recently opened list - Anzahl der Einträge in zuletzt geöffnet Liste - - - - Checks whether a new version of UniversalIndentGUI exists on program start, but only once a day. - Prüft bei Programmstart ob eine neue Version von UniversalIndentGUI zum Download verfügbar ist, prüft aber nur einmal täglich. - - - - Check online for update on program start - Auf Update bei Programmstart prüfen - - - - TSLoggerDialog - - - Log - - - - - Logged messages - - - - - Clear log - - - - - ... - - - - - - Open folder containing log file. - - - - - ToolBarWidget - - - Form - Form - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Opens a dialog for selecting a source code file.</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This file will be used to show what the indent tool changes.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Öffnet ein Dialogfenster zur Auswahl der Quellcodedatei.</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Anhand dieser Datei werden die Auswirkungen des Formatierers dargestellt.</p></body></html> - - - - Open Source File - Quellcodedatei öffnen - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Turns the preview of the reformatted source code on and off.</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">In other words it switches between formatted and nonformatted code. (Ctrl+L)</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Schaltet die Voransicht für die Auswirkungen des Formatierers ein und aus.</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Bedeutet es wird zwischen formatiertem und unformatiertem Code gewechselt. (Strg+L)</p></body></html> - - - - Live Indent Preview - Echtzeit Formatieransicht - - - - Ctrl+L - Strg+L - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Enables and disables the highlightning of the source</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">code shown below. (Still needs some performance improvements) (Ctrl+H)</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Schaltet die Syntaxhervorhebung für den Quellcode ein und aus.</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">(Benötigt noch Performanz Verbesserungen.) (Strg+H)</p></body></html> - - - - Syntax Highlight - Syntax Hervorhebung - - - - Ctrl+H - Strg-H - - - - DONOTTRANSLATE:SyntaxHighlightingEnabled - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shows info about UniversalIndentGUI</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Zeigt Informationen über UniversalIndentGUI</p></body></html> - - - - About - Info - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Quits the UniversalIndentGUI</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Beendet UniversalIndentGUI</p></body></html> - - - - Exit - Beenden - - - - UiGuiErrorMessage - - - Show this message again - Meldung immer wieder anzeigen - - - - UiGuiIndentServer - - - UiGUI Server - UiGUI Server - - - - Unable to start the server: %1. - Konnte Server nicht starten: %1. - - - - UiGuiSettingsDialog - - - - English - Englisch - - - - - German - Deutsch - - - - - Japanese - Japanisch - - - - - Unknown language mnemonic - Unbekanntes Sprachkürzel - - - - - Chinese (Taiwan) - Chinesisch (Taiwan) - - - - - French - Französisch - - - - - Russian - Russisch - - - - - Ukrainian - Ukrainisch - - - - UpdateCheckDialog - - - - Checking for update... - Prüfe auf Update... - - - - - Checking whether a newer version is available - Prüfe ob eine neuere Version verfügbar ist - - - - - Update check error - - - - - There was an error while trying to check for an update! The retrieved file did not contain expected content. - - - - - There was an error while trying to check for an update! Error was : %1 - - - - - Update available - Update verfügbar - - - - A newer version of UniversalIndentGUI is available. -Your version is %1. New version is %2. -Do you want to go to the download website? - Eine neuere Version von UniversalIndentGUI ist verfügbar. -Ihre Version ist %1. Die neue Version ist %2. -Wollen Sie zur Download Website geleitet werden? - - - - No new update available - Kein Update verfügbar - - - - You already have the latest version of UniversalIndentGUI. - Sie haben bereits die aktuellste Version von UniversalIndentGUI. - - - diff --git a/translations/universalindent_fr.ts b/translations/universalindent_fr.ts deleted file mode 100755 index 9285367..0000000 --- a/translations/universalindent_fr.ts +++ /dev/null @@ -1,1119 +0,0 @@ - - - - - AboutDialog - - - About UniversalIndentGUI - À propos d'UniversalIdentGUI - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'sans-serif'; font-size:large;">Version %1 rev.%2, %3</span></p></body></html> - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;"><br />Written by : </span><a href="http://www.thomas-schweitzer.de"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">Thomas Schweitzer</span></a></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">Project Homepage : </span><a href="http://universalindent.sourceforge.net"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit </span><a href="http://www.gnu.org/licenses/gpl.html"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">Credits:</span></p></body></html> - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Version %1 rev.%2, %3 </span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"><html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;">Version %1 rev.%2, %3 </p></body></html> - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;"><br />Written by : </span><a href="http://www.thomas-schweitzer.de"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt; text-decoration: underline; color:#0000ff;">Thomas Schweitzer</span></a></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">Project Homepage : </span><a href="http://universalindent.sourceforge.net"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt; text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit </span><a href="http://www.gnu.org/licenses/gpl.html"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt; text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:9pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">Credits:</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"><html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><span style=" font-family:'MS Shell Dlg 2';">… est une surcouche graphique multiplateforme pour de nombreux outils de formatage, embellisseurs et indenteurs de code tels GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP, etc. La fonctionnalité principale en est une vue « temps réel » qui permet de juger immédiatement de l'impact du choix d'une option de formatage sur le code source.</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br />Créé par : <a href="http://www.thomas-schweitzer.de"><span style=" text-decoration: underline; color:#0000ff;">Thomas Schweitzer</span></a></p><p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;">Site du projet : <a href="http://universalindent.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;">License : UniversalIndentGui est diffusé sous licence GPL 2. Pour plus de détails, lire le fichier inclus LICENSE.GPL et visiter <a href="http://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a>.</p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;">Crédits :</p></body></html> - - - - OK - OK - - - - FindDialog - - - Find - - - - - Find what: - - - - - Find options - - - - - Match case - - - - - Match whole word - - - - - Search forward - - - - - Use Regular Expressions - - - - - Find Next - - - - - Close - - - - - IndentHandler - - - No indenter executable - Pas de fichier exécutable d'indenteur - - - - wine not installed - Wine n'est pas installé - - - - There exists only a win32 executable of the indenter and wine does not seem to be installed. Please install wine to be able to run the indenter. - Il n'existe qu'une version win32 du fichier exécutable de l'indenteur et Wine ne semble pas installé. Prière d'installer Wine pour être en mesure de lancer le logiciel. - - - - <b>Returned error message:</b> - <b>Message d'erreur retourné :</b> - - - - <b>Reason could be:</b> - <b>La raison peut en être :</b> - - - - Error calling Indenter - Erreur lors de l'appel de l'indenteur - - - - <b>Indenter returned with exit code:</b> - <b>L'indenteur a renvoyé le code de retour suivant :</b> - - - - <b>Indent console output was:</b> - <b>La sortie console est :</b> - - - - Indenter returned error - L'indenteur a retourné l'erreur suivante - - - - No indenter ini files - Pas de fichier ini pour l'indenteur - - - - There exists no indenter ini files in the directory " - Il n'y a aucun fichier ini d'indenteur dans le répertoire " - - - - There exists no indenter executable with the name "%1" in the directory "%2" nor in the global environment. - Il n'y a aucun fichier exécutable d'indenteur de nom « %1 » dans le répertoire « %2 » ou dans l'environnement global. - - - - - <br><b>Callstring was:</b> - <br><b>La valeur passée était :</b> - - - - <br><br><b>Indenter output was:</b><pre> - <br><br><b>La sortie de l'indenteur était :</b><pre> - - - - Indenter ini file header error - - - - - The loaded indenter ini file "%1"has a faulty header. At least the indenters file name is not set. - - - - - Interpreter needed - Interpréteur nécessaire - - - - To use the selected indenter the program "%1" needs to be available in the global environment. You should add an entry to your path settings. - Pour utiliser l'indenteur chois, le programme « %1 » doit être disponible dans l'environnement global. Vous devriez l'ajouter dans votre PATH. - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shows the currently chosen indenters name and lets you choose other available indenters</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Montre le nom de l'indenteur actuellement sélectionné et vous propose les autres indenteurs disponibles</p></body></html> - - - - Brings you to the online manual of the currently selected indenter, where you can get further help on the possible parameters. - Vous conduit au manuel en ligne de l'indenteur actuellement sélectionné, où vous pouvez obtenir plus d'aide sur les paramètres possibles. - - - - Load Indenter Config File - Charger un fichier de configuration d'indenteur - - - - Opens a file dialog to load the original config file of the indenter. - Ouvrir une boite de dialogue d'ouverture de fichier pour charger le fichier de configuration d'origine de l'indenteur. - - - - Alt+O - Alt+O - - - - Save Indenter Config File - Enregistrer le fichier de configuration de l'indenteur - - - - Opens a dialog to save the current indenter configuration to a file. - Ouvrir une boite de dialogue d'enregistrement de fichier pour enregistrer le fichier de configuration de l'indenteur. - - - - Alt+S - Alt+S - - - - Create Indenter Call Shell Script - Créer un script shell d'appel de l'indenteur - - - - - Create a shell script that calls the current selected indenter for formatting an as parameter given file with the current indent settings. - Créé un script shell qui appelle l'indenteur actuellement sélectionné pour l'appliquer à un fichier passé en paramètre avec les réglages actuels. - - - - Reset indenter parameters - Réinitialiser les paramètres de l'indenteur - - - - - Resets all indenter parameters to the default values. - Réinitialiser tous les paramètres de l'indenteur à leur valeur par défaut. - - - - Choose indenter config file - Sélectionner le fichier de configuration de l'indenteur - - - - - All files - Tous les fichiers - - - - Save indent config file - Enregistrer le fichier de configuration de l'indenteur - - - - Shell Script - Script shell - - - - Save shell script - Sauvegarder le script shell - - - - Really reset parameters? - Êtes-vous sûr de vouloir réinitialiser les paramètres de l'indenteur ? - - - - Do you really want to reset the indenter parameters to the default values? - Êtes-vous sûr de vouloir réinitialiser tous les paramètres de l'indenteur à leur valeur par défaut ? - - - - MainWindow - - - - Error opening file - Erreur à l'ouverture du fichier - - - - - Cannot read the file - Lecture du fichier impossible - - - - - Supported by indenter - Supporté par l'indenteur - - - - - All files - Tous les fichiers - - - - Choose source code file - Sélectionner le fichier de code source - - - - Save source code file - Enregistrer le fichier de code source - - - - PDF Document - Document PDF - - - - - Export source code file - Exporter le fichier de code source - - - - HTML Document - Document HTML - - - - Modified code - Code modifié - - - - The source code has been modified. -Do you want to save your changes? - Le code source a été modifié. -Souhaitez-vous enregistrer vos modifications ? - - - - - Reopen the currently opened source code file by using the text encoding scheme - Réouvrir le fichier de code source en utilisant le schéma d'encodage du texte - - - - - Line %1, Column %2 - Ligne %1, Colonne %2 - - - - - Save the currently opened source code file by using the text encoding scheme - Enregistrer le code source en cours d'édition en utilisant le schéma d'encodage du texte - - - - - Set the syntax highlightning to - Régler la coloration syntaxique sur - - - - File no longer exists - Le fichier n'existe plus - - - - The file %1 in the list of recently opened files does no longer exist. - Le fichier %1 de la liste des fichiers récents n'existe plus. - - - - MainWindowUi - - - UniversalIndentGUI - UniversalIndentGUI - - - - Indenter - Indenteur - - - - File - Fichier - - - - Export - Export - - - - Recently Opened Files - Fichiers ouverts récemment - - - - Reopen File with other Encoding - Réouvrir le fichier avec un autre encodage - - - - Save Source File As with other Encoding - Enregistrer le fichier Sous… avec un autre encodage - - - - - - Settings - Préférences - - - - Set Syntax Highlighter - Choisir l'outil de coloration syntaxique - - - - Help - Aide - - - - Indenter Settings - Réglages de l'indenteur - - - - Main Toolbar - Barre d'outils principale - - - - Open Source File - Ouvrir un fichier source - - - - Opens a dialog for selecting a source code file. - Ouvrir une boite de dialogue pour choisir un fichier source. - - - - Ctrl+O - Ctrl+O - - - - Save Source File - Enregistrer le fichier source - - - - Saves the currently shown source code to the last opened or saved source file. - Enregistrer le code source en cours d'édition dans le dernier fichier ouvert ou sauvegardé. - - - - Ctrl+S - Ctrl+S - - - - Opens a file dialog to save the currently shown source code. - Ouvrir une boite de dialogue d'enregistrement de fichier pour enregistrer le code source en cours d'édition. - - - - About UniversalIndentGUI - À propos d'UniversalIdentGUI - - - - Shows info about UniversalIndentGUI. - Informations à propos d'UniversalIndentGUI. - - - - Exit - Quitter - - - - Quits the UniversalIndentGUI. - Quitte le logiciel UniversalIndentGUI. - - - - Ctrl+Q - Ctrl+Q - - - - PDF - PDF - - - - Export the currently visible source code as PDF document - Exporte le code source en cours d'édition en format PDF - - - - HTML - HTML - - - - Export the currently visible source code as HTML document - Exporte le code source en cours d'édition en format HTML - - - - Parameter Tooltips - Bulle d'aide de paramètre - - - - If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while. - Si coché, les bulles d'aide apparaitront si le curseur de la souris s'immobilise sur un paramètre d'indenteur quelque temps. - - - - DONOTTRANSLATE:indenterParameterTooltipsEnabled - - - - - Live Indent Preview - Prévisualisation « temps réel » de l'indentation - - - - Ctrl+L - Ctrl+L - - - - - Syntax Highlighting - Coloration syntaxique - - - - Enables or disables syntax highlighting for the source code. - (Dés-)active la coloration syntaxique du code. - - - - By enabling special key words of the source code are highlighted. - L'activation met en valeur les mots-clefs du code source. - - - - DONOTTRANSLATE:SyntaxHighlightingEnabled - - - - - - White Space Visible - Voir les espaces blancs - - - - Set white space visible - Rend les espaces blancs - - - - Enables or disables diplaying of white space characters in the editor. - (Dés-)active l'affichage des espaces blancs dans l'éditeur. - - - - DONOTTRANSLATE:whiteSpaceIsVisible - - - - - Auto Open Last File - Réouverture automatique du dernier fichier - - - - Auto open last source file on startup - Rouvre automatiquement au démarrage du programme le dernier fichier ouvert - - - - If selected opens last source code file on startup - Si activé, rouvre automatiquement au démarrage du programme le dernier fichier ouvert - - - - DONOTTRANSLATE:loadLastSourceCodeFileOnStartup - - - - - Opens the settings dialog - Ouvrir la boite de dialogue des préférences - - - - Opens the settings dialog, to set language etc. - Ouvrir la boite de dialogue des préférences, pour choisir la langue de l'interface, etc. - - - - Check for update - Vérifier les mises à jour - - - - - Checks online whether a new version of UniversalIndentGUI is available. - Recherche en ligne si une nouvelle version d'UniversalIndentGUI est disponible. - - - - Clear Recently Opened List - Vider la liste des fichiers récemment ouverts - - - - Show Log - - - - - Displays logging information. - - - - - Displays logging info about the currently running UiGUI application. - - - - - - - Save Source File As... - Enregistrer le fichier source Sous… - - - - Ctrl+Shift+S - Ctrl+Shift+S - - - - Ctrl+H - Ctrl+H - - - - SettingsDialog - - - Settings - Préférences - - - - Common - Général - - - - - Displays all available translations for UniversalIndentGui and lets you choose one. - Affiche toutes les versions linguistiques d'UniversalIndentGui et vous permet d'en sélectionner une. - - - - Application language - Langue de l'application - - - - If selected opens the source code file on startup that was opened last time. - Si cativé, ouvre le fichier de code source qui était ouvert la dernière fois. - - - - Automatically open last file on startup - Réouverture automatique du dernier fichier - - - - If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while. - Si coché, les bulles d'aide apparaitront si le curseur de la souris s'immobilise sur un paramètre d'indenteur quelque temps. - - - - Enable Parameter Tooltips - Activer les bulles d'aide sur les paramètres - - - - - Sets how many files should be remembered in the list of recently opened files. - Définit combien de noms de fichiers apparaissent dans la liste des fichiers récemment ouverts. - - - - Number of files in recently opened list - Nombre de fichiers dans la liste des fichiers récents - - - - Checks whether a new version of UniversalIndentGUI exists on program start, but only once a day. - Recherche si une nouvelle version d'UniversalIndentGUI est disponible au démarrage du programme, mais une fois par jour seulement. - - - - Check online for update on program start - Rechercher si une nouvelle version est disponible au démarrage du programme - - - - Editor - Éditeur - - - - Enables or disables displaying of white space characters in the editor. - (Dés-)active l'affichage des espaces blancs dans l'éditeur. - - - - Display white space character (tabs, spaces, etc.) - Afficher les espaces blancs (tabulations, espaces, etc.) - - - - Sets width in single spaces used for tabs - Régler la largeur en espaces simples pour les tabulations - - - - Defines how many spaces should be displayed in the editor for one tab. - Définit combien d'espaces blancs doivent être affichés pour une tabulation, dans l'éditeur. - - - - Displayed width of tabs - Affiche la largeur des tabulations - - - - Defines how many spaces should be displayed in the editor for one tab character. - Définit combien d'espaces blancs doivent être affichés pour une tabulation, dans l'éditeur. - - - - Network - - - - - If checked, the made proxy settings will be applied for all network connections. Type of the used proxy is SOCKS5. - - - - - Enable proxy - - - - - Host name: - - - - - Host name of the to be used proxy. E.g.: proxy.example.com - - - - - Port: - - - - - Port number to connect to the before named proxy. - - - - - User name: - - - - - If the proxy needs authentification, enter the login name here. - - - - - Password: - - - - - If the proxy needs authentification, enter the password here. - - - - - Syntax Highlighting - Coloration syntaxique - - - - By enabling special key words of the source code are highlighted. - L'activation met en valeur les mots-clefs du code source. - - - - Enable syntax highlighting - Activer la coloration syntaxique - - - - Lets you make settings for all properties of the available syntax highlighters, like font and color. - Vous permet de régler toutes les propriétés des outils de coloration syntaxique disponibles, comme la police de caractère et la couleur. - - - - Highlighter settings - Réglage de l'outil de coloration syntaxique - - - - Set the font for the current selected highlighter property. - Choisir la police de caractère comme propriété de l'outil de coloration syntaxique sélectionné. - - - - Set Font - Choisir la police - - - - Set the color for the current selected highlighter property. - Choisir la couleur comme propriété de l'outil de coloration syntaxique sélectionné. - - - - Set Color - Choisir la couleur - - - - TSLoggerDialog - - - Log - - - - - Logged messages - - - - - Clear log - - - - - ... - - - - - - Open folder containing log file. - - - - - ToolBarWidget - - - Form - Formulaire - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Opens a dialog for selecting a source code file.</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This file will be used to show what the indent tool changes.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ouvrir une boite de dialogue pour choisir un fichier source.</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Ce fichier va être utilisé pour montrer les altérations apportées par l'outil d'indentation.</p></body></html> - - - - Open Source File - Ouvrir un fichier source - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Turns the preview of the reformatted source code on and off.</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">In other words it switches between formatted and nonformatted code. (Ctrl+L)</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">(Dés-)active la prévisualisation du code source reformaté.</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">En d'autres termes, bascule entre code source formaté et non formaté. (Ctrl+L)</p></body></html> - - - - Live Indent Preview - Prévisualisation « temps réel » de l'indentation - - - - Ctrl+L - Ctrl+L - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Enables and disables the highlightning of the source</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">code shown below. (Still needs some performance improvements) (Ctrl+H)</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">(Dés-)active la coloration syntaxique du code</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">source présenté ci-dessous. (nécessite encore des améliorations de performances) (Ctrl+H)</p></body></html> - - - - Syntax Highlight - Coloration syntaxique - - - - Ctrl+H - Ctrl+H - - - - DONOTTRANSLATE:SyntaxHighlightingEnabled - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shows info about UniversalIndentGUI</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Présente des informations à propos d'UniversalIndentGUI</p></body></html> - - - - About - À propos - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Quits the UniversalIndentGUI</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Quitter UniversalIndentGUI</p></body></html> - - - - Exit - Quitter - - - - UiGuiErrorMessage - - - Show this message again - Afficher ce message à nouveau - - - - UiGuiIndentServer - - - UiGUI Server - Serveur UIGUI - - - - Unable to start the server: %1. - Impossible de démarrer le serveur : %1. - - - - UiGuiSettingsDialog - - - - English - Anglais - - - - - French - Français - - - - - German - Allemand - - - - - Chinese (Taiwan) - Chinois (Taïwan) - - - - - Japanese - Japonais - - - - - Russian - Russe - - - - - Ukrainian - Ukrainien - - - - - Unknown language mnemonic - Mnémonique de langue inconnue - - - - UpdateCheckDialog - - - - Checking for update... - Rechercher les mises à jour… - - - - - Checking whether a newer version is available - Rechercher si une nouvelle version est disponible - - - - - Update check error - - - - - There was an error while trying to check for an update! The retrieved file did not contain expected content. - - - - - There was an error while trying to check for an update! Error was : %1 - - - - - Update available - Mise à jour disponible - - - - A newer version of UniversalIndentGUI is available. -Your version is %1. New version is %2. -Do you want to go to the download website? - Une nouvelle version d'UniversalIndentGUI est disponible. -Votre version est %1. La nouvelle version est %2. -Voulez-vous allez sur le site de téléchargement ? - - - - No new update available - Aucune mise à jour disponible - - - - You already have the latest version of UniversalIndentGUI. - Vous possédez déjà la dernière version d'UniversalIndentGUI. - - - diff --git a/translations/universalindent_ja.ts b/translations/universalindent_ja.ts deleted file mode 100755 index a68da8c..0000000 --- a/translations/universalindent_ja.ts +++ /dev/null @@ -1,1095 +0,0 @@ - - - - - AboutDialog - - - About UniversalIndentGUI - UniversalIndentGUI について - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'sans-serif'; font-size:large;">Version %1 rev.%2, %3</span></p></body></html> - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;"><br />Written by : </span><a href="http://www.thomas-schweitzer.de"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">Thomas Schweitzer</span></a></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">Project Homepage : </span><a href="http://universalindent.sourceforge.net"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit </span><a href="http://www.gnu.org/licenses/gpl.html"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">Credits:</span></p></body></html> - - - - - OK - - - - - FindDialog - - - Find - - - - - Find what: - - - - - Find options - - - - - Match case - - - - - Match whole word - - - - - Search forward - - - - - Use Regular Expressions - - - - - Find Next - - - - - Close - - - - - IndentHandler - - - No indenter executable - インデントツールの実行ファイルがありません - - - - wine not installed - wine がインストールされていません - - - - There exists only a win32 executable of the indenter and wine does not seem to be installed. Please install wine to be able to run the indenter. - インデントツールの実行ファイルは win32 形式のものしか存在しません。インデントツールを実行するために wine をインストールしてください。 - - - - <b>Returned error message:</b> - - - - - <b>Reason could be:</b> - - - - - Error calling Indenter - - - - - <b>Indenter returned with exit code:</b> - - - - - <b>Indent console output was:</b> - - - - - - <br><b>Callstring was:</b> - - - - - No indenter ini files - - - - - There exists no indenter ini files in the directory " - - - - - There exists no indenter executable with the name "%1" in the directory "%2" nor in the global environment. - - - - - <br><br><b>Indenter output was:</b><pre> - - - - - Indenter returned error - - - - - Indenter ini file header error - - - - - The loaded indenter ini file "%1"has a faulty header. At least the indenters file name is not set. - - - - - Interpreter needed - - - - - To use the selected indenter the program "%1" needs to be available in the global environment. You should add an entry to your path settings. - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shows the currently chosen indenters name and lets you choose other available indenters</p></body></html> - - - - - Brings you to the online manual of the currently selected indenter, where you can get further help on the possible parameters. - - - - - - Create a shell script that calls the current selected indenter for formatting an as parameter given file with the current indent settings. - - - - - Choose indenter config file - - - - - - All files - - - - - Save indent config file - - - - - Shell Script - - - - - Save shell script - - - - - Load Indenter Config File - インデントツールの設定ファイルを開く - - - - Opens a file dialog to load the original config file of the indenter. - インデントツールの設定ファイルの読み込みダイアログを開きます。 - - - - Alt+O - - - - - Save Indenter Config File - インデントツールの設定ファイルを保存 - - - - Opens a dialog to save the current indenter configuration to a file. - 現在のインデントツールの設定をファイルに保存するためのダイアログを開きます。 - - - - Alt+S - - - - - Create Indenter Call Shell Script - - - - - Reset indenter parameters - - - - - - Resets all indenter parameters to the default values. - - - - - Really reset parameters? - - - - - Do you really want to reset the indenter parameters to the default values? - - - - - MainWindow - - - - Error opening file - ファイルの読み込みエラーが発生しました - - - - - Cannot read the file - 次のファイルを開けませんでした。: - - - - - Supported by indenter - - - - - - All files - - - - - Choose source code file - - - - - Save source code file - - - - - PDF Document - - - - - - Export source code file - - - - - HTML Document - - - - - Modified code - - - - - The source code has been modified. -Do you want to save your changes? - - - - - - Reopen the currently opened source code file by using the text encoding scheme - - - - - - Set the syntax highlightning to - - - - - File no longer exists - - - - - The file %1 in the list of recently opened files does no longer exist. - - - - - - Save the currently opened source code file by using the text encoding scheme - - - - - - Line %1, Column %2 - - - - - MainWindowUi - - - UniversalIndentGUI - - - - - Indenter - インデントツール - - - - File - ファイル - - - - Export - エクスポート - - - - Recently Opened Files - - - - - Reopen File with other Encoding - - - - - Save Source File As with other Encoding - - - - - - - Settings - 設定 - - - - Set Syntax Highlighter - - - - - Help - ヘルプ - - - - Main Toolbar - - - - - Open Source File - ソースファイルを開く - - - - Opens a dialog for selecting a source code file. - ソースコードファイルを選択するためのダイアログを開きます - - - - Ctrl+O - - - - - Save Source File - ソースファイルを保存 - - - - Saves the currently shown source code to the last opened or saved source file. - 現在開いているソースコードを最後に開いたファイルまたは保存したファイルに保存します。 - - - - Ctrl+S - - - - - Opens a file dialog to save the currently shown source code. - 現在開いているソースコードを保存するためのダイアログを開きます。 - - - - About UniversalIndentGUI - UniversalIndentGUI について - - - - Shows info about UniversalIndentGUI. - UniversalIndentGUI についての情報を表示します。 - - - - Exit - 終了 - - - - Quits the UniversalIndentGUI. - UniversalIndentGUI を終了します。 - - - - Ctrl+Q - - - - - PDF - - - - - Export the currently visible source code as PDF document - 表示されているソースコードを PDF ファイルとして出力します。 - - - - HTML - - - - - Export the currently visible source code as HTML document - 表示されているソースコードを HTML として出力します。 - - - - Parameter Tooltips - パラメータ ツールチップ - - - - If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while. - チェックすると、インデントツールのパラメータの上にしばらくマウスカーソルを置くとツールチップを表示するようにします。 - - - - DONOTTRANSLATE:indenterParameterTooltipsEnabled - - - - - Live Indent Preview - インデントの即時プレビュー - - - - Ctrl+L - - - - - - Syntax Highlighting - - - - - Enables or disables syntax highlighting for the source code. - - - - - By enabling special key words of the source code are highlighted. - - - - - DONOTTRANSLATE:SyntaxHighlightingEnabled - - - - - - White Space Visible - - - - - Set white space visible - - - - - Enables or disables diplaying of white space characters in the editor. - - - - - DONOTTRANSLATE:whiteSpaceIsVisible - - - - - Auto Open Last File - - - - - Auto open last source file on startup - - - - - If selected opens last source code file on startup - - - - - DONOTTRANSLATE:loadLastSourceCodeFileOnStartup - - - - - Opens the settings dialog - - - - - Opens the settings dialog, to set language etc. - - - - - Check for update - - - - - - Checks online whether a new version of UniversalIndentGUI is available. - - - - - Clear Recently Opened List - - - - - Show Log - - - - - Displays logging information. - - - - - Displays logging info about the currently running UiGUI application. - - - - - Indenter Settings - - - - - - - Save Source File As... - 名前を付けてソースファイルを保存... - - - - Ctrl+Shift+S - - - - - Ctrl+H - - - - - SettingsDialog - - - Common - - - - - Settings - 設定 - - - - Automatically open last file on startup - - - - - Enable Parameter Tooltips - - - - - Editor - - - - - Highlighter settings - - - - - Set Font - - - - - Set Color - - - - - - Displays all available translations for UniversalIndentGui and lets you choose one. - - - - - Application language - - - - - If selected opens the source code file on startup that was opened last time. - - - - - If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while. - チェックすると、インデントツールのパラメータの上にしばらくマウスカーソルを置くとツールチップを表示するようにします。 - - - - - Sets how many files should be remembered in the list of recently opened files. - - - - - Enables or disables displaying of white space characters in the editor. - - - - - Display white space character (tabs, spaces, etc.) - - - - - Defines how many spaces should be displayed in the editor for one tab character. - - - - - Sets width in single spaces used for tabs - - - - - Defines how many spaces should be displayed in the editor for one tab. - - - - - Displayed width of tabs - - - - - Network - - - - - If checked, the made proxy settings will be applied for all network connections. Type of the used proxy is SOCKS5. - - - - - Enable proxy - - - - - Host name: - - - - - Host name of the to be used proxy. E.g.: proxy.example.com - - - - - Port: - - - - - Port number to connect to the before named proxy. - - - - - User name: - - - - - If the proxy needs authentification, enter the login name here. - - - - - Password: - - - - - If the proxy needs authentification, enter the password here. - - - - - Syntax Highlighting - - - - - By enabling special key words of the source code are highlighted. - - - - - Enable syntax highlighting - - - - - Lets you make settings for all properties of the available syntax highlighters, like font and color. - - - - - Set the font for the current selected highlighter property. - - - - - Set the color for the current selected highlighter property. - - - - - Number of files in recently opened list - - - - - Checks whether a new version of UniversalIndentGUI exists on program start, but only once a day. - - - - - Check online for update on program start - - - - - TSLoggerDialog - - - Log - - - - - Logged messages - - - - - Clear log - - - - - ... - - - - - - Open folder containing log file. - - - - - ToolBarWidget - - - Form - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Opens a dialog for selecting a source code file.</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This file will be used to show what the indent tool changes.</p></body></html> - - - - - Open Source File - ソースファイルを開く - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Turns the preview of the reformatted source code on and off.</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">In other words it switches between formatted and nonformatted code. (Ctrl+L)</p></body></html> - - - - - Live Indent Preview - インデントの即時プレビュー - - - - Ctrl+L - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Enables and disables the highlightning of the source</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">code shown below. (Still needs some performance improvements) (Ctrl+H)</p></body></html> - - - - - Syntax Highlight - - - - - Ctrl+H - - - - - DONOTTRANSLATE:SyntaxHighlightingEnabled - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shows info about UniversalIndentGUI</p></body></html> - - - - - About - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Quits the UniversalIndentGUI</p></body></html> - - - - - Exit - 終了 - - - - UiGuiErrorMessage - - - Show this message again - - - - - UiGuiIndentServer - - - UiGUI Server - - - - - Unable to start the server: %1. - - - - - UiGuiSettingsDialog - - - - English - - - - - - French - - - - - - German - - - - - - Chinese (Taiwan) - - - - - - Japanese - - - - - - Russian - - - - - - Ukrainian - - - - - - Unknown language mnemonic - - - - - UpdateCheckDialog - - - - Checking for update... - - - - - - Checking whether a newer version is available - - - - - - Update check error - - - - - There was an error while trying to check for an update! The retrieved file did not contain expected content. - - - - - There was an error while trying to check for an update! Error was : %1 - - - - - Update available - - - - - A newer version of UniversalIndentGUI is available. -Your version is %1. New version is %2. -Do you want to go to the download website? - - - - - No new update available - - - - - You already have the latest version of UniversalIndentGUI. - - - - diff --git a/translations/universalindent_ru.ts b/translations/universalindent_ru.ts deleted file mode 100755 index 9c0e611..0000000 --- a/translations/universalindent_ru.ts +++ /dev/null @@ -1,1132 +0,0 @@ - - - - - AboutDialog - - - About UniversalIndentGUI - О UniversalIndentGUI - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'sans-serif'; font-size:large;">Version %1 rev.%2, %3</span></p></body></html> - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;"><br />Written by : </span><a href="http://www.thomas-schweitzer.de"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">Thomas Schweitzer</span></a></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">Project Homepage : </span><a href="http://universalindent.sourceforge.net"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit </span><a href="http://www.gnu.org/licenses/gpl.html"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">Credits:</span></p></body></html> - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Version %1 rev.%2, %3 </span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;">Версия %1 ред.%2, %3 </p></body></html> - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;"><br />Written by : </span><a href="http://www.thomas-schweitzer.de"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt; text-decoration: underline; color:#0000ff;">Thomas Schweitzer</span></a></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">Project Homepage : </span><a href="http://universalindent.sourceforge.net"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt; text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit </span><a href="http://www.gnu.org/licenses/gpl.html"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt; text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:9pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">Credits:</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><span style=" font-family:'MS Shell Dlg 2';">... кросс-платформенный совместимый ГИП для нескольких форматтеров, украсителей и отступаторов, как GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP, и так далее. Основной функцией является живой просмотр, чтобы сразу видеть, как выбранный вариант форматирования влияет на исходный код.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br />Написано: <a href="http://www.thomas-schweitzer.de"><span style=" text-decoration: underline; color:#0000ff;">Томасом Швайцером</span></a></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;">Страница проекта : <a href="http://universalindent.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;">Лицензия: UniversalIndentGui выдается в рамках GPL 2. О деталях читайте присоединенный файл LICENSE.GPL Посетите <a href="http://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a>.</p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;">Участники проекта:</p></body></html> - - - - OK - (sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)OK(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp) - - - - FindDialog - - - Find - - - - - Find what: - - - - - Find options - - - - - Match case - - - - - Match whole word - - - - - Search forward - - - - - Use Regular Expressions - - - - - Find Next - - - - - Close - - - - - IndentHandler - - - No indenter executable - Нет программы отступатора - - - - wine not installed - вино не установлено - - - - There exists only a win32 executable of the indenter and wine does not seem to be installed. Please install wine to be able to run the indenter. - Существует только win32-программа отступатора, а вино, кажется, не установлено. Пожалуйста, установите вино, чтобы запустить отступатор. - - - - <b>Returned error message:</b> - <b>Возвращенное сообщение об ошибке:</b>(sp) - - - - <b>Reason could be:</b> - <b>Причиной может быть:</b>(sp) - - - - Error calling Indenter - Ошибка вызова отступатора - - - - <b>Indenter returned with exit code:</b> - <b>Отступатор возвратился с кодом выхода:</b>(sp) - - - - <b>Indent console output was:</b> - <b>Выходом консоли отступатора было:</b>(sp) - - - - - <br><b>Callstring was:</b> - <br><b>Строкой вызова было:</b>(sp) - - - - No indenter ini files - Отсутствуют ini-файлы отступатора - - - - There exists no indenter ini files in the directory " - Не существуют ini-файлы отступатора в папке " - - - - There exists no indenter executable with the name "%1" in the directory "%2" nor in the global environment. - Не существует программы отступатора под названием "%1" в папке "%2" и в глобальной среде. - - - - <br><br><b>Indenter output was:</b><pre> - <br><br><b>Выходом отступатора было:</b><pre> - - - - Indenter returned error - Отступатор возвратил ошибку - - - - Indenter ini file header error - - - - - The loaded indenter ini file "%1"has a faulty header. At least the indenters file name is not set. - - - - - Interpreter needed - Требуется интерпретатор - - - - To use the selected indenter the program "%1" needs to be available in the global environment. You should add an entry to your path settings. - Для использования выбранного отступатора, программа "%1" должна быть доступна в глобальной среде. Добавьте пункт к настройкам пути. - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shows the currently chosen indenters name and lets you choose other available indenters</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Показывает название текущего выбранного отступатора и позволяет выбрать другие доступные отступаторы</p></body></html> - - - - Brings you to the online manual of the currently selected indenter, where you can get further help on the possible parameters. - Ведет к онлайн-руководству текущего выбранного отступатора, где можна найти дальнейшую помощь по возможным параметрам. - - - - - Create a shell script that calls the current selected indenter for formatting an as parameter given file with the current indent settings. - Создать скрипт оболочки, вызывающий текущий выбранный отступатор для форматирования по параметрам данного файла с текущими настройками отступов. - - - - Choose indenter config file - Выбрать конфигурационный файл отступатора - - - - - All files - Все файлы - - - - Save indent config file - Сохранить конфигурационный файл отступатора - - - - Shell Script - Скрипт оболочки - - - - Save shell script - Сохранить скрипт оболочки - - - - Load Indenter Config File - Загрузить конфигурационный файл отступатора - - - - Opens a file dialog to load the original config file of the indenter. - Открывает файловый диалог для загрузки начального конфигурационного файла отступатора. - - - - Alt+O - Alt+O - - - - Save Indenter Config File - Сохранить конфигурационный файл отступатора - - - - Opens a dialog to save the current indenter configuration to a file. - Открывает диалог для сохранения текущей конфигурации отступатора в файл. - - - - Alt+S - Alt+S - - - - Create Indenter Call Shell Script - Создать скрипт оболочки вызова отступатора - - - - Reset indenter parameters - Скинуть параметры отступатора - - - - - Resets all indenter parameters to the default values. - Скидывает все параметры отступатора на значения по умолчанию. - - - - Really reset parameters? - Действительно скинуть параметры? - - - - Do you really want to reset the indenter parameters to the default values? - Вы действительно хотите скинуть параметры отступатора на значения по умолчанию? - - - - MainWindow - - - - Error opening file - Ошибка открытия файла - - - - - Cannot read the file - Невозможно прочитать файл(sp) - - - - - Supported by indenter - Поддерживается отступатором - - - - - All files - Все файлы - - - - Choose source code file - Выбрать файл исходного кода - - - - Save source code file - Сохранить файл исходного кода - - - - PDF Document - Документ PDF - - - - - Export source code file - Экспорт файла исходного кода - - - - HTML Document - Документ HTML - - - - Modified code - Измененный код - - - - The source code has been modified. -Do you want to save your changes? - Исходный код изменен. -Хотите сохранить изменения? - - - - - Reopen the currently opened source code file by using the text encoding scheme - Повторно открыть текущий открытый файл исходного кода, используя схему кодирования текста(sp) - - - - - Set the syntax highlightning to - Задать подсветку синтаксиса на(sp) - - - - File no longer exists - Файл больше не существует - - - - The file %1 in the list of recently opened files does no longer exist. - Файл %1 из списка недавно открытых файлов больше не существует. - - - - - Save the currently opened source code file by using the text encoding scheme - Сохранить текущий открытый файл исходного кода с использованием схемы кодирования текста(sp) - - - - - Line %1, Column %2 - Строка %1, колонка %2 - - - - MainWindowUi - - - UniversalIndentGUI - UniversalIndentGUI - - - - Indenter - Отступатор - - - - File - Файл - - - - Export - Экспорт - - - - Recently Opened Files - Недавно открытые файлы - - - - Reopen File with other Encoding - Повторно открывает файлы с другой кодировкой - - - - Save Source File As with other Encoding - Сохранить исходный файл с другой кодировкой как - - - - - - Settings - Настройки - - - - Set Syntax Highlighter - Задать подсветку синтаксиса - - - - Help - Помощь - - - - Main Toolbar - Главная панель - - - - Open Source File - Открыть исходный файл - - - - Opens a dialog for selecting a source code file. - Открывает диалог выбора файла исходного кода. - - - - Ctrl+O - Ctrl+O - - - - Save Source File - Сохранить исходный файл - - - - Saves the currently shown source code to the last opened or saved source file. - Сохраняет текущий показанный исходный код в последний открытый или сохраненный исходный файл. - - - - Ctrl+S - Ctrl+S - - - - Opens a file dialog to save the currently shown source code. - Открывает файловый диалог для сохранения текущего показанного исходного кода. - - - - About UniversalIndentGUI - О UniversalIndentGUI - - - - Shows info about UniversalIndentGUI. - Показывает информацию о UniversalIndentGUI. - - - - Exit - Выход - - - - Quits the UniversalIndentGUI. - Выходит из UniversalIndentGUI. - - - - Ctrl+Q - Ctrl+Q - - - - PDF - PDF - - - - Export the currently visible source code as PDF document - Экспорт текущего видимого исходного кода в документ PDF - - - - HTML - HTML - - - - Export the currently visible source code as HTML document - Экспорт текущего видимого исходного кода в документ HTML - - - - Parameter Tooltips - Подсказки параметра - - - - If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while. - Если выбрано, будут появляться подсказки, если курсор мыши задерживается на некоторое время над параметром. - - - - DONOTTRANSLATE:indenterParameterTooltipsEnabled - - - - - Live Indent Preview - Живой просмотр отступа - - - - Ctrl+L - Ctrl+L - - - - - Syntax Highlighting - Подсветка синтаксиса - - - - Enables or disables syntax highlighting for the source code. - Включает или отключает подсветку синтаксиса для исходного кода. - - - - By enabling special key words of the source code are highlighted. - При включении подсвечиваются специальные ключевые слова исходного кода. - - - - DONOTTRANSLATE:SyntaxHighlightingEnabled - - - - - - White Space Visible - Видимые пробелы - - - - Set white space visible - Задать видимые пробелы - - - - Enables or disables diplaying of white space characters in the editor. - Включает или выключает показ символов пробелов в редакторе. - - - - DONOTTRANSLATE:whiteSpaceIsVisible - - - - - Auto Open Last File - Автооткрытие последнего файла - - - - Auto open last source file on startup - Автооткрытие последнего исходного файла при загрузке - - - - If selected opens last source code file on startup - Если выбрано, при загрузке открывается последний файл исходного кода - - - - DONOTTRANSLATE:loadLastSourceCodeFileOnStartup - - - - - Opens the settings dialog - Открывает диалог настроек - - - - Opens the settings dialog, to set language etc. - Открывает диалог настроек для установки языка, и т. д. - - - - Check for update - Проверить обновление - - - - - Checks online whether a new version of UniversalIndentGUI is available. - Проверить в сети доступность новой версии UniversalIndentGUI. - - - - Clear Recently Opened List - Очистить список недавно открытых - - - - Show Log - - - - - Displays logging information. - - - - - Displays logging info about the currently running UiGUI application. - - - - - Indenter Settings - Настройки отступатора - - - - - - Save Source File As... - Сохранить исходный файл как... - - - - Ctrl+Shift+S - Ctrl+Shift+S - - - - Ctrl+H - Ctrl+H - - - - SettingsDialog - - - Common - Общее - - - - Settings - Настройки - - - - Automatically open last file on startup - Автоматически открывать последний файл при загрузке - - - - Enable Parameter Tooltips - Включить подсказки параметра - - - - Editor - Редактор - - - - Highlighter settings - Настройки подсветки - - - - Set Font - Установить шрифт - - - - Set Color - Установить цвет - - - - - Displays all available translations for UniversalIndentGui and lets you choose one. - Показывает все доступные переводы для UniversalIndentGui и позволяет выбрать один из них. - - - - Application language - Язык программы - - - - If selected opens the source code file on startup that was opened last time. - Если выбрано, при загрузке открывается файл исходного кода, открытый в последний раз. - - - - If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while. - Если выбрано, будут появляться подсказки, если курсор мыши задерживается на некоторое время над параметром. - - - - - Sets how many files should be remembered in the list of recently opened files. - Задает сколько файлов должно запоминаться в списке недавно открытых файлов. - - - - Enables or disables displaying of white space characters in the editor. - Включает или выключает показ символов пробелов в редакторе. - - - - Display white space character (tabs, spaces, etc.) - Показывает символы пробелов (табуляторы, пробелы, и т. д.) - - - - Defines how many spaces should be displayed in the editor for one tab character. - Определяет, сколько пробелов должно показываться в редакторе вместо одного символа табуляции. - - - - Sets width in single spaces used for tabs - Задает ширину в единичных пробелах, используемых вместо табуляторов - - - - Defines how many spaces should be displayed in the editor for one tab. - Определяет, сколько пробелов должно показываться в редакторе вместо одного табулятора. - - - - Displayed width of tabs - Показывает ширину табуляторов - - - - Network - - - - - If checked, the made proxy settings will be applied for all network connections. Type of the used proxy is SOCKS5. - - - - - Enable proxy - - - - - Host name: - - - - - Host name of the to be used proxy. E.g.: proxy.example.com - - - - - Port: - - - - - Port number to connect to the before named proxy. - - - - - User name: - - - - - If the proxy needs authentification, enter the login name here. - - - - - Password: - - - - - If the proxy needs authentification, enter the password here. - - - - - Syntax Highlighting - Подсветка синтаксиса - - - - By enabling special key words of the source code are highlighted. - При включении подсвечиваются специальные ключевые слова исходного кода. - - - - Enable syntax highlighting - Включает подсветку синтаксиса - - - - Lets you make settings for all properties of the available syntax highlighters, like font and color. - Позволяет создавать настройки для всех свойств доступных подсветок синтаксиса, как шрифт и цвет. - - - - Set the font for the current selected highlighter property. - Задает шрифт для текущего выбранного свойства подсветки. - - - - Set the color for the current selected highlighter property. - Задает цвет для текущего выбранного свойства подсветки. - - - - Number of files in recently opened list - Количество файлов в списке недавно открытых - - - - Checks whether a new version of UniversalIndentGUI exists on program start, but only once a day. - Проверяет существование новой версии UniversalIndentGUI при запуске программы, но только раз в день. - - - - Check online for update on program start - Проверяет в сети обновление при запуске программы - - - - TSLoggerDialog - - - Log - - - - - Logged messages - - - - - Clear log - - - - - ... - - - - - - Open folder containing log file. - - - - - ToolBarWidget - - - Form - Форма - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Opens a dialog for selecting a source code file.</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This file will be used to show what the indent tool changes.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Открывает диалог выбора файла исходного кода.</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Этот файл будет использоваться для показа изменений, сделанных инструментом отступа.</p></body></html> - - - - Open Source File - Открыть исходный файл - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Turns the preview of the reformatted source code on and off.</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">In other words it switches between formatted and nonformatted code. (Ctrl+L)</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Включает и выключает просмотр реформатированного исходного кода.</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Другими словами, переключает между форматированным и неформатированным кодом. (Ctrl+L)</p></body></html> - - - - Live Indent Preview - Живой просмотр отступа - - - - Ctrl+L - Ctrl+L - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Enables and disables the highlightning of the source</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">code shown below. (Still needs some performance improvements) (Ctrl+H)</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Включает и выключает подсветку исходного</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">кода, показанного ниже. (Все еще нужно доработать эффективность) (Ctrl+H)</p></body></html> - - - - Syntax Highlight - Подсветка синтаксиса - - - - Ctrl+H - Ctrl+H - - - - DONOTTRANSLATE:SyntaxHighlightingEnabled - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shows info about UniversalIndentGUI</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Показывает информацию о UniversalIndentGUI</p></body></html> - - - - About - О - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Quits the UniversalIndentGUI</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Выходит из UniversalIndentGUI</p></body></html> - - - - Exit - Выход - - - - UiGuiErrorMessage - - - Show this message again - Показать это сообщение снова - - - - UiGuiIndentServer - - - UiGUI Server - Сервер UiGUI - - - - Unable to start the server: %1. - Невозможно запустить сервер: %1. - - - - UiGuiSettingsDialog - - - - English - Английский - - - - - French - Французский - - - - - German - Немецкий - - - - - Japanese - Японский - - - - - Unknown language mnemonic - Неизвестный мнемокод языка - - - - - Chinese (Taiwan) - Китайский (Тайвань) - - - - - Russian - Русский - - - - - Ukrainian - Украинский - - - - UpdateCheckDialog - - - - Checking for update... - Проверка обновления... - - - - - Checking whether a newer version is available - Проверка доступности новой версии - - - - - Update check error - - - - - There was an error while trying to check for an update! The retrieved file did not contain expected content. - - - - - There was an error while trying to check for an update! Error was : %1 - - - - - Update available - Обновление доступно - - - - A newer version of UniversalIndentGUI is available. -Your version is %1. New version is %2. -Do you want to go to the download website? - Доступна новая версия UniversalIndentGUI. -Ваша версия %1. Новая версия %2. -Хотите перейти на веб-сайт загрузки? - - - - No new update available - Обновлений нет - - - - You already have the latest version of UniversalIndentGUI. - У вас последняя версия UniversalIndentGUI. - - - diff --git a/translations/universalindent_uk.ts b/translations/universalindent_uk.ts deleted file mode 100755 index e73fa44..0000000 --- a/translations/universalindent_uk.ts +++ /dev/null @@ -1,1132 +0,0 @@ - - - - - AboutDialog - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Version %1 rev.%2, %3 </span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;">Версія %1 ред.%2, %3 </p></body></html> - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;"><br />Written by : </span><a href="http://www.thomas-schweitzer.de"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt; text-decoration: underline; color:#0000ff;">Thomas Schweitzer</span></a></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">Project Homepage : </span><a href="http://universalindent.sourceforge.net"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt; text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit </span><a href="http://www.gnu.org/licenses/gpl.html"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt; text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:9pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">Credits:</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><span style=" font-family:'MS Shell Dlg 2';">... є крос-платформним сумісним ГІК для кількох форматорів, прикрашувачів та відступаторів, на зразок GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP, і так далі. Основною функцією є живий перегляд, щоб одразу бачити як обраний варіант форматування впливає на вхідний код.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br />Написав : <a href="http://www.thomas-schweitzer.de"><span style=" text-decoration: underline; color:#0000ff;"> Томас Швайцер</span></a></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;">Сторінка проекту : <a href="http://universalindent.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;">Ліцензія: UniversalIndentGui видається в межах GPL 2. Щодо деталей читайте включений файл LICENSE.GPL Відвідайте <a href="http://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a>.</p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;">Учасники проекту:</p></body></html> - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'sans-serif'; font-size:large;">Version %1 rev.%2, %3</span></p></body></html> - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;"><br />Written by : </span><a href="http://www.thomas-schweitzer.de"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">Thomas Schweitzer</span></a></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">Project Homepage : </span><a href="http://universalindent.sourceforge.net"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit </span><a href="http://www.gnu.org/licenses/gpl.html"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">Credits:</span></p></body></html> - - - - - OK - (sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)Добре(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp) - - - - About UniversalIndentGUI - Про UniversalIndentGUI - - - - FindDialog - - - Find - - - - - Find what: - - - - - Find options - - - - - Match case - - - - - Match whole word - - - - - Search forward - - - - - Use Regular Expressions - - - - - Find Next - - - - - Close - - - - - IndentHandler - - - <b>Indent console output was:</b> - <b>Виходом консолі відступача було: </b>(sp) - - - - <b>Indenter returned with exit code:</b> - <b>Відступач повернувся з вихідним кодом:</b>(sp) - - - - <b>Reason could be:</b> - <b>Причиною могло б бути:</b>(sp) - - - - <b>Returned error message:</b> - <b>Повернене повідомлення про помилку:</b>(sp) - - - - - <br><b>Callstring was:</b> - <br><b>Стрічкою виклику було:</b> (sp) - - - - <br><br><b>Indenter output was:</b><pre> - <br><br><b>Виходом відступача було:</b><pre> - - - - Indenter ini file header error - - - - - The loaded indenter ini file "%1"has a faulty header. At least the indenters file name is not set. - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shows the currently chosen indenters name and lets you choose other available indenters</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Показує поточні обрані назви відступачів і дозволяє обрати інші доступні відступачі</p></body></html> - - - - - Create a shell script that calls the current selected indenter for formatting an as parameter given file with the current indent settings. - Створити скрипт оболонки, який викликає поточний обраний відступач для форматування по параметрам даного файлу з поточними налаштуваннями відступів. - - - - - All files - Всі файли - - - - Alt+O - Alt+O - - - - Alt+S - Alt+S - - - - Brings you to the online manual of the currently selected indenter, where you can get further help on the possible parameters. - Веде до онлайн-керівництва даного обраного відступача і де можна отримати подальшу допомогу стосовно можливих параметрів. - - - - Choose indenter config file - Обрати файл конфігурації відступача - - - - Create Indenter Call Shell Script - Створити скрипт оболонки виклику відступача - - - - Do you really want to reset the indenter parameters to the default values? - Чи справді хочете скинути параметри відступача на типові значення? - - - - Error calling Indenter - Помилка виклику відступача - - - - Indenter returned error - Відступач повернув помилку - - - - Interpreter needed - Потрібен інтерпретатор - - - - Load Indenter Config File - Завантажити файл конфігурації відступача - - - - No indenter executable - Жодної програми відступача - - - - No indenter ini files - Жодних ini-файлів відступача - - - - Opens a dialog to save the current indenter configuration to a file. - Відкриває діалог для збереження поточної конфігурації відступача у файл. - - - - Opens a file dialog to load the original config file of the indenter. - Відкриває файловий діалог для завантаження основного файлу конфігурації відступача. - - - - Really reset parameters? - Справді скинути параметри? - - - - Reset indenter parameters - Скинути параметри відступача - - - - - Resets all indenter parameters to the default values. - Скинути усі параметри відступача на типові значення. - - - - Save indent config file - Зберегти файл конфігурації відступів - - - - Save Indenter Config File - Зберегти файл конфігурації відступача - - - - Save shell script - Зберегти скрипт оболонки - - - - Shell Script - Скрипт оболонки - - - - There exists no indenter executable with the name "%1" in the directory "%2" nor in the global environment. - Не існує програми відступача з назвою "%1" ні у теці "%2", ні у глобальному середовищі. - - - - There exists no indenter ini files in the directory " - Не існує ini-файлів відступача у теці " - - - - There exists only a win32 executable of the indenter and wine does not seem to be installed. Please install wine to be able to run the indenter. - Існує лише win32-програма відступача, а вино, здається, не встановлено. Будь ласка, встановіть вино, щоб запустити відступач. - - - - To use the selected indenter the program "%1" needs to be available in the global environment. You should add an entry to your path settings. - Для використання обраного відступача, програма "%1" повинна бути доступна у глобальному середовищі. Потрібно додати пункт до налаштувань шляху. - - - - wine not installed - вино не встановлено - - - - MainWindow - - - - All files - Всі файли - - - - - Cannot read the file - Неможливо прочитати файл(sp) - - - - Choose source code file - Обрати файл коду джерела - - - - - Error opening file - Помилка відкриття файла - - - - - Export source code file - Експортувати файл коду джерела - - - - File no longer exists - Файл більше не існує - - - - HTML Document - Документ HTML - - - - - Line %1, Column %2 - Рядок %1, колонка %2 - - - - Modified code - Змінений код - - - - PDF Document - Документ PDF - - - - - Reopen the currently opened source code file by using the text encoding scheme - Відкрити поточний відкритий файл коду джерела використовуючи схему кодування тексту(sp) - - - - Save source code file - Зберегти файл коду джерела - - - - - Save the currently opened source code file by using the text encoding scheme - Зберегти поточний відкритий файл коду джерела використовуючи схему кодування тексту(sp) - - - - - Set the syntax highlightning to - Встановити підсвічування синтаксису на(sp) - - - - - Supported by indenter - Підтримується відступачем - - - - The file %1 in the list of recently opened files does no longer exist. - Файл %1 з переліку нещодавно відкритих файлів більше не існує. - - - - The source code has been modified. -Do you want to save your changes? - Код джерела змінено. -Хочете зберегти зміни? - - - - MainWindowUi - - - About UniversalIndentGUI - Про UniversalIndentGUI - - - - Auto Open Last File - Автовідкритття останнього файлу - - - - Auto open last source file on startup - Автовідкритття останнього файлу джерела при запуску - - - - By enabling special key words of the source code are highlighted. - Включення підсвічує спеціальні ключові слова коду джерела. - - - - Check for update - Перевірити оновлення - - - - - Checks online whether a new version of UniversalIndentGUI is available. - Перевіряє в мережі, чи доступна нова версія UniversalIndentGUI. - - - - Clear Recently Opened List - Очистити перелік нещодавно відкритих файлів - - - - Ctrl+L - Ctrl+L - - - - Ctrl+O - Ctrl+O - - - - Ctrl+Q - Ctrl+Q - - - - Ctrl+S - Ctrl+S - - - - Enables or disables diplaying of white space characters in the editor. - Включити або відключити показ символів пробілу у редакторі. - - - - Enables or disables syntax highlighting for the source code. - Включає або відключає підсвічування синтаксису для файла джерела. - - - - Exit - Вихід - - - - Export - Експорт - - - - Export the currently visible source code as HTML document - Експортує поточний код джерела у HTML-документ - - - - Export the currently visible source code as PDF document - Експортує поточний код джерела у PDF-документ - - - - File - Файл - - - - Help - Допомога - - - - - - Save Source File As... - Зберегти файл джерела як... - - - - HTML - HTML - - - - If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while. - Якщо виділено, підказки з'являтимуться при наведенні і утриманні курсору миші над параметром відступача. - - - - DONOTTRANSLATE:indenterParameterTooltipsEnabled - - - - - DONOTTRANSLATE:SyntaxHighlightingEnabled - - - - - DONOTTRANSLATE:whiteSpaceIsVisible - - - - - If selected opens last source code file on startup - При виборі при запуску відкриватиметься останній файл коду джерела - - - - DONOTTRANSLATE:loadLastSourceCodeFileOnStartup - - - - - Show Log - - - - - Displays logging information. - - - - - Displays logging info about the currently running UiGUI application. - - - - - Indenter - Відступач - - - - Indenter Settings - Налаштування відступача - - - - Live Indent Preview - Живий перегляд відступів - - - - Main Toolbar - Головна панель - - - - Open Source File - Відкрити файл джерела - - - - Opens a dialog for selecting a source code file. - Відкриває діалог для обирання файла коду джерела. - - - - Opens a file dialog to save the currently shown source code. - Відкриває файловий діалог для збереження поточного коду джерела. - - - - Opens the settings dialog - Відкриває діалог налаштувань - - - - Opens the settings dialog, to set language etc. - Відкриває діалог налаштувань, встановлення мови, і т.д. - - - - Parameter Tooltips - Підказки параметрів - - - - PDF - PDF - - - - Quits the UniversalIndentGUI. - Виходить з UniversalIndentGUI. - - - - Recently Opened Files - Нещодавно відкриті файли - - - - Reopen File with other Encoding - Відкрити файл з іншим кодуванням - - - - Save Source File - Зберегти файл джерела - - - - Save Source File As with other Encoding - Зберегти вихідний файл з іншим кодуванням як - - - - Saves the currently shown source code to the last opened or saved source file. - Зберігає поточний код джерела у останній відкрити або збережений файл джерела. - - - - Set Syntax Highlighter - Встановити підсвітку синтаксису - - - - Set white space visible - Зробити пробіл видимим - - - - - - Settings - Налаштування - - - - Shows info about UniversalIndentGUI. - Показує інформацію про UniversalIndentGUI. - - - - - Syntax Highlighting - Підсвітка синтаксису - - - - UniversalIndentGUI - UniversalIndentGUI - - - - - White Space Visible - Пробіл видимий - - - - Ctrl+Shift+S - Ctrl+Shift+S - - - - Ctrl+H - Ctrl+H - - - - SettingsDialog - - - Application language - Мова програми - - - - Automatically open last file on startup - Автоматично відкривати останній файл при запуску - - - - Network - - - - - If checked, the made proxy settings will be applied for all network connections. Type of the used proxy is SOCKS5. - - - - - Enable proxy - - - - - Host name: - - - - - Host name of the to be used proxy. E.g.: proxy.example.com - - - - - Port: - - - - - Port number to connect to the before named proxy. - - - - - User name: - - - - - If the proxy needs authentification, enter the login name here. - - - - - Password: - - - - - If the proxy needs authentification, enter the password here. - - - - - By enabling special key words of the source code are highlighted. - Включення підсвічує спеціальні ключові слова коду джерела. - - - - Check online for update on program start - Перевіряти оновлення в мережі при запуску програми - - - - Checks whether a new version of UniversalIndentGUI exists on program start, but only once a day. - Перевіряє існування нової версії UniversalIndentGUI при запуску програми, але лише один раз в день. - - - - Common - Загально - - - - Defines how many spaces should be displayed in the editor for one tab character. - Визначає, скільки пробілів повинно показуватися у редакторі для одного символу табулятора. - - - - Defines how many spaces should be displayed in the editor for one tab. - Визначає, скільки пробілів повинно показуватися у редакторі для однієї табулятора. - - - - Display white space character (tabs, spaces, etc.) - Показує символи пробілів (табулятори, пробіли, і т. д.) - - - - Displayed width of tabs - Показана ширина табуляторів - - - - - Displays all available translations for UniversalIndentGui and lets you choose one. - Показує усі доступні переклади UniversalIndentGui і дозволяє обрати один. - - - - Editor - Редактор - - - - Enable Parameter Tooltips - Включити підказки параметрів - - - - Enable syntax highlighting - Включити підсвітку синтаксису - - - - Enables or disables displaying of white space characters in the editor. - Включити або відключити показ символів пробілу у редакторі. - - - - Highlighter settings - Налаштування підсвічування - - - - If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while. - Якщо виділено, підказки з'являтимуться при наведенні і утриманні курсору миші над параметром відступача. - - - - If selected opens the source code file on startup that was opened last time. - При виборі при запуску відкриватиметься останній відкритий файл коду джерела, відкритий минулого разу. - - - - Lets you make settings for all properties of the available syntax highlighters, like font and color. - Дозволяє створювати налаштування для усіх властивостей доступних підсвіток синтаксису (шрифт, колір...). - - - - Number of files in recently opened list - Кількість файлів у переліку нещодавніх файлів - - - - Set Color - Встановити колір - - - - Set Font - Шрифт - - - - Set the color for the current selected highlighter property. - Встановити колір для поточної підсвіченої властивості підсвічувача. - - - - Set the font for the current selected highlighter property. - Встановити шрифт для поточної підсвіченої властивості підсвічувача. - - - - - Sets how many files should be remembered in the list of recently opened files. - Встановлює скільки файлів потрібно пам'ятати у переліку нещодавно відкритих файлів. - - - - Sets width in single spaces used for tabs - Встановлює ширину у одиничних пробілах, які використовуються для табуляторів - - - - Settings - Налаштування - - - - Syntax Highlighting - Підсвітка синтаксису - - - - TSLoggerDialog - - - Log - - - - - Logged messages - - - - - Clear log - - - - - ... - - - - - - Open folder containing log file. - - - - - ToolBarWidget - - - Form - Форма - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Opens a dialog for selecting a source code file.</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This file will be used to show what the indent tool changes.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Відкриває діалог обрання файлу коду джерела.</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">Цей файл використовуватиметься для показу змін інструментом відступача.</p></body></html> - - - - Open Source File - Відкрити файл джерела - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Turns the preview of the reformatted source code on and off.</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">In other words it switches between formatted and nonformatted code. (Ctrl+L)</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Включає і виключає перегляд переформатованого коду джерела.</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Іншими словами, переключає між форматованим і неформатованим кодом. (Ctrl+L)</p></body></html> - - - - Live Indent Preview - Живий перегляд відступів - - - - Ctrl+L - Ctrl+L - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Enables and disables the highlightning of the source</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">code shown below. (Still needs some performance improvements) (Ctrl+H)</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Включає і відключає підсвітку коду</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">джерела, показаного нижче. (Все ще потребує покращення роботи) (Ctrl+H)</p></body></html> - - - - Syntax Highlight - Підсвітка синтаксису - - - - Ctrl+H - Ctrl+H - - - - DONOTTRANSLATE:SyntaxHighlightingEnabled - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shows info about UniversalIndentGUI</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Показує інформацію про UniversalIndentGUI</p></body></html> - - - - About - Про - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Quits the UniversalIndentGUI</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Виходить з UniversalIndentGUI</p></body></html> - - - - Exit - Вихід - - - - UiGuiErrorMessage - - - Show this message again - Показати знову це повідомлення - - - - UiGuiIndentServer - - - UiGUI Server - Сервер UiGUI - - - - Unable to start the server: %1. - Неможливо запустити серверr: %1. - - - - UiGuiSettingsDialog - - - - Chinese (Taiwan) - Китайська (Тайвань) - - - - - English - Англійська - - - - - French - Французька - - - - - German - Німецька - - - - - Japanese - Японська - - - - - Russian - Російська - - - - - Ukrainian - Українська - - - - - Unknown language mnemonic - Невідомий мовний мнемокод - - - - UpdateCheckDialog - - - A newer version of UniversalIndentGUI is available. -Your version is %1. New version is %2. -Do you want to go to the download website? - Доступна новіша версія UniversalIndentGUI. -Встановлена версія %1. Нова версія %2. -Хочете перейти на веб-сайт завантаження? - - - - - Checking for update... - Перевірка оновлення…... - - - - - Checking whether a newer version is available - Перевірки доступності новішої версії - - - - No new update available - Жодних оновлень - - - - Update available - Доступне оновлення - - - - - Update check error - - - - - There was an error while trying to check for an update! The retrieved file did not contain expected content. - - - - - There was an error while trying to check for an update! Error was : %1 - - - - - You already have the latest version of UniversalIndentGUI. - Вже встановлена остання версія UniversalIndentGUI. - - - diff --git a/translations/universalindent_zh_TW.ts b/translations/universalindent_zh_TW.ts deleted file mode 100755 index 9ba2a7c..0000000 --- a/translations/universalindent_zh_TW.ts +++ /dev/null @@ -1,1132 +0,0 @@ - - - - - AboutDialog - - - About UniversalIndentGUI - 關於 UniversalIndentGUI - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'sans-serif'; font-size:large;">Version %1 rev.%2, %3</span></p></body></html> - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lucida Grande'; font-size:13pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;"><br />Written by : </span><a href="http://www.thomas-schweitzer.de"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">Thomas Schweitzer</span></a></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">Project Homepage : </span><a href="http://universalindent.sourceforge.net"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit </span><a href="http://www.gnu.org/licenses/gpl.html"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium; text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Trebuchet MS,Helvetica,sans-serif'; font-size:medium;">Credits:</span></p></body></html> - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:12pt;">Version %1 rev.%2, %3 </span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;">Version %1 rev.%2, %3 </p></body></html> - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;"><br />Written by : </span><a href="http://www.thomas-schweitzer.de"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt; text-decoration: underline; color:#0000ff;">Thomas Schweitzer</span></a></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">Project Homepage : </span><a href="http://universalindent.sourceforge.net"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt; text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit </span><a href="http://www.gnu.org/licenses/gpl.html"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt; text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:9pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'MS Shell Dlg 2'; font-size:9pt;">Credits:</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><span style=" font-family:'MS Shell Dlg 2';">這是一套跨平台、支援多種程式碼重整 / 美化 / 縮排工具的圖形化使用者介面,GreatCode、AStyle (Artistic Styler)、GNU Indent、BCPP 及其他工具皆在支援名單裡頭。本工具最大的特色在於可以讓你即時預覽原始程式碼重整之後的結果。</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br />開發者:<a href="http://www.thomas-schweitzer.de"><span style=" text-decoration: underline; color:#0000ff;">Thomas Schweitzer</span></a></p> -<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;">專案首頁:<a href="http://universalindent.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://universalindent.sourceforge.net</span></a></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;">授權協定:UniversalIndentGui 採用 GPL 2 授權。詳情請參閱附帶的 LICENSE.GPL 文件,或拜訪 <a href="http://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> 取得進一步的資訊。</p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;">致謝名單:</p></body></html> - - - - OK - 確定 - - - - FindDialog - - - Find - - - - - Find what: - - - - - Find options - - - - - Match case - - - - - Match whole word - - - - - Search forward - - - - - Use Regular Expressions - - - - - Find Next - - - - - Close - - - - - IndentHandler - - - <b>Indent console output was:</b> - <b>重整工具命令列輸出為:</b> - - - - <b>Indenter returned with exit code:</b> - <b>重整工具傳回的錯誤代碼:</b> - - - - <b>Reason could be:</b> - <b>原因可能是:</b> - - - - <b>Returned error message:</b> - <b>傳回的錯誤訊息:</b> - - - - Error calling Indenter - 呼叫重整工具時發生錯誤 - - - - Indenter returned error - 重整工具傳回錯誤 - - - - No indenter executable - 找不到重整工具 - - - - There exists only a win32 executable of the indenter and wine does not seem to be installed. Please install wine to be able to run the indenter. - 該重整工具只有 Win32 版本,而你似乎尚未安裝 wine。請安裝 wine 以便執行該重整工具。 - - - - wine not installed - 尚未安裝 wine - - - - - <br><b>Callstring was:</b> - <br><b>呼叫方式是:</b> - - - - No indenter ini files - 找不到重整工具需要的 INI 檔 - - - - There exists no indenter ini files in the directory " - 本目錄下找不到重整工具所需的 INI 檔 " - - - - There exists no indenter executable with the name "%1" in the directory "%2" nor in the global environment. - 找不到重整工具 "%1" 於目錄 "%2" 下及全域環境變數下。 - - - - <br><br><b>Indenter output was:</b><pre> - <br><br><b>重整工具的輸出結果:</b><pre> - - - - Indenter ini file header error - - - - - The loaded indenter ini file "%1"has a faulty header. At least the indenters file name is not set. - - - - - Interpreter needed - 需要直譯器 - - - - To use the selected indenter the program "%1" needs to be available in the global environment. You should add an entry to your path settings. - 要使用這個重整工具,你必須將程式 "%1" 加到全域的 Path 變數中。 - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shows the currently chosen indenters name and lets you choose other available indenters</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">顯示目前使用的重整工具名稱,並讓你選擇其他可用的重整工具</p></body></html> - - - - Brings you to the online manual of the currently selected indenter, where you can get further help on the possible parameters. - 這會開啟當前重整工具的線上手冊,你將能找到更多關於可用參數的說明。 - - - - - Create a shell script that calls the current selected indenter for formatting an as parameter given file with the current indent settings. - 建立批次檔呼叫目前的重整工具。它會接受檔案路徑作為參數,接著呼叫重整工具並套用目前的重整設定,適合讓 IDE 作為外部工具呼叫。 - - - - Choose indenter config file - 選擇重整工具設定檔 - - - - - All files - 所有檔案 - - - - Save indent config file - 儲存重整工具的設定 - - - - Shell Script - 批次檔 - - - - Save shell script - 儲存批次檔 - - - - Load Indenter Config File - 載入重整工具設定檔 - - - - Opens a file dialog to load the original config file of the indenter. - 載入目前重整工具的設定 - - - - Alt+O - Alt+O - - - - Save Indenter Config File - 儲存重整工具設定檔 - - - - Opens a dialog to save the current indenter configuration to a file. - 儲存目前重整工具的設定 - - - - Alt+S - Alt+S - - - - Create Indenter Call Shell Script - 建立重整工具批次檔 - - - - Reset indenter parameters - 恢復為預設值 - - - - - Resets all indenter parameters to the default values. - 將所有重整參數設定恢復為預設值。 - - - - Really reset parameters? - 確定要恢復為預設值? - - - - Do you really want to reset the indenter parameters to the default values? - 你真的要將參數恢復為預設值嗎? - - - - MainWindow - - - - All files - 所有檔案 - - - - - Cannot read the file - 無法讀取檔案 - - - - Choose source code file - 選擇檔案 - - - - - Error opening file - 開啟檔案時發生錯誤 - - - - - Export source code file - 匯出檔案 - - - - HTML Document - HTML 文件 - - - - Modified code - 修改後的檔案 - - - - PDF Document - PDF 文件 - - - - - Reopen the currently opened source code file by using the text encoding scheme - 重新開啟目前的檔案,編碼使用 - - - - Save source code file - 儲存檔案 - - - - - Supported by indenter - 重整工具支援的檔案類型 - - - - The source code has been modified. -Do you want to save your changes? - 程式碼已被修改。 -你要儲存嗎? - - - - - Set the syntax highlightning to - 將語法高亮度方式設為 - - - - File no longer exists - 檔案不存在 - - - - The file %1 in the list of recently opened files does no longer exist. - 找不到檔案清單裡的「%1」 - - - - - Save the currently opened source code file by using the text encoding scheme - 另存目前的檔案,編碼使用 - - - - - Line %1, Column %2 - 列 %1,行 %2 - - - - MainWindowUi - - - UniversalIndentGUI - UniversalIndentGUI - - - - Indenter - 重整工具 - - - - File - 檔案 - - - - Export - 匯出 - - - - Recently Opened Files - 最近開啟的檔案 - - - - Reopen File with other Encoding - 用別的編碼方式重新開啟 - - - - Save Source File As with other Encoding - 用別的編碼方式另存新檔 - - - - - - Settings - 設定 - - - - Set Syntax Highlighter - 選擇語法高亮度 - - - - Help - 說明 - - - - Main Toolbar - 主要工具列 - - - - Open Source File - 開啟檔案 - - - - Opens a dialog for selecting a source code file. - 選擇要處理的檔案 - - - - Ctrl+O - Ctrl+O - - - - Save Source File - 儲存 - - - - Saves the currently shown source code to the last opened or saved source file. - 儲存目前顯示的程式碼 - - - - Ctrl+S - Ctrl+S - - - - Opens a file dialog to save the currently shown source code. - 儲存目前顯示的程式碼到別的檔案 - - - - About UniversalIndentGUI - 關於 UniversalIndentGUI - - - - Shows info about UniversalIndentGUI. - 顯示 UniversalIndentGUI 的相關資訊 - - - - Exit - 離開 - - - - Quits the UniversalIndentGUI. - 離開本程式 - - - - Ctrl+Q - Ctrl+Q - - - - PDF - PDF - - - - Export the currently visible source code as PDF document - 匯出目前顯示的程式碼到 PDF 文件 - - - - HTML - HTML - - - - Export the currently visible source code as HTML document - 匯出目前顯示的程式碼到 HTML 文件 - - - - Parameter Tooltips - 顯示參數的提示訊息 - - - - If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while. - 滑鼠移到重整工具的各項參數設定時,會顯示該參數的相關提示 - - - - DONOTTRANSLATE:indenterParameterTooltipsEnabled - - - - - Live Indent Preview - 即時預覽重整效果 - - - - Ctrl+L - Ctrl+L - - - - - Syntax Highlighting - 語法高亮度 - - - - Enables or disables syntax highlighting for the source code. - 啟用或停用語法高亮度顯示 - - - - By enabling special key words of the source code are highlighted. - 啟用之後,程式碼會比較容易閱讀 - - - - DONOTTRANSLATE:SyntaxHighlightingEnabled - - - - - - White Space Visible - 顯示空白字元 - - - - Set white space visible - 顯示空白字元 - - - - Enables or disables diplaying of white space characters in the editor. - 是否在編輯視窗裡頭顯示空白字元 - - - - DONOTTRANSLATE:whiteSpaceIsVisible - - - - - Auto Open Last File - 自動載入上次使用的檔案 - - - - Auto open last source file on startup - 啟動程式後,自動載入上次使用的檔案 - - - - If selected opens last source code file on startup - 若你啟用這個選項,程式啟動後將會自動載入上次使用的檔案 - - - - DONOTTRANSLATE:loadLastSourceCodeFileOnStartup - - - - - Opens the settings dialog - 開啟設定視窗 - - - - Opens the settings dialog, to set language etc. - 開啟設定視窗 - - - - Check for update - 檢查是否有更新檔 - - - - - Checks online whether a new version of UniversalIndentGUI is available. - 上網檢查是否有新版的 UniversalIndentGUI - - - - Clear Recently Opened List - 清空最近開啟的檔案清單 - - - - Show Log - - - - - Displays logging information. - - - - - Displays logging info about the currently running UiGUI application. - - - - - Indenter Settings - 重整工具設定 - - - - - - Save Source File As... - 另存新檔... - - - - Ctrl+Shift+S - Ctrl+Shift+S - - - - Ctrl+H - Ctrl+H - - - - SettingsDialog - - - Common - 一般 - - - - Settings - 設定 - - - - Automatically open last file on startup - 啟動程式後,自動載入上次使用的檔案 - - - - Enable Parameter Tooltips - 顯示參數的提示訊息 - - - - Editor - 編輯器 - - - - Highlighter settings - 高亮度設定 - - - - Set Font - 選擇字型 - - - - Set Color - 選擇顏色 - - - - - Displays all available translations for UniversalIndentGui and lets you choose one. - 顯示所有可用的翻譯,讓我自行挑選 - - - - Application language - 選擇語系 - - - - If selected opens the source code file on startup that was opened last time. - 若你啟用這個選項,程式啟動後將會自動載入上次使用的檔案 - - - - If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while. - 滑鼠移到重整工具的各項參數設定時,會顯示該參數的相關提示 - - - - - Sets how many files should be remembered in the list of recently opened files. - 設定在最近開啟的檔案清單裡要顯示幾筆檔案 - - - - Enables or disables displaying of white space characters in the editor. - 選擇是否在編輯視窗裡頭顯示空白字元 - - - - Display white space character (tabs, spaces, etc.) - 顯示空白字元 (Tab, 空白, 其他) - - - - Defines how many spaces should be displayed in the editor for one tab character. - 設定 Tab 要用幾個空白顯示 - - - - Sets width in single spaces used for tabs - 設定 Tab 相當於幾個空白的寬度 - - - - Defines how many spaces should be displayed in the editor for one tab. - 設定 Tab 要用幾個空白顯示 - - - - Displayed width of tabs - Tab 的寬度 - - - - Network - - - - - If checked, the made proxy settings will be applied for all network connections. Type of the used proxy is SOCKS5. - - - - - Enable proxy - - - - - Host name: - - - - - Host name of the to be used proxy. E.g.: proxy.example.com - - - - - Port: - - - - - Port number to connect to the before named proxy. - - - - - User name: - - - - - If the proxy needs authentification, enter the login name here. - - - - - Password: - - - - - If the proxy needs authentification, enter the password here. - - - - - Syntax Highlighting - 語法高亮度 - - - - By enabling special key words of the source code are highlighted. - 啟用之後,程式碼會比較容易閱讀 - - - - Enable syntax highlighting - 啟用語法高亮度 - - - - Lets you make settings for all properties of the available syntax highlighters, like font and color. - 讓你設定語法高亮度屬性,例如字型跟顏色 - - - - Set the font for the current selected highlighter property. - 設定字型 - - - - Set the color for the current selected highlighter property. - 設定顏色 - - - - Number of files in recently opened list - 最近開啟的檔案清單裡要顯示的檔案個數 - - - - Checks whether a new version of UniversalIndentGUI exists on program start, but only once a day. - 程式啟動時自動檢查是否有新版本,一天只會檢查一次。 - - - - Check online for update on program start - 程式啟動時自動檢查更新 - - - - TSLoggerDialog - - - Log - - - - - Logged messages - - - - - Clear log - - - - - ... - - - - - - Open folder containing log file. - - - - - ToolBarWidget - - - Form - 表單 - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Opens a dialog for selecting a source code file.</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;">This file will be used to show what the indent tool changes.</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">選擇要重整的檔案</span></p></body></html> - - - - Open Source File - 開啟檔案 - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Turns the preview of the reformatted source code on and off.</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">In other words it switches between formatted and nonformatted code. (Ctrl+L)</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">啟用或停用程式碼預覽功能。</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">換句話說,它將在重整過以及未重整的程式碼之間切換 (Ctrl+L)</p></body></html> - - - - Live Indent Preview - 即時預覽重整效果 - - - - Ctrl+L - Ctrl+L - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">Enables and disables the highlightning of the source</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">code shown below. (Still needs some performance improvements) (Ctrl+H)</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;">啟用或停用程式碼高亮度功能。效能尚待改進。(Ctrl+H)</p></body></html> - - - - Syntax Highlight - 語法高亮度 - - - - Ctrl+H - Ctrl+H - - - - DONOTTRANSLATE:SyntaxHighlightingEnabled - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shows info about UniversalIndentGUI</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">顯示 UniversalIndentGUI 的相關資訊</p></body></html> - - - - About - 關於 - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Quits the UniversalIndentGUI</p></body></html> - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">離開 UniversalIndentGUI</p></body></html> - - - - Exit - 離開 - - - - UiGuiErrorMessage - - - Show this message again - 下次繼續顯示這個訊息 - - - - UiGuiIndentServer - - - UiGUI Server - UiGUI 伺服器 - - - - Unable to start the server: %1. - 無法連到伺服器:%1。 - - - - UiGuiSettingsDialog - - - - English - 英文 - - - - - German - 德文 - - - - - Japanese - 日文 - - - - - Unknown language mnemonic - 未知語言 - - - - - Chinese (Taiwan) - 中文(台灣) - - - - - French - 法文 - - - - - Russian - 俄文 - - - - - Ukrainian - 烏克蘭文 - - - - UpdateCheckDialog - - - - Checking for update... - 正在檢查是否有更新檔 - - - - - Checking whether a newer version is available - 正在檢查是否有新版本 - - - - - Update check error - - - - - There was an error while trying to check for an update! The retrieved file did not contain expected content. - - - - - There was an error while trying to check for an update! Error was : %1 - - - - - Update available - 找到新版本 - - - - A newer version of UniversalIndentGUI is available. -Your version is %1. New version is %2. -Do you want to go to the download website? - 找到新版本 -你使用的版本是 %1,新版本是 %2 -你想要開啟下載頁面嗎? - - - - No new update available - 沒有找到新版本 - - - - You already have the latest version of UniversalIndentGUI. - 你使用的是最新版的 UniversalIndentGUI - - -