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
LAMW - simple esc/POS pri...
by
Insid3Code
[
Today
at 05:41:58 pm]
Custom control, dynamic r...
by
furious programming
[
Today
at 05:40:44 pm]
Make a part of text of a ...
by
vico
[
Today
at 05:20:51 pm]
[SOLVED] SQLite check if ...
by
Pe3s
[
Today
at 04:50:25 pm]
Changes in "Search Result...
by
n7800
[
Today
at 04:48:28 pm]
Hole punching - Step by S...
by
rvk
[
Today
at 04:43:23 pm]
Making a little chart app
by
phoenix27
[
Today
at 04:31:15 pm]
Are We Dead Yet?
by
Warfley
[
Today
at 03:28:19 pm]
Fast Base64 encoding/deco...
by
mikerabat
[
Today
at 03:05:26 pm]
Letters chopped off in hi...
by
Martin_fr
[
Today
at 02:48:07 pm]
Error in Sway
by
AlexTP
[
Today
at 02:02:39 pm]
Default and speed effect
by
Okoba
[
Today
at 01:39:38 pm]
LazPaint (alpha-blending,...
by
circular
[
Today
at 11:49:46 am]
Touchscreen selecting rec...
by
Jon Trepte
[
Today
at 11:44:03 am]
Would folks find these mi...
by
wp
[
Today
at 11:42:15 am]
Clean up at ide/include/i...
by
JuhaManninen
[
Today
at 11:34:06 am]
Code clean up at TFontMan...
by
wp
[
Today
at 11:09:11 am]
Why is the rectangle the ...
by
Tomi
[
Today
at 10:56:24 am]
PostgreSQL: typeinfo erro...
by
SymbolicFrank
[
Today
at 10:31:23 am]
How to use the Event Log?
by
WooBean
[
Today
at 09:13:35 am]
[SOLVED] SQLite Unique
by
Pe3s
[
Today
at 09:00:12 am]
Help for downloand file
by
Jurassic Pork
[
Today
at 08:33:10 am]
how to download fulling f...
by
greenzyzyzy
[
Today
at 04:12:30 am]
help choosing laptop
by
Weiss
[
Today
at 03:11:56 am]
using the create_lazarus_...
by
jshand2010
[
Today
at 02:01:04 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Tried to colorize 1-px line under TMainMenu, need help (Read 3054 times)
AlexTP
Hero Member
Posts: 2118
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: 4833
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: 2118
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: 10853
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