1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
/******************************************************************************
*
* Copyright (C) 2002 Hugo PEREIRA <mailto: hugo.pereira@free.fr>
*
* This 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.
*
* This software 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 General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*
*******************************************************************************/
#include "BaseReplaceWidget.h"
#include "Debug.h"
#include <QPushButton>
//________________________________________________________________________
QOrderedSet<QString>& BaseReplaceWidget::_replacedStrings()
{
static QOrderedSet<QString> strings;
return strings;
}
//________________________________________________________________________
BaseReplaceWidget::BaseReplaceWidget( QWidget* parent, bool compact ):
BaseFindWidget( parent, compact )
{
Debug::Throw( "BaseReplaceWidget::BaseReplaceWidget.\n" );
// replace label and editor
QLabel* label = new QLabel( tr( "Replace with:" ), this );
label->setAlignment( Qt::AlignRight|Qt::AlignVCenter );
_editorLayout().addWidget( label, 1, 0, 1, 1 );
// replacement editor
_editorLayout().addWidget( replaceEditor_ = new CustomComboBox( this ), 1, 1, 1, 1 );
label->setBuddy( replaceEditor_ );
// disable callbacks on find editor
disconnect( editor().lineEdit(), SIGNAL(textChanged(QString)), this, SLOT(_findNoIncrement()) );
replaceEditor_->setEditable( true );
replaceEditor_->setAutoCompletion( true, Qt::CaseSensitive );
replaceEditor_->setNavigationEnabled( false );
connect( replaceEditor_->lineEdit(), SIGNAL(returnPressed()), SLOT(_replace()) );
connect( replaceEditor_->lineEdit(), SIGNAL(returnPressed()), SLOT(_updateFindComboBox()) );
connect( replaceEditor_->lineEdit(), SIGNAL(returnPressed()), SLOT(_updateReplaceComboBox()) );
connect( replaceEditor_->lineEdit(), SIGNAL(textChanged(QString)), this, SIGNAL(replaceTextChanged(QString)) );
setTabOrder( &editor(), replaceEditor_ );
// replace buttons
QPushButton* button = new QPushButton( tr( "Replace" ), this );
connect( button, SIGNAL(clicked()), SLOT(_replace()) );
connect( button, SIGNAL(clicked()), SLOT(_updateFindComboBox()) );
connect( button, SIGNAL(clicked()), SLOT(_updateReplaceComboBox()) );
_addDisabledButton( button );
_editorLayout().addWidget( button, 1, 2, 1, 1 );
button->setAutoDefault( false );
setTabOrder( &_findPreviousButton(), button );
QPushButton* previous = button;
// replace all button
button = new QPushButton( tr( "Replace in" ), this );
_addDisabledButton( button );
_editorLayout().addWidget( button, 1, 3, 1, 1 );
button->setAutoDefault( false );
button->setMenu( replaceAllMenu_ = new QMenu );
setTabOrder( previous, button );
// replace in selection action
QAction* action;
replaceAllMenu_->addAction( action = new QAction( tr( "Selection" ), this ) );
connect( action, SIGNAL(triggered()), SLOT(_replaceInSelection()) );
connect( action, SIGNAL(triggered()), SLOT(_updateFindComboBox()) );
connect( action, SIGNAL(triggered()), SLOT(_updateReplaceComboBox()) );
replaceInSelectionAction_ = action;
// replace in window action
replaceAllMenu_->addAction( action = new QAction( tr( "Window" ), this ) );
connect( action, SIGNAL(triggered()), SLOT(_replaceInWindow()) );
connect( action, SIGNAL(triggered()), SLOT(_updateFindComboBox()) );
connect( action, SIGNAL(triggered()), SLOT(_updateReplaceComboBox()) );
connect( replaceAllMenu_, SIGNAL(aboutToShow()), SIGNAL(menuAboutToShow()) );
}
//_____________________________________________________
TextSelection BaseReplaceWidget::selection( bool noIncrement ) const
{
TextSelection out( BaseFindWidget::selection( noIncrement ) );
out.setReplaceText( replaceEditor_->currentText() );
return out;
}
//__________________________________________________
void BaseReplaceWidget::synchronize()
{
Debug::Throw( "BaseReplaceWidget::synchronize.\n" );
// base class method
BaseFindWidget::synchronize();
// replace editor
replaceEditor_->clear();
for( const auto& string:_replacedStrings() )
{ replaceEditor_->addItem( string ); }
// clear replace combobox text
replaceEditor_->setEditText("");
// set focus to find editor
editor().setFocus();
}
//__________________________________________________
void BaseReplaceWidget::_replaceInWindow()
{ emit replaceInWindow( selection( false ) ); }
//__________________________________________________
void BaseReplaceWidget::_replaceInSelection()
{ emit replaceInSelection( selection( false ) ); }
//__________________________________________________
void BaseReplaceWidget::_addReplacedString( const QString& text )
{
if( text.isEmpty() ) return;
if( _replacedStrings().find( text ) == _replacedStrings().end() )
{
_replacedStrings().insert( text );
replaceEditor_->addItem( text );
}
}
|