Kate
katevicommand.cpp
Go to the documentation of this file.00001 /* This file is part of the KDE libraries 00002 * Copyright (C) 2008 Erlend Hamberg <ehamberg@gmail.com> 00003 * 00004 * This library is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU Library General Public 00006 * License as published by the Free Software Foundation; either 00007 * version 2 of the License, or (at your option) version 3. 00008 * 00009 * This library is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * Library General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Library General Public License 00015 * along with this library; see the file COPYING.LIB. If not, write to 00016 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00017 * Boston, MA 02110-1301, USA. 00018 */ 00019 00020 #include "katevicommand.h" 00021 00022 KateViCommand::KateViCommand( KateViNormalMode *parent, QString pattern, 00023 bool( KateViNormalMode::*commandMethod)(), unsigned int flags ) 00024 { 00025 m_keyParser = new KateViKeySequenceParser(); 00026 00027 m_parent = parent; 00028 m_pattern = m_keyParser->encodeKeySequence( pattern ); 00029 m_flags = flags; 00030 m_ptr2commandMethod = commandMethod; 00031 } 00032 00033 KateViCommand::~KateViCommand() 00034 { 00035 delete m_keyParser; 00036 } 00037 00038 bool KateViCommand::execute() const 00039 { 00040 return ( m_parent->*m_ptr2commandMethod)(); 00041 } 00042 00043 bool KateViCommand::matches( const QString &pattern ) const 00044 { 00045 if ( !( m_flags & REGEX_PATTERN ) ) 00046 return m_pattern.startsWith( pattern ); 00047 else { 00048 QRegExp re( m_pattern ); 00049 re.exactMatch( pattern ); 00050 return ( re.matchedLength() == pattern.length() ); 00051 } 00052 } 00053 00054 bool KateViCommand::matchesExact( const QString &pattern ) const 00055 { 00056 if ( !( m_flags & REGEX_PATTERN ) ) 00057 return ( m_pattern == pattern ); 00058 else { 00059 QRegExp re( m_pattern ); 00060 return re.exactMatch( pattern ); 00061 } 00062 }