From 91a17279746093193bf0af652351e10b0b86c080 Mon Sep 17 00:00:00 2001
From: nakst <>
Date: Tue, 23 Nov 2021 08:46:47 +0000
Subject: [PATCH] add paint foreground message

---
 desktop/gui.cpp   | 4 ++++
 desktop/os.header | 2 ++
 2 files changed, 6 insertions(+)

diff --git a/desktop/gui.cpp b/desktop/gui.cpp
index 68c853d..2ba2fbe 100644
--- a/desktop/gui.cpp
+++ b/desktop/gui.cpp
@@ -1630,6 +1630,10 @@ void EsElement::InternalPaint(EsPainter *painter, int paintFlags) {
 			}
 		}
 
+		m.type = ES_MSG_PAINT_FOREGROUND;
+		m.painter = painter;
+		EsMessageSend(this, &m);
+		
 		// Let the inspector draw some decorations over the element.
 
 		painter->clip = oldClip;
diff --git a/desktop/os.header b/desktop/os.header
index f75b462..dcf12c9 100644
--- a/desktop/os.header
+++ b/desktop/os.header
@@ -961,6 +961,8 @@ enum EsMessageType {
 	ES_MSG_GET_ACCESS_KEY_HINT_BOUNDS	= 0x2029	// Get the bounds to display an access key hint.
 	ES_MSG_UI_SCALE_CHANGED			= 0x202A	// The UI scale has changed.
 	ES_MSG_TRANSITION_COMPLETE		= 0x202B	// The transition started with EsElementStartTransition completed.
+	ES_MSG_PAINT_FOREGROUND			= 0x202C	// Paint the element's foreground. Sent after the children are painted.
+								// The width/height parameters of EsPainter may be larger than expected - this includes the 'non-client' area.
 
 	// State change messages: (causes a style refresh)
 	ES_MSG_STATE_CHANGE_MESSAGE_START	= 0x2080