Files
eepp/src/tools/ecode/uitreeviewglobalsearch.cpp
Martín Lucas Golini dbb36cdcf4 Fix Objective-C highlighter.
Added Objective-C++ highlighter (SpartanJ/ecode#616).
Replaced "Treat .h file as C++" in favor of "Treat .h files as..." with multiple options, including auto-detection (SpartanJ/ecode#614).
Refresh semantic-highlighting after syntax highlighter change.
2025-08-17 16:56:12 -03:00

230 lines
7.7 KiB
C++

#include "uitreeviewglobalsearch.hpp"
#include "projectsearch.hpp"
#include <eepp/graphics/primitives.hpp>
#include <eepp/ui/doc/syntaxdefinitionmanager.hpp>
#include <eepp/ui/doc/syntaxtokenizer.hpp>
#include <eepp/ui/uicheckbox.hpp>
#include <eepp/ui/uiscenenode.hpp>
#include <eepp/ui/uistyle.hpp>
namespace ecode {
static Float getTextWidth( Float glyphWidth, Uint32 tabWidth, const String& line ) {
size_t len = line.length();
Float x = 0;
for ( size_t i = 0; i < len; i++ )
x += ( line[i] == '\t' ) ? glyphWidth * tabWidth : glyphWidth;
return x;
}
static Float getXOffsetCol( Float glyphWidth, Uint32 tabWidth, const String& line, Int64 col ) {
Float x = 0;
for ( auto i = 0; i < col; i++ ) {
if ( line[i] == '\t' ) {
x += glyphWidth * tabWidth;
} else if ( line[i] != '\n' && line[i] != '\r' ) {
x += glyphWidth;
}
}
return x;
}
UITreeViewGlobalSearch::UITreeViewGlobalSearch( const SyntaxColorScheme& colorScheme,
bool searchReplace ) :
UITreeView(),
mLineNumColor( Color::fromString(
mUISceneNode->getRoot()->getUIStyle()->getVariable( "--font-hint" ).getValue() ) ),
mColorScheme( colorScheme ),
mSearchReplace( searchReplace ) {}
UIWidget* UITreeViewGlobalSearch::createCell( UIWidget* rowWidget, const ModelIndex& index ) {
UITableCell* widget = index.column() == (Int64)getModel()->treeColumn()
? UITreeViewCellGlobalSearch::New( mSearchReplace, hExtLanguageType )
: UITableCell::New();
return setupCell( widget, rowWidget, index );
}
Uint32 UITreeViewGlobalSearch::onKeyDown( const KeyEvent& event ) {
auto curIndex = getSelection().first();
switch ( event.getKeyCode() ) {
case KEY_SPACE: {
if ( curIndex.isValid() )
onOpenModelIndex( curIndex, &event );
return 0;
}
default:
break;
}
return UITreeView::onKeyDown( event );
}
void UITreeViewCellGlobalSearch::toggleSelected() {
UICheckBox* chk = mTextBox->asType<UICheckBox>();
if ( getCurIndex().internalId() != -1 ) {
ProjectSearch::ResultData::Result* result = getResultPtr();
if ( result ) {
result->selected = !result->selected;
chk->setChecked( result->selected );
ProjectSearch::ResultData* parentData =
(ProjectSearch::ResultData*)getDataPtr( getCurIndex().parent() );
if ( parentData )
parentData->selected = parentData->allResultsSelected();
}
} else {
auto* result = getResultDataPtr();
result->setResultsSelected( !result->selected );
chk->setChecked( result->selected );
}
}
std::function<UITextView*( UIPushButton* )> UITreeViewCellGlobalSearch::getCheckBoxFn() {
return [this]( UIPushButton* ) -> UITextView* {
UICheckBox* chk = UICheckBox::New();
addEventListener( Event::MouseClick, [this, chk]( const Event* event ) {
const MouseEvent* mouseEvent = static_cast<const MouseEvent*>( event );
if ( !( mouseEvent->getFlags() & EE_BUTTON_LMASK ) )
return 1;
Vector2f pos = convertToNodeSpace( mouseEvent->getPosition().asFloat() );
Rectf box( { convertToNodeSpace( chk->getCurrentButton()->convertToWorldSpace(
chk->getCurrentButton()->getPixelsPosition() ) ),
chk->getCurrentButton()->getPixelsSize() } );
if ( box.contains( pos ) )
toggleSelected();
return 1;
} );
return chk;
};
}
void* UITreeViewCellGlobalSearch::getDataPtr( const ModelIndex& modelIndex ) {
const ProjectSearch::ResultModel* model =
static_cast<const ProjectSearch::ResultModel*>( modelIndex.model() );
ModelIndex index =
model->index( modelIndex.row(), ProjectSearch::ResultModel::Data, modelIndex.parent() );
Variant var( model->data( index, ModelRole::Custom ) );
if ( var.is( Variant::Type::DataPtr ) )
return var.asDataPtr();
return nullptr;
}
ProjectSearch::ResultData::Result* UITreeViewCellGlobalSearch::getResultPtr() {
if ( getCurIndex().internalId() == -1 )
return nullptr;
void* ptr = getDataPtr( getCurIndex() );
if ( ptr )
return (ProjectSearch::ResultData::Result*)ptr;
return nullptr;
}
ProjectSearch::ResultData* UITreeViewCellGlobalSearch::getResultDataPtr() {
if ( getCurIndex().internalId() != -1 )
return nullptr;
void* ptr = getDataPtr( getCurIndex() );
if ( ptr )
return (ProjectSearch::ResultData*)ptr;
return nullptr;
}
#define CELL_GLOBAL_SEARCH_PADDING ( 12 )
UITreeViewCellGlobalSearch::UITreeViewCellGlobalSearch( bool selectionEnabled,
HExtLanguageType hExtLanguageType ) :
UITreeViewCell( selectionEnabled ? getCheckBoxFn() : nullptr ),
mHExtLanguageType( hExtLanguageType ) {}
UIPushButton* UITreeViewCellGlobalSearch::setText( const String& text ) {
auto* result = getResultPtr();
if ( text != mTextBox->getText() ||
( result &&
std::make_pair<size_t, size_t>(
result->position.start().column() + CELL_GLOBAL_SEARCH_PADDING,
result->position.end().column() + CELL_GLOBAL_SEARCH_PADDING ) != mSearchStrPos ) ) {
mTextBox->setVisible( !text.empty() );
mTextBox->setText( text );
updateText( text + "\n" );
updateLayout();
}
return this;
}
UIPushButton* UITreeViewCellGlobalSearch::updateText( const std::string& text ) {
if ( getCurIndex().internalId() != -1 ) {
UITreeViewGlobalSearch* pp = getParent()->getParent()->asType<UITreeViewGlobalSearch>();
ProjectSearch::ResultData* res =
(ProjectSearch::ResultData*)getCurIndex().parent().internalData();
const auto& styleDef =
SyntaxDefinitionManager::instance()->getByExtension( res->file );
Uint32 from = text.find_first_not_of( ' ' );
Uint32 to = from;
if ( from != String::InvalidPos ) {
to = text.find_first_of( ' ', from );
mTextBox->setFontFillColor( pp->getLineNumColor(), from, to );
}
auto* result = getResultPtr();
mSearchStrPos = { result->position.start().column() + CELL_GLOBAL_SEARCH_PADDING,
result->position.end().column() + CELL_GLOBAL_SEARCH_PADDING };
const String& txt = mTextBox->getText();
if ( mSearchStrPos.second <= txt.size() ) {
mResultStr =
txt.substr( mSearchStrPos.first, mSearchStrPos.second - mSearchStrPos.first );
} else {
mResultStr = "";
}
auto tokens = SyntaxTokenizer::tokenize( styleDef, text, SyntaxState{}, to ).first;
size_t start = to;
for ( const auto& token : tokens ) {
mTextBox->setFontFillColor( pp->getColorScheme().getSyntaxStyle( token.type ).color,
start, start + token.len );
start += token.len;
}
}
return this;
}
void UITreeViewCellGlobalSearch::draw() {
UITreeViewCell::draw();
if ( getCurIndex().internalId() != -1 && mSearchStrPos.first != std::string::npos &&
mSearchStrPos.second > 0 && mSearchStrPos.second <= mTextBox->getText().length() ) {
UITreeViewGlobalSearch* pp = getParent()->getParent()->asType<UITreeViewGlobalSearch>();
auto hspace =
mTextBox->getFont()->getGlyph( L' ', mTextBox->getFontSize(), false, false ).advance;
Primitives p;
p.setColor( pp->getColorScheme().getEditorSyntaxStyle( "selection"_sst ).color );
Vector2f screenPos( mScreenPos );
if ( mTextBox->isType( UI_TYPE_CHECKBOX ) ) {
UICheckBox* chk = mTextBox->asType<UICheckBox>();
screenPos.x += chk->getRealAlignOffset().x;
}
p.drawRectangle( Rectf(
{ screenPos.x + mTextBox->getPixelsPosition().x +
getXOffsetCol( hspace, mTextBox->getTextCache()->getTabWidth(),
mTextBox->getText(), mSearchStrPos.first ),
screenPos.y + mTextBox->getPixelsPosition().y },
Sizef( getTextWidth( hspace, mTextBox->getTextCache()->getTabWidth(), mResultStr ),
mTextBox->getPixelsSize().getHeight() ) ) );
}
}
void UITreeViewCellGlobalSearch::updateCell( Model* ) {
if ( mTextBox->isType( UI_TYPE_CHECKBOX ) ) {
UICheckBox* chk = mTextBox->asType<UICheckBox>();
auto* result = getResultPtr();
if ( result ) {
chk->setChecked( result->selected );
} else if ( auto* dataResult = getResultDataPtr() ) {
chk->setChecked( dataResult->selected );
}
}
}
} // namespace ecode