From 6392f5a9dfce2bf83617d49bb7f332181ec6004e Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 25 May 2014 15:37:31 +0900 Subject: Revert "Finish renaming tdevelop components" This reverts commit 722ce1efbac31c61b1d4b13f7e075c9f311e3e73. --- lib/util/tdeveditorutil.cpp | 89 --------------------------------------------- 1 file changed, 89 deletions(-) delete mode 100644 lib/util/tdeveditorutil.cpp (limited to 'lib/util/tdeveditorutil.cpp') diff --git a/lib/util/tdeveditorutil.cpp b/lib/util/tdeveditorutil.cpp deleted file mode 100644 index 455909f8..00000000 --- a/lib/util/tdeveditorutil.cpp +++ /dev/null @@ -1,89 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2007 by Jens Dagerbo * - * jens.dagerbo@swipnet.se * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ***************************************************************************/ - -#include "tdeveditorutil.h" - -#include -#include -#include -#include -#include - -bool TDevEditorUtil::currentPositionReal( unsigned int * line, unsigned int * col, KTextEditor::Document * doc, KTextEditor::View * view ) -{ - if ( !line || !col ) return false; - - KTextEditor::EditInterface * editIface = dynamic_cast( doc ); - if ( !editIface ) return false; - - view = view ? view : dynamic_cast( doc->widget() ); - - KTextEditor::ViewCursorInterface * cursorIface = dynamic_cast( view ); - if ( !cursorIface ) return false; - - cursorIface->cursorPositionReal( line, col ); - return true; -} - -TQString TDevEditorUtil::currentLine( KTextEditor::Document * doc, KTextEditor::View * view ) -{ - KTextEditor::EditInterface * editIface = dynamic_cast( doc ); - if ( !editIface ) return TQString(); - - view = view ? view : dynamic_cast( doc->widget() ); - - KTextEditor::ViewCursorInterface * cursorIface = dynamic_cast( view ); - if ( !cursorIface ) return TQString(); - - uint line = 0; - uint col = 0; - cursorIface->cursorPositionReal(&line, &col); - - return editIface->textLine(line); -} - -TQString TDevEditorUtil::currentWord( KTextEditor::Document * doc, KTextEditor::View * view ) -{ - KTextEditor::EditInterface * editIface = dynamic_cast( doc ); - if ( !editIface ) return TQString(); - - view = view ? view : dynamic_cast( doc->widget() ); - - KTextEditor::ViewCursorInterface * cursorIface = dynamic_cast( view ); - if ( !cursorIface ) return TQString(); - - uint line = 0; - uint col = 0; - cursorIface->cursorPositionReal(&line, &col); - - TQString linestr = editIface->textLine(line); - - int startPos = TQMAX( TQMIN( (int)col, (int)linestr.length()-1 ), 0 ); - int endPos = startPos; - startPos--; - while (startPos >= 0 && ( linestr[startPos].isLetterOrNumber() || linestr[startPos] == '_' || linestr[startPos] == '~') ) - startPos--; - while (endPos < (int)linestr.length() && ( linestr[endPos].isLetterOrNumber() || linestr[endPos] == '_' ) ) - endPos++; - - return ( ( startPos == endPos ) ? TQString() : linestr.mid( startPos+1, endPos-startPos-1 ) ); -} - - -TQString TDevEditorUtil::currentSelection( KTextEditor::Document * doc ) -{ - KTextEditor::SelectionInterface * selectIface = dynamic_cast( doc ); - return selectIface ? selectIface->selection() : TQString(); -} - - -// kate: space-indent off; indent-width 4; tab-width 4; show-tabs on; - -- cgit v1.2.1