Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
LCL
»
Which component for highlighting part of item/string
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
WIKI Timeout issues
Please read here if you have trouble connecting to the wiki
Recent
CEF component - the first...
by
Nicole
[
Today
at 05:18:10 pm]
Layout problem by nested ...
by
Nicole
[
Today
at 05:12:36 pm]
Lazarus 4, What's wrong w...
by
Thaddy
[
Today
at 05:11:07 pm]
Loading an image from an ...
by
Thaddy
[
Today
at 04:42:00 pm]
Build failure
by
wp
[
Today
at 04:36:02 pm]
IDE Lazarus 4.0 on Window...
by
Martin_fr
[
Today
at 03:47:30 pm]
Lazarus 4.0 RC3
by
paxnet_be
[
Today
at 02:34:23 pm]
Firebird 5 remote login v...
by
LacaK
[
Today
at 02:07:34 pm]
Compile errors in MacBook...
by
Thaddy
[
Today
at 11:46:06 am]
LAMW - UTF-8 character in...
by
Alcatiz
[
Today
at 11:36:29 am]
How to run an external pr...
by
vsajip
[
Today
at 08:50:34 am]
lazbuild command line swi...
by
n7800
[
Today
at 04:21:35 am]
dBGRidController and Erro...
by
essence-ciel
[
Today
at 01:15:11 am]
"LCLVersion" in *.lfm fil...
by
zeljko
[June 17, 2025, 11:05:36 pm]
FPC for high-performance ...
by
Thaddy
[June 17, 2025, 09:42:33 pm]
How to stop macro executi...
by
440bx
[June 17, 2025, 09:19:45 pm]
x86_64-win64 annoys me
by
Nicole
[June 17, 2025, 08:28:16 pm]
OpenDialog and mouse even...
by
Martin_fr
[June 17, 2025, 07:37:19 pm]
InstallAware 2025 Sources...
by
msintle
[June 17, 2025, 06:49:04 pm]
Sqlite & Zeos
by
CharlyTango
[June 17, 2025, 05:01:43 pm]
Strict Aliasing Rule
by
nixbody
[June 17, 2025, 04:19:41 pm]
Lazarus 4 - I give up and...
by
Nicole
[June 17, 2025, 04:01:40 pm]
LazUtils, FileUtil.CopyDi...
by
AlexTP
[June 17, 2025, 02:52:02 pm]
Help needed setting up LA...
by
silvercoder70
[June 17, 2025, 12:12:06 pm]
Font character being clip...
by
Coxy
[June 17, 2025, 12:04:54 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Which component for highlighting part of item/string (Read 4451 times)
user2126296
Newbie
Posts: 6
Which component for highlighting part of item/string
«
on:
March 20, 2013, 01:12:27 pm »
Which component (TListView, TStringGrid, ...) do you recommend for this:
presentation of list items
items will be strings
specified substrings (e.g. words) will be highlighted - I need to highlight some words in a string/item.
Example:
http://www.codeproject.com/Articles/103259/Highlight-Searched-Text-in-WPF-ListView
I am not aware of a way to change background color for a part of string (using OnCustomDrawItem).
Logged
Blaazen
Hero Member
Posts: 3241
POKE 54296,15
Re: Which component for highlighting part of item/string
«
Reply #1 on:
March 20, 2013, 01:56:40 pm »
TSynEdit (or TSynMemo)
Logged
Lazarus 2.3.0 (rev main-2_3-2863...) FPC 3.3.1 x86_64-linux-qt Chakra, Qt 4.8.7/5.13.2, Plasma 5.17.3
Lazarus 1.8.2 r57369 FPC 3.0.4 i386-win32-win32/win64 Wine 3.21
Try Eye-Candy Controls:
https://sourceforge.net/projects/eccontrols/files/
user2126296
Newbie
Posts: 6
Re: Which component for highlighting part of item/string
«
Reply #2 on:
March 20, 2013, 03:05:48 pm »
Quote from: Blaazen on March 20, 2013, 01:56:40 pm
TSynEdit (or TSynMemo)
It'd be non-standard usage of TSynMemo because of need to present tabular data:
read only row (can be easily implemented in TSynMemo)
when onclick on row, full row should be selected (not sure)
need to access data/strings in particular column
Logged
Martin_fr
Administrator
Hero Member
Posts: 11338
Debugger - SynEdit - and more
Re: Which component for highlighting part of item/string
«
Reply #3 on:
March 20, 2013, 04:04:25 pm »
The other option is to do painting yourself. Many components have on Paint, or even OnPaintItem (sorry no example)
Logged
Ide Tools, Code completion and more
/
IDE cool features
/
Debugger Status
Bright theme for bright minds
theo
Global Moderator
Hero Member
Posts: 1932
Re: Which component for highlighting part of item/string
«
Reply #4 on:
March 20, 2013, 05:23:25 pm »
Yes, paint it yourself.
Canvas.TextExtent
Canvas.FillRect
Canvas.TextOut or TextRect
are your friends.
Logged
user2126296
Newbie
Posts: 6
Re: Which component for highlighting part of item/string
«
Reply #5 on:
March 20, 2013, 06:22:18 pm »
And which event should be the trigger to do the painting?
TListBox, TListView and TStringGrid have only OnDrawItem, no OnPaint(Item) event available. I do not know the difference between OnPaint(Item) and OnDrawItem events.
Logged
theo
Global Moderator
Hero Member
Posts: 1932
Re: Which component for highlighting part of item/string
«
Reply #6 on:
March 21, 2013, 09:16:47 am »
Yes, OnDrawItem, OnCustomDraw ... etc. whatever seems appropriate.
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
LCL
»
Which component for highlighting part of item/string
TinyPortal
© 2005-2018