diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
commit | 10308be19ef7fa44699562cc75946e7ea1fdf6b9 (patch) | |
tree | 4bc444c00a79e88105f2cfce5b6209994c413ca0 /kate/part/kateview.cpp | |
parent | 307136d8eef0ba133b78ceee8e901138d4c996a1 (diff) | |
download | tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.tar.gz tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.zip |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1212479 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kate/part/kateview.cpp')
-rw-r--r-- | kate/part/kateview.cpp | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/kate/part/kateview.cpp b/kate/part/kateview.cpp index a3997ff70..7840e79d5 100644 --- a/kate/part/kateview.cpp +++ b/kate/part/kateview.cpp @@ -125,7 +125,7 @@ KateView::KateView( KateDocument *doc, TQWidget *parent, const char * name ) setPopupMenuInterfaceDCOPSuffix (viewDCOPSuffix()); setSessionConfigInterfaceDCOPSuffix (viewDCOPSuffix()); setViewCursorInterfaceDCOPSuffix (viewDCOPSuffix()); - setViewtqStatusMsgInterfaceDCOPSuffix (viewDCOPSuffix()); + setViewStatusMsgInterfaceDCOPSuffix (viewDCOPSuffix()); setInstance( KateFactory::self()->instance() ); doc->addView( this ); @@ -194,9 +194,9 @@ void KateView::setupConnections() this, TQT_SLOT(slotSaveCanceled(const TQString&)) ); connect( m_viewInternal, TQT_SIGNAL(dropEventPass(TQDropEvent*)), this, TQT_SIGNAL(dropEventPass(TQDropEvent*)) ); - connect(this,TQT_SIGNAL(cursorPositionChanged()),this,TQT_SLOT(slottqStatusMsg())); - connect(this,TQT_SIGNAL(newtqStatus()),this,TQT_SLOT(slottqStatusMsg())); - connect(m_doc, TQT_SIGNAL(undoChanged()), this, TQT_SLOT(slottqStatusMsg())); + connect(this,TQT_SIGNAL(cursorPositionChanged()),this,TQT_SLOT(slotStatusMsg())); + connect(this,TQT_SIGNAL(newStatus()),this,TQT_SLOT(slotStatusMsg())); + connect(m_doc, TQT_SIGNAL(undoChanged()), this, TQT_SLOT(slotStatusMsg())); if ( m_doc->browserView() ) { @@ -243,13 +243,13 @@ void KateView::setupActions() // setup Tools menu a=new KAction(i18n("&Indent"), "indent", Qt::CTRL+Qt::Key_I, this, TQT_SLOT(indent()), ac, "tools_indent"); a->setWhatsThis(i18n("Use this to indent a selected block of text.<br><br>" - "You can configure whether tabs should be honored and used or tqreplaced with spaces, in the configuration dialog.")); + "You can configure whether tabs should be honored and used or replaced with spaces, in the configuration dialog.")); a=new KAction(i18n("&Unindent"), "unindent", Qt::CTRL+Qt::SHIFT+Qt::Key_I, this, TQT_SLOT(unIndent()), ac, "tools_unindent"); a->setWhatsThis(i18n("Use this to unindent a selected block of text.")); a=new KAction(i18n("&Clean Indentation"), 0, this, TQT_SLOT(cleanIndent()), ac, "tools_cleanIndent"); a->setWhatsThis(i18n("Use this to clean the indentation of a selected block of text (only tabs/only spaces)<br><br>" - "You can configure whether tabs should be honored and used or tqreplaced with spaces, in the configuration dialog.")); + "You can configure whether tabs should be honored and used or replaced with spaces, in the configuration dialog.")); a=new KAction(i18n("&Align"), 0, this, TQT_SLOT(align()), ac, "tools_align"); a->setWhatsThis(i18n("Use this to align the current line or block of text to its proper indent level.")); @@ -680,7 +680,7 @@ void KateView::slotGotFocus() { m_editActions->accel()->setEnabled( true ); - slottqStatusMsg (); + slotStatusMsg (); } void KateView::slotLostFocus() @@ -693,7 +693,7 @@ void KateView::setDynWrapIndicators(int mode) config()->setDynWordWrapIndicators (mode); } -void KateView::slottqStatusMsg () +void KateView::slotStatusMsg () { TQString ovrstr; if (m_doc->isReadWrite()) @@ -715,14 +715,14 @@ void KateView::slottqStatusMsg () TQString modstr = m_doc->isModified() ? TQString (" * ") : TQString (" "); TQString blockstr = blockSelectionMode() ? i18n(" BLK ") : i18n(" NORM "); - emit viewtqStatusMsg (s1 + s2 + " " + ovrstr + blockstr + modstr); + emit viewStatusMsg (s1 + s2 + " " + ovrstr + blockstr + modstr); } void KateView::slotSelectionTypeChanged() { m_toggleBlockSelection->setChecked( blockSelectionMode() ); - emit newtqStatus(); + emit newStatus(); } bool KateView::isOverwriteMode() const @@ -733,12 +733,12 @@ bool KateView::isOverwriteMode() const void KateView::reloadFile() { m_doc->reloadFile(); - emit newtqStatus(); + emit newStatus(); } void KateView::slotUpdate() { - emit newtqStatus(); + emit newStatus(); slotNewUndo(); } @@ -753,7 +753,7 @@ void KateView::slotReadWriteChanged () TQStringList l; - l << "edit_tqreplace" << "set_insert" << "tools_spelling" << "tools_indent" + l << "edit_replace" << "set_insert" << "tools_spelling" << "tools_indent" << "tools_unindent" << "tools_cleanIndent" << "tools_align" << "tools_comment" << "tools_uncomment" << "tools_uppercase" << "tools_lowercase" << "tools_capitalize" << "tools_join_lines" << "tools_apply_wordwrap" @@ -793,7 +793,7 @@ void KateView::contextMenuEvent( TQContextMenuEvent *ev ) if ( !m_doc || !m_doc->browserExtension() ) return; emit m_doc->browserExtension()->popupMenu( /*this, */ev->globalPos(), m_doc->url(), - TQString::tqfromLatin1( "text/plain" ) ); + TQString::fromLatin1( "text/plain" ) ); ev->accept(); } @@ -832,7 +832,7 @@ void KateView::toggleInsert() m_doc->setConfigFlags(m_doc->config()->configFlags() ^ KateDocument::cfOvr); m_toggleInsert->setChecked (isOverwriteMode ()); - emit newtqStatus(); + emit newStatus(); } bool KateView::canDiscard() @@ -1089,29 +1089,29 @@ void KateView::slotNeedTextHint(int line, int col, TQString &text) text=TQString("test %1 %2").arg(line).arg(col); } -void KateView::tqfind() +void KateView::find() { - m_search->tqfind(); + m_search->find(); } -void KateView::tqfind( const TQString& pattern, long flags, bool add ) +void KateView::find( const TQString& pattern, long flags, bool add ) { - m_search->tqfind( pattern, flags, add ); + m_search->find( pattern, flags, add ); } -void KateView::tqreplace() +void KateView::replace() { - m_search->tqreplace(); + m_search->replace(); } -void KateView::tqreplace( const TQString &pattern, const TQString &tqreplacement, long flags ) +void KateView::replace( const TQString &pattern, const TQString &replacement, long flags ) { - m_search->tqreplace( pattern, tqreplacement, flags ); + m_search->replace( pattern, replacement, flags ); } -void KateView::tqfindAgain( bool back ) +void KateView::findAgain( bool back ) { - m_search->tqfindAgain( back ); + m_search->findAgain( back ); } void KateView::slotSelectionChanged () @@ -1233,11 +1233,11 @@ void KateView::updateRendererConfig() // update the text area m_viewInternal->updateView (true); - m_viewInternal->tqrepaint (); + m_viewInternal->repaint (); // update the left border right, for example linenumbers m_viewInternal->leftBorder->updateFont(); - m_viewInternal->leftBorder->tqrepaint (); + m_viewInternal->leftBorder->repaint (); // @@ showIndentLines is not cached anymore. // m_renderer->setShowIndentLines (m_renderer->config()->showIndentationLines()); @@ -1305,7 +1305,7 @@ void KateView::clear () m_viewInternal->clear (); } -void KateView::tqrepaintText (bool paintOnlyDirty) +void KateView::repaintText (bool paintOnlyDirty) { m_viewInternal->paintText(0,0,m_viewInternal->width(),m_viewInternal->height(), paintOnlyDirty); } @@ -1360,7 +1360,7 @@ bool KateView::setSelection( const KateTextCursor& start, const KateTextCursor& tagSelection(oldSelectStart, oldSelectEnd); - tqrepaintText(true); + repaintText(true); emit selectionChanged (); emit m_doc->selectionChanged (); @@ -1405,7 +1405,7 @@ bool KateView::clearSelection(bool redraw, bool finishedChangingSelection) oldSelectEnd = selectEnd; if (redraw) - tqrepaintText(true); + repaintText(true); if (finishedChangingSelection) { @@ -1596,7 +1596,7 @@ void KateView::paste() { m_doc->paste( this ); emit selectionChanged(); - m_viewInternal->tqrepaint(); + m_viewInternal->repaint(); } void KateView::cut() @@ -1736,7 +1736,7 @@ void KateView::lineAsHTML (KateTextLine::Ptr line, uint startCol, uint length, T for (uint curPos=startCol;curPos<(length+startCol);curPos++) { if ( curPos == 0 || line->attribute( curPos ) != line->attribute( curPos - 1 ) && - // Since many highlight files tqcontains itemdatas that have the exact + // Since many highlight files contains itemdatas that have the exact // same styles, join those to keep the HTML text size down KateAttribute(*charAttributes) != KateAttribute(*m_renderer->attribute(line->attribute(curPos))) ) { @@ -1748,7 +1748,7 @@ void KateView::lineAsHTML (KateTextLine::Ptr line, uint startCol, uint length, T charAttributes = m_renderer->attribute(line->attribute(curPos)); - if ( ! stylecache.tqcontains( line->attribute(curPos) ) ) + if ( ! stylecache.contains( line->attribute(curPos) ) ) { TQString textdecoration; TQString style; @@ -1917,4 +1917,4 @@ void KateView::getIMSelectionValue( uint *imStartLine, uint *imStart, uint *imEn } //END IM INPUT STUFF -// kate: space-indent on; indent-width 2; tqreplace-tabs on; +// kate: space-indent on; indent-width 2; replace-tabs on; |