From dfe289850f068f19ba4a83ab4e7e22a7e09c13c9 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 26 Jan 2013 13:17:21 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- interfaces/ktexteditor/templateinterface.cpp | 197 --------------------------- 1 file changed, 197 deletions(-) delete mode 100644 interfaces/ktexteditor/templateinterface.cpp (limited to 'interfaces/ktexteditor/templateinterface.cpp') diff --git a/interfaces/ktexteditor/templateinterface.cpp b/interfaces/ktexteditor/templateinterface.cpp deleted file mode 100644 index ecc34c7e2..000000000 --- a/interfaces/ktexteditor/templateinterface.cpp +++ /dev/null @@ -1,197 +0,0 @@ -/* This file is part of the KDE libraries - Copyright (C) 2004 Joseph Wenninger - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License version 2 as published by the Free Software Foundation. - - This library 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 - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public License - along with this library; see the file COPYING.LIB. If not, write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. -*/ - -#include "templateinterface.h" -#include "document.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include - -using namespace KTextEditor; - -unsigned int TemplateInterface::globalTemplateInterfaceNumber = 0; - -TemplateInterface::TemplateInterface() -{ - myTemplateInterfaceNumber = globalTemplateInterfaceNumber++; -} - -TemplateInterface::~TemplateInterface() -{} - -uint TemplateInterface::templateInterfaceNumber () const -{ - return myTemplateInterfaceNumber; -} - -void TemplateInterface::setTemplateInterfaceDCOPSuffix ( const TQCString &suffix ) -{} - -#define INITKABC do { \ - if (addrBook==0) { \ - addrBook=KABC::StdAddressBook::self(); \ - userAddress=addrBook->whoAmI(); \ - if (userAddress.isEmpty()) { \ - if ( KMessageBox::questionYesNo(parentWindow, \ - i18n( "This template uses personal data that is stored in the TDE addressbook, but you have not selected a personal entry. You can still use the template without one, but you will have to type personal data. Would you like to select one now?" ), \ - "Personal data requested", \ - KStdGuiItem::yes(), KStdGuiItem::no(), "select personal data entry") == KMessageBox::Yes ) { \ - userAddress = KABC::AddresseeDialog::getAddressee(parentWindow); \ - if ( ! userAddress.isEmpty() ) \ - KABC::StdAddressBook::self()->setWhoAmI( userAddress ); \ - }\ - /*return false;//no, why??*/ \ - } \ - } \ -} while(false) - -bool TemplateInterface::expandMacros( TQMap &map, TQWidget *parentWindow ) -{ - KABC::StdAddressBook *addrBook = 0; - KABC::Addressee userAddress; - TQDateTime datetime = TQDateTime::currentDateTime(); - TQDate date = TQT_TQDATE_OBJECT(datetime.date()); - TQTime time = TQT_TQTIME_OBJECT(datetime.time()); - - TQMap::Iterator it; - for ( it = map.begin(); it != map.end(); ++it ) - { - TQString placeholder = it.key(); - if ( map[ placeholder ].isEmpty() ) - { - if ( placeholder == "index" ) map[ placeholder ] = "i"; - else if ( placeholder == "loginname" ) - {} - else if ( placeholder == "firstname" ) - { - INITKABC; - if ( !userAddress.isEmpty() ) - map[ placeholder ] = userAddress.givenName(); - } - else if ( placeholder == "lastname" ) - { - INITKABC; - if ( !userAddress.isEmpty() ) - map[ placeholder ] = userAddress.familyName(); - } - else if ( placeholder == "fullname" ) - { - INITKABC; - if ( !userAddress.isEmpty() ) - map[ placeholder ] = userAddress.assembledName(); - } - else if ( placeholder == "email" ) - { - INITKABC; - if ( !userAddress.isEmpty() ) - map[ placeholder ] = userAddress.preferredEmail(); - } - else if ( placeholder == "date" ) - { - map[ placeholder ] = TDEGlobal::locale() ->formatDate( date, true ); - } - else if ( placeholder == "time" ) - { - map[ placeholder ] = TDEGlobal::locale() ->formatTime( time, true, false ); - } - else if ( placeholder == "year" ) - { - map[ placeholder ] = TDEGlobal::locale() ->calendar() ->yearString( date, false ); - } - else if ( placeholder == "month" ) - { - map[ placeholder ] = TQString::number( TDEGlobal::locale() ->calendar() ->month( date ) ); - } - else if ( placeholder == "day" ) - { - map[ placeholder ] = TQString::number( TDEGlobal::locale() ->calendar() ->day( date ) ); - } - else if ( placeholder == "hostname" ) - { - char hostname[ 256 ]; - hostname[ 0 ] = 0; - gethostname( hostname, 255 ); - hostname[ 255 ] = 0; - map[ placeholder ] = TQString::fromLocal8Bit( hostname ); - } - else if ( placeholder == "cursor" ) - { - map[ placeholder ] = "|"; - } - else map[ placeholder ] = placeholder; - } - } - return true; -} - -bool TemplateInterface::insertTemplateText ( uint line, uint column, const TQString &templateString, const TQMap &initialValues, TQWidget *parentWindow ) -{ - TQMap enhancedInitValues( initialValues ); - - TQRegExp rx( "[$%]\\{([^}\\s]+)\\}" ); - rx.setMinimal( true ); - int pos = 0; - int opos = 0; - - while ( pos >= 0 ) - { - pos = rx.search( templateString, pos ); - - if ( pos > -1 ) - { - if ( ( pos - opos ) > 0 ) - { - if ( templateString[ pos - 1 ] == '\\' ) - { - pos = opos = pos + 1; - continue; - } - } - TQString placeholder = rx.cap( 1 ); - if ( ! enhancedInitValues.contains( placeholder ) ) - enhancedInitValues[ placeholder ] = ""; - - pos += rx.matchedLength(); - opos = pos; - } - } - - return expandMacros( enhancedInitValues, parentWindow ) - && insertTemplateTextImplementation( line, column, templateString, enhancedInitValues, parentWindow ); -} - - - -TemplateInterface *KTextEditor::templateInterface ( KTextEditor::Document *doc ) -{ - if ( !doc ) - return 0; - - return dynamic_cast( doc ); -} - -- cgit v1.2.1