summaryrefslogtreecommitdiffstats
path: root/lib/util/kdeveditorutil.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-03-02 20:05:33 +0100
committerSlávek Banko <slavek.banko@axis.cz>2014-03-02 20:05:33 +0100
commit722ce1efbac31c61b1d4b13f7e075c9f311e3e73 (patch)
treedb1b6b28566e5fe9accb4a688f7257673cecb080 /lib/util/kdeveditorutil.cpp
parentafb74575caf7dd8ccb6c235b1c8d788e320c19da (diff)
downloadtdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.tar.gz
tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.zip
Finish renaming tdevelop components
Diffstat (limited to 'lib/util/kdeveditorutil.cpp')
-rw-r--r--lib/util/kdeveditorutil.cpp89
1 files changed, 0 insertions, 89 deletions
diff --git a/lib/util/kdeveditorutil.cpp b/lib/util/kdeveditorutil.cpp
deleted file mode 100644
index 198e9a42..00000000
--- a/lib/util/kdeveditorutil.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 "kdeveditorutil.h"
-
-#include <tdetexteditor/document.h>
-#include <tdetexteditor/view.h>
-#include <tdetexteditor/viewcursorinterface.h>
-#include <tdetexteditor/editinterface.h>
-#include <tdetexteditor/selectioninterface.h>
-
-bool KDevEditorUtil::currentPositionReal( unsigned int * line, unsigned int * col, KTextEditor::Document * doc, KTextEditor::View * view )
-{
- if ( !line || !col ) return false;
-
- KTextEditor::EditInterface * editIface = dynamic_cast<KTextEditor::EditInterface*>( doc );
- if ( !editIface ) return false;
-
- view = view ? view : dynamic_cast<KTextEditor::View*>( doc->widget() );
-
- KTextEditor::ViewCursorInterface * cursorIface = dynamic_cast<KTextEditor::ViewCursorInterface*>( view );
- if ( !cursorIface ) return false;
-
- cursorIface->cursorPositionReal( line, col );
- return true;
-}
-
-TQString KDevEditorUtil::currentLine( KTextEditor::Document * doc, KTextEditor::View * view )
-{
- KTextEditor::EditInterface * editIface = dynamic_cast<KTextEditor::EditInterface*>( doc );
- if ( !editIface ) return TQString();
-
- view = view ? view : dynamic_cast<KTextEditor::View*>( doc->widget() );
-
- KTextEditor::ViewCursorInterface * cursorIface = dynamic_cast<KTextEditor::ViewCursorInterface*>( view );
- if ( !cursorIface ) return TQString();
-
- uint line = 0;
- uint col = 0;
- cursorIface->cursorPositionReal(&line, &col);
-
- return editIface->textLine(line);
-}
-
-TQString KDevEditorUtil::currentWord( KTextEditor::Document * doc, KTextEditor::View * view )
-{
- KTextEditor::EditInterface * editIface = dynamic_cast<KTextEditor::EditInterface*>( doc );
- if ( !editIface ) return TQString();
-
- view = view ? view : dynamic_cast<KTextEditor::View*>( doc->widget() );
-
- KTextEditor::ViewCursorInterface * cursorIface = dynamic_cast<KTextEditor::ViewCursorInterface*>( 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 KDevEditorUtil::currentSelection( KTextEditor::Document * doc )
-{
- KTextEditor::SelectionInterface * selectIface = dynamic_cast<KTextEditor::SelectionInterface*>( doc );
- return selectIface ? selectIface->selection() : TQString();
-}
-
-
-// kate: space-indent off; indent-width 4; tab-width 4; show-tabs on;
-