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
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
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
File not open??? Why?
by
KodeZwerg
[
Today
at 08:07:49 am]
BUG: OnExit and ComboBox
by
bpranoto
[
Today
at 07:53:55 am]
Controls inside the form ...
by
dsiders
[
Today
at 07:37:07 am]
Faster responding Code Ex...
by
KodeZwerg
[
Today
at 07:00:19 am]
A few demos on how to use...
by
Thaddy
[
Today
at 06:47:29 am]
CheckComboBox Item Width
by
seany
[
Today
at 04:46:37 am]
Menu Bar Text Color
by
seany
[
Today
at 04:22:28 am]
Links in forum posts
by
440bx
[
Today
at 03:05:40 am]
DBCheckbox show some text...
by
eldonfsr
[
Today
at 03:04:00 am]
Is there a function calle...
by
OC DelGuy
[
Today
at 01:55:20 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Tried to colorize 1-px line under TMainMenu, need help (Read 2941 times)
AlexTP
Hero Member
Posts: 1997
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: 3187
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: 4764
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: 1997
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: 10469
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