Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Widgetset
»
Win32/64
»
Tried to colorize 1-px line under TMainMenu, need help
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
IRC channel
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
Recent
Out of memory on a ATtiny...
by
pascalbythree
[
Today
at 03:42:00 pm]
Noting responds when send...
by
pascalbythree
[
Today
at 03:36:40 pm]
Mediators and Indexed Pro...
by
Weitentaaal
[
Today
at 03:28:23 pm]
Windows API and wide/unic...
by
cdbc
[
Today
at 03:10:48 pm]
Better Vectorcall Support
by
Madoc
[
Today
at 02:09:07 pm]
Help with barcode scannin...
by
kwyan
[
Today
at 02:03:44 pm]
[SOLVED]Bash commands and...
by
johnathan
[
Today
at 01:17:57 pm]
Best practices to use tRt...
by
Mr.Madguy
[
Today
at 12:48:45 pm]
ImGui FreePascal Binding ...
by
Coldzer0
[
Today
at 12:44:00 pm]
Sleep forever
by
jollytall
[
Today
at 11:16:16 am]
LazReport designer math f...
by
nouzi
[
Today
at 10:26:26 am]
[SOLVED] Lazarus 3.0 on l...
by
Codrut1001
[
Today
at 10:25:08 am]
[SOLVED] Simple (I hope) ...
by
dbannon
[
Today
at 10:20:49 am]
Huge problem with open fi...
by
MarkMLl
[
Today
at 08:24:33 am]
BGRA Controls
by
paweld
[
Today
at 07:53:16 am]
What is the meaning of TF...
by
kwyan
[
Today
at 07:04:14 am]
Un-register an LCL Compon...
by
dbannon
[
Today
at 04:58:57 am]
[SOLVED] TPanel slider po...
by
Handoko
[
Today
at 04:07:12 am]
how to change color of a ...
by
Handoko
[
Today
at 03:26:35 am]
Date-Stamp DBDateEdit
by
Handoko
[
Today
at 03:16:12 am]
Chinese input in edit and...
by
myisjwj
[
Today
at 03:13:57 am]
Any library to generate a...
by
Martin_fr
[
Today
at 01:29:56 am]
Absolute positioning of c...
by
dseligo
[
Today
at 01:06:11 am]
Online Package Manager
by
lainz
[November 29, 2023, 10:34:18 pm]
BGRA Controls Install Lat...
by
andrew Bubble
[November 29, 2023, 08:43:54 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Tried to colorize 1-px line under TMainMenu, need help (Read 3161 times)
AlexTP
Hero Member
Posts: 2287
Tried to colorize 1-px line under TMainMenu, need help
«
on:
September 19, 2020, 01:58:12 pm »
For Win32MenuStyler
https://wiki.freepascal.org/Win32MenuStyler
I need to colorize 1 px horizontal line under MainMenu. It is painted by OS in non-client area.
C++ sample how to do it:
https://stackoverflow.com/questions/57177310/how-to-paint-over-white-line-between-menu-bar-and-client-area-of-window
I tried to add it to Win32 WS, near the "WM_NCPAINT:" in TWindowProcHelper.DoWindowProc, but failed. I added:
Code: Pascal
[Select]
[+]
[-]
WM_NCPAINT
:
begin
if
TWin32ThemeServices
(
ThemeServices
)
.
ThemesEnabled
and
(
lWinControl is TCustomControl
)
and
not
(
lWinControl is TCustomForm
)
then
begin
TWin32ThemeServices
(
ThemeServices
)
.
PaintBorder
(
lWinControl
,
True
)
;
LMessage
.
Result
:
=
0
;
end
;
PaintLineUnderMenubar
(
TargetWindow
)
;
end
;
with my func:
Code: Pascal
[Select]
[+]
[-]
procedure
PaintLineUnderMenubar
(
Window
:
Hwnd
)
;
var
R
,
RScr
:
TRect
;
br
:
HBRUSH
;
dc
:
HDC
;
begin
if
not
IsWindow
(
Window
)
then
exit
;
if
GetMenu
(
Window
)
=
0
then
Exit
;
GetClientRect
(
Window
,
R
)
;
MapWindowPoints
(
Window
,
NULL
,
R
,
2
)
;
GetWindowRect
(
Window
,
RScr
)
;
OffsetRect
(
R
,
-
RScr
.
Left
,
-
RScr
.
Top
)
;
Dec
(
R
.
Top
)
;
R
.
Bottom
:
=
R
.
Top
+
2
;
dc
:
=
GetWindowDC
(
Window
)
;
br
:
=
CreateSolidBrush
(
clRed
)
;
FillRect
(
dc
,
R
,
br
)
;
DeleteObject
(
br
)
;
ReleaseDC
(
Window
,
dc
)
;
end
;
Can you help?
Screenshot of current white line - is added.
«
Last Edit: September 19, 2020, 04:14:28 pm by Alextp
»
Logged
CudaText editor
-
ATSynEdit
-
More from me
winni
Hero Member
Posts: 3197
Re: Tried to colorize 1-px line under TMainMenu, need help
«
Reply #1 on:
September 19, 2020, 03:30:24 pm »
Hi!
Your Rectangle has a height of zero:
R.Bottom := R.Top + 1;
This will fill the area from R.Top to R.Bottom -1. That is zero.
Do:
R.Bottom := R.Top + 2;
Allways the same trouble with the Integer-Rects.
Winni
PS.: Or just draw a line
«
Last Edit: September 19, 2020, 03:33:23 pm by winni
»
Logged
Handoko
Hero Member
Posts: 5049
My goal: build my own game engine using Lazarus
Re: Tried to colorize 1-px line under TMainMenu, need help
«
Reply #2 on:
September 19, 2020, 03:48:38 pm »
I ever had such problem too in the past.
Logged
AlexTP
Hero Member
Posts: 2287
Re: Tried to colorize 1-px line under TMainMenu, need help
«
Reply #3 on:
September 19, 2020, 04:15:05 pm »
@winni, thanks, edited the 1st post - it still don't work...
Logged
CudaText editor
-
ATSynEdit
-
More from me
wp
Hero Member
Posts: 11445
Re: Tried to colorize 1-px line under TMainMenu, need help
«
Reply #4 on:
September 19, 2020, 04:39:58 pm »
In Lazarus the WM* messages were renamed to LM*. Please try to catch message LM_NCPAINT.
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Widgetset
»
Win32/64
»
Tried to colorize 1-px line under TMainMenu, need help
TinyPortal
© 2005-2018