The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => RadAsm Support Forum => Topic started by: Shooter on December 29, 2010, 04:45:35 PM

Title: Font and Color
Post by: Shooter on December 29, 2010, 04:45:35 PM
How does one change the color of a static control using RadASM 3.x? I've tried
INVOKE SetTextColor,IDC_STC6,10
but I have no idea what numbers equate to what colors, and the font is still black on gray. I didn't find anything relating to colors in the dialog editor.

Thanks
-Shooter
Title: Re: Font and Color
Post by: dedndave on December 29, 2010, 04:57:36 PM
well - the 1st parameter to that function is a handle to the DC
the second parameter is the color value:
65536*blue + 256*green + red
(red, green, and blue = 0 to 255)

SetTextColor
http://msdn.microsoft.com/en-us/library/dd145093%28v=vs.85%29.aspx

you might use these functions with it...

SetBkColor
http://msdn.microsoft.com/en-us/library/dd162964%28v=VS.85%29.aspx

SetBkMode
http://msdn.microsoft.com/en-us/library/dd162965%28v=VS.85%29.aspx

there are a few other functions, too - but those will get you started

oh - and on the left side of the webpage - play with the menus   :bg
there are references to keep you busy all day
Title: Re: Font and Color
Post by: Gunner on December 29, 2010, 05:41:45 PM
radasm is not vb, you cannot change individual control fonts or colors with dialog editor...  you have to do it in code...
Title: Re: Font and Color
Post by: Shooter on December 29, 2010, 06:23:52 PM
I take it that hDc and ItemID are not the same things?
Title: Re: Font and Color
Post by: dedndave on December 29, 2010, 07:11:23 PM
i think the IDC_STC6 value is an EQUate from someplace - a dialog box static identifier (=1009 - go figure)
should be in one of the inc files, like windows.inc, but i don't find it
i am not sure if it's a handle or not

hDc is the handle to the device context
if you don't already have it.....
        INVOKE  GetDC,0
        mov     hDc,eax
;
;
        INVOKE  ReleaseDC,0,hDc
Title: Re: Font and Color
Post by: Gunner on December 29, 2010, 07:59:39 PM
when i get home in about 3 hours i will be of more help, ther are 2 messages you need to handle to change the colors also... i don't  remember them..
Title: Re: Font and Color
Post by: Shooter on December 29, 2010, 08:57:19 PM
Dave,
I just can't seem to get past that hDc. IDC_STC6 is indeed an EQU set to 108, the ItemID of the static text that I'm wanting to change.

I found a tutorial on Iczelion's (http://www.asmcommunity.net/book/Iczelion_Tutorial_5_%28en%29) site, but it sure seems like an awful lot of work involved for something seemingly so simple.

Rob, I look forward to yet another lesson in the fine arts of Assembly.  :bg
Title: Re: Font and Color
Post by: jj2007 on December 29, 2010, 09:08:43 PM
You need to respond to the right message.

SWITCH uMsg
...
CASE WM_CTLCOLORSTATIC
mov eax, lParam
.if eax==hStatus
invoke SetTextColor, wParam, 0000D0h    ; BGR
invoke SetBkMode, wParam, TRANSPARENT
invoke GetSysColorBrush, COLOR_BTNFACE
ret
.endif
Title: Re: Font and Color
Post by: Gunner on December 29, 2010, 09:49:55 PM
Ah, I see JJ beat me too it  :8)

The second message I was thinking of is WM_SYSCOLORCHANGE
I think you need to process that also...
Title: Re: Font and Color
Post by: Shooter on December 29, 2010, 10:10:56 PM
I'm confused as to what sets hStatus.
Title: Re: Font and Color
Post by: Gunner on December 29, 2010, 10:20:09 PM
Wait one... found something in my files:

This is from Bill Cravener  :U

hStatus is the handle to your static control... I usually get the handles in WM_INITDIALOG
invoke GetDlgItem,hWin,IDC_STATIC1
mov hStatus, eax
Title: Re: Font and Color
Post by: Shooter on December 29, 2010, 11:32:11 PM
Question:
If I comment out the last line here:
            invoke SetBkMode,wParam,TRANSPARENT
            invoke SetTextColor,wParam,Red
            ;invoke GetStockObject,BLACK_BRUSH

Nothing changes. But if I include it, while the text itself does change, the background is black, which is not what I want (I want just plain old gray like the rest of the window).

I looked up GetStockObject, but didn't really get why it's needed in my case, nor did I find how to use it for what I want to achieve. Perhaps that's because I don't understand it's use here just yet.

Got any advice?
Title: Re: Font and Color
Post by: Gunner on December 29, 2010, 11:35:33 PM
What exactly do you want to do?  What color do you want the text of the static control?  What color do you want the background of the static control?
Title: Re: Font and Color
Post by: Gunner on December 29, 2010, 11:43:40 PM
 invoke GetStockObject,WHITE_BRUSH
                    ret
Title: Re: Font and Color
Post by: Shooter on December 29, 2010, 11:46:08 PM
Quote from: Gunner on December 29, 2010, 11:35:33 PM
What exactly do you want to do?  What color do you want the text of the static control?  What color do you want the background of the static control?

Well, I want red text on the normal gray background of the dialog box.

This is supposed to check and see if the Screen Saver is turned on, which we don't want in this case, and if it is, I want the text to stand out as a warning. Red on Gray.
Title: Re: Font and Color
Post by: Gunner on December 29, 2010, 11:47:30 PM
Quote from: Shooter on December 29, 2010, 11:32:11 PM
I looked up GetStockObject, but didn't really get why it's needed in my case, nor did I find how to use it for what I want to achieve. Perhaps that's because I don't understand it's use here just yet.

Got any advice?

Well, it is not needed, you can use CreateSolidBrush to create a brush of the color you want....  and what they both do is return a colored brush the os uses to paint the background
BUT if you use CreateSolidBrush, you have to delete it on WM_CLOSE with DeleteObject

WM_CTLCOLORSTATIC Notification

Return Value

If an application processes this message, the return value is a handle to a brush that the system uses to paint the background of the static control.

Title: Re: Font and Color
Post by: dedndave on December 29, 2010, 11:48:05 PM
COLOR_WINDOW+1

there is a list of EQUates starting with "COLOR_" in windows.inc
you can use it directly but, for some reason that i haven't figured out, you always have to add 1
Title: Re: Font and Color
Post by: Shooter on December 29, 2010, 11:49:47 PM
BINGO!!! WE HAVE A WINNER! NULL_BRUSH to the rescue! lol
Title: Re: Font and Color
Post by: jj2007 on December 29, 2010, 11:50:52 PM
Quote from: Shooter on December 29, 2010, 11:49:47 PM
BINGO!!! WE HAVE A WINNER! NULL_BRUSH to the rescue! lol

Try changing your text several times...
Title: Re: Font and Color
Post by: Shooter on December 29, 2010, 11:53:08 PM
Quote from: jj2007 on December 29, 2010, 11:50:52 PM
Try changing your text several times...

What, like one color per second or something?
Title: Re: Font and Color
Post by: jj2007 on December 29, 2010, 11:54:50 PM
Not the colour, the text. NULL_BRUSH means that your background will never be painted, After a while, it looks ugly. My example works fine.
Title: Re: Font and Color
Post by: dedndave on December 29, 2010, 11:55:08 PM
what he's telling you is - that method is not stable
Title: Re: Font and Color
Post by: Shooter on December 29, 2010, 11:56:59 PM
Quote from: jj2007 on December 29, 2010, 11:54:50 PM
Not the colour, the text. NULL_BRUSH means that your background will never be painted, After a while, it looks ugly. My example works fine.

Quote from: dedndave on December 29, 2010, 11:55:08 PM
what he's telling you is - that method is not stable

So if I had a static text that changes a lot, there would be bits of color left over from the previous text if the new text didn't cover it up?
Title: Re: Font and Color
Post by: dedndave on December 30, 2010, 12:04:28 AM
it may be best to try it out
not that it is a good thing - but it may help you understand the mechanics

i am working on a little program
i can grab different colors for foreground and background
if i want different background colors in different places, i can do that
and it seems to work well

all the colors are handled with these 4 functions

GetStockObject
SetTextColor
SetBkColor
SetBkMode

and - i could also use this
Quotethere is a list of EQUates starting with "COLOR_" in windows.inc
you can use them directly but, for some reason that i haven't figured out, you always have to add 1
example:
COLOR_WINDOW+1
Title: Re: Font and Color
Post by: Shooter on December 30, 2010, 12:10:01 AM
Quote from: dedndave on December 30, 2010, 12:04:28 AM
GetStockObject
SetTextColor
SetBkColor
SetBkMode

Currently, this is how I'm driving the text color (I haven't tried moving this into the "If Screen Saver is On... change color" yet):
.elseif eax==WM_CTLCOLORSTATIC
invoke GetDlgItem,hWin,IDC_STC6
.if eax==lParam
            invoke SetBkMode,wParam,TRANSPARENT
            invoke SetTextColor,wParam,Red
            invoke GetStockObject,NULL_PEN
ret
.endif
Title: Re: Font and Color
Post by: dedndave on December 30, 2010, 12:14:10 AM
GetStockObject returns a handle to the requested object in EAX
you aren't doing anything with that handle
and, before you return, i think you want EAX to be 0
Title: Re: Font and Color
Post by: Gunner on December 30, 2010, 12:23:29 AM
No, if you return 0 in eax for WM_CTLCOLORSTATIC that is the same a NULL_BRUSH
You have to return a valid handle to a brush so the OS can paint the background...
What he has is the correct way
Title: Re: Font and Color
Post by: dedndave on December 30, 2010, 12:25:23 AM
thanks Rob - my bad
i thought WndProc had to return 0 for handled messages
i am a n00b, but i am learning
Title: Re: Font and Color
Post by: Shooter on December 30, 2010, 12:30:57 AM
Quote from: Gunner on December 30, 2010, 12:23:29 AM
No, if you return 0 in eax for WM_CTLCOLORSTATIC that is the same a NULL_BRUSH
You have to return a valid handle to a brush so the OS can paint the background...
What he has is the correct way

I have to admit, I'm lost as to the purpose of GetStockObject, let alone why in that example you gave me it's at the end before returning. I do however know that if it's omitted, nothing changes.

Nevermind, I get it now:
QuoteThe WM_CTLCOLORSTATIC message is sent to the parent window of a static control when the control is about to be drawn. By responding to this message, the parent window can use the given device context handle to set the text and background colors of the static control.
Title: Re: Font and Color
Post by: Gunner on December 30, 2010, 12:32:29 AM
Quote from: dedndave on December 30, 2010, 12:25:23 AM
i am a n00b, but i am learning

http://www.urbandictionary.com/define.php?term=n00bs
That does not sound like you Dave  :P

Gotta check messages to see what they need to have in eax when done processing... TRUE, FALSE, hBrush, breakfast....etc  :bg
Title: Re: Font and Color
Post by: Gunner on December 30, 2010, 12:34:42 AM
Quote from: Shooter on December 30, 2010, 12:30:57 AM
Quote from: Gunner on December 30, 2010, 12:23:29 AM
No, if you return 0 in eax for WM_CTLCOLORSTATIC that is the same a NULL_BRUSH
You have to return a valid handle to a brush so the OS can paint the background...
What he has is the correct way

I have to admit, I'm lost as to the purpose of GetStockObject, let alone why in that example you gave me it's at the end before returning. I do however know that if it's omitted, nothing changes.

What is not to understand?  You are not painting the background yourself (although you can) so you have to tell the OS what brush to paint the background with...  GetStockObject gets a handle to a brush you choose, and the OS uses that to paint the background...  :dazzled:
Title: Re: Font and Color
Post by: Shooter on December 30, 2010, 12:37:17 AM
Quote from: Gunner on December 30, 2010, 12:32:29 AM
Quote from: dedndave on December 30, 2010, 12:25:23 AM
i am a n00b, but i am learning

http://www.urbandictionary.com/define.php?term=n00bs
That does not sound like you Dave  :P

Hahaha, I like number 3 on that list.  :bg


Rob, I guessed you missed my edit a few moments ago.
Title: Re: Font and Color
Post by: Shooter on December 30, 2010, 12:47:28 AM
OK, one more question about all of this: So far, my text's color is being changed based on the
DlgProc proc hWin:HWND,uMsg:UINT,wParam:WPARAM,lParam:LPARAM
mov eax,uMsg
.if eax==WM_INITDIALOG
.elseif eax==WM_CTLCOLORSTATIC
(code)
.endif
mov eax,TRUE
ret
DlgProc endp


What if I wanted to change the color of the text based upon a button click or some other event?



By the way, I did make one small change based upon what you said about stability:
.elseif eax==WM_CTLCOLORSTATIC
invoke GetDlgItem,hWin,IDC_STC6
.if eax==lParam
invoke SetBkMode,wParam,TRANSPARENT
invoke SetTextColor,wParam,Red
;invoke GetStockObject,NULL_PEN
invoke GetSysColorBrush, COLOR_BTNFACE
ret
.endif

-Shooter
Title: Re: Font and Color
Post by: donkey on December 30, 2010, 07:43:28 AM
Quote from: dedndave on December 29, 2010, 11:48:05 PM
COLOR_WINDOW+1

there is a list of EQUates starting with "COLOR_" in windows.inc
you can use it directly but, for some reason that i haven't figured out, you always have to add 1

Because 0 (COLOR_SCROLLBAR) is reserved for no brush by CreateWindowEx (WNDCLASSEX.hbrBackground), which you use if want to paint your own background. By adding 1 you can still use all of the system color indexes, simple as that.
Title: Re: Font and Color
Post by: donkey on December 30, 2010, 09:20:11 AM
IDs, Handles and device contexts.

It is incredibly important to understand the role of objects in Windows, they are at the heart of the OS. For this discussion I will call the OS Win32 as opposed to Windows since it tends to confuse things when both the object and OS have the same names.

Reading this thread has me thinking that Shooter is having an issue grasping a few basic concepts in Win32. One of the primary ones is the difference between an ID and a handle which is related to the concept of objects in general. When you create a window in your editor of choice (be it RadASM, WinAsm, EasyCode or any other) you assign it an ID. A window is simply an object that you can manipulate using messages and functions, it can be a button, static, listbox or another control or it can be a container, like a dialog or window. The WNDCLASSEX structure describes certain properties of the window to Win32, for example how it is redrawn, what colors to use and the address of its message processing procedure. The ID that you assign to the window at creation is not necessarily unique, for example two dialogs can both have a button with the identifier IDOK (1) so how can Win32 distinguish them in order to make sure you are manipulating the right button ? It assigns a unique handle to every object that your program creates, references or uses. Windows, dialogs and controls fall into the winuser (User32) family (called a namespace) of objects and are the primary graphical interface of the OS. Another family (or namespace) of objects are responsible for the actual drawing of the windows and controls, those are the GDI objects, they provide a consistent interface between your program and the device you are drawing on, normally the screen but it could also be a printer etc... GDI objects include Pens and Brushes among other things and like all objects they are assigned a unique handle to identify them to Win32. When you use a pen or a brush you must specify a drawing mode or use the default, you do this with functions such as SetBkMode and other GDI level functions. Drawing something is a very complex process and the GDI is designed to make it easy by using Device Contexts, the device context can be seen as a Rosetta Stone that is used to translate the GDI commands to something the video card or printers driver is capable of and can execute. If the user mode driver through the Device Context informs the GDI that it is not capable of completing a specific command the GDI will break it down into steps that it can complete called ROPs. You can see an example of raw ROPs when you bitblt a graphic to the screen. The major advantage of all of this "under the hood" complexity is that for the most part all drawing is device independent, that is that whatever your final output device, the same GDI functions will yield the approximately same results. For that reason Win32 requires that you pass every drawing command through a device context which in turn is used to "translate" for the device driver. Device Contexts can also be seen as objects and therefore are assigned a unique handle to identify them. Other types of objects are synchronization objects, files, folders, devices, processes, memory, threads and pretty much everything else in Win32 that is handled through the Executive. Every object created by the executive consumes resources in your computer and you can quickly run out of available resource handles and memory if you misuse them, for this reason any objects you create must be released with the appropriate destructor function, for example DeleteObject for brushes or DestroyWindow for windows. In some cases Win32 creates the object and handles its destruction as is the case in the handles returned from GetStockObject, for those objects it is important not to call a destructor function, they were not created by you and therefor should not be destroyed by you. When it comes to windows and controls, you can generally get away with not destroying them, Win32 will do that when you close the window or terminate the process. Most entries at MSDN for creating objects specify its destructor API somewhere in the notes so read the entire entry and it will save you many a headache in the future.

Edgar
Title: Re: Font and Color
Post by: dedndave on December 30, 2010, 12:03:52 PM
very nice, Edgar
thanks for taking the time   :U
very clear and concise
Title: Re: Font and Color
Post by: Shooter on December 30, 2010, 05:39:52 PM
Edgar,
WOW! Very informative (took me four times to read through it all though, even after breaking it down into paragraphs).

I've gotten the gist about Handles and IDs, but there is still so much I'm not sure of. For example, I know that when an event occurs, a message is sent so that it can be handled appropriately (via 'traps' like WM_COMMAND). My confusion about that is knowing what 'traps' are available for each device, control, container, etc.

As was in this current thread's case, I had no knowledge about WM_CTLCOLORSTATIC, or even where to look for it. MSDN's site lists a few (39,500,000) informative pages about "Static Text", but I'm a slow reader and get frustrated after the first million or so pages.  :wink

The point I'm trying to convey is that while there are some very well documented help files and sites (and some poorly ones as well), there doesn't seem to be a very well organized manner in which to search said locations. If you know of a link or help file on MSDN that is found only via the phrase "Static Text" and contains WM_CTLCOLORSTATIC, I'd love to see it... possibly I'll learn the structure of the type of help files I'm needing for future reference.  :bg

QuoteA static control, or an edit control that is read-only or disabled, sends the WM_CTLCOLORSTATIC message to its parent window when the control is about to be drawn

So my other question still remains:
QuoteWhat if I wanted to change the color of the text based upon a button click or some other event?

If I included a button to change IDC_STC3's color, I'd add an event handler for that button and pretty much do as I've done before?

Something that confuses me about this code, and it's blocking me from creating a PROC using it...
Quoteinvoke GetDlgItem,hWin,IDC_STC3
.if eax==lParam
     invoke SetBkMode,wParam,TRANSPARENT
     invoke SetTextColor,wParam,Purple
     invoke GetSysColorBrush, COLOR_BTNFACE
     ret
.endif
What is lParam holding that is needed to match eax, and how do I pass this to the PROC I'm trying to build?
-Shooter
Title: Re: Font and Color
Post by: donkey on December 31, 2010, 03:53:24 AM
Hi Shooter,

To begin with if you want to know anything about controls you go to the source, MSDN:

http://msdn.microsoft.com/en-us/library/bb773173%28v=VS.85%29.aspx

for example the static control can be found under Windows Controls\Control Library\Static Control (http://msdn.microsoft.com/en-us/library/bb760769%28v=VS.85%29.aspx). as you can see it discusses how to use the control, lists all messages and functions related to it and even provides sample code in C. Its just a matter of looking in the right place, something that you will eventually become adept at.

For the lParam being checked against EAX, RTFM. You first have to understand that GetDlgItem returns the window handle associated with the ID number of a control. So at the time of the .IF comparison EAX contains the handle associated with IDC_STC3 in other words the handle to the static you want to manipulate. Since the WM_CTLCOLORSTATIC message documentation at MSDN states:

QuotelParam

    Handle to the static control.

That says that when the message is sent the handle to the static is present in the lParam position on the stack. Why would Windows bother to do this ? Well, you might have 2 or even hundreds of statics on a given dialog and must be able to respond to the correct one. In order to ensure that you can do this Windows identifies the static with its unique handle and by comparing it with EAX which contains the value of the handle you are interested in you can determine whether the static that is about to be redrawn is the one you want to color, if not then you skip it.

To change the color based on a button click you would toggle an application defined flag when a button is pressed then call InvalidateRect (http://msdn.microsoft.com/en-us/library/dd145002%28v=vs.85%29.aspx) to invalidate the static, forcing Windows to redraw it. At that point a WM_CTLCOLORSTATIC is sent and you can set the text color based on the value of your toggle flag.

Edgar
Title: Re: Font and Color
Post by: jj2007 on December 31, 2010, 09:19:12 AM
Quote from: donkey on December 31, 2010, 03:53:24 AM
if you want to know anything about controls you go to...

"go to Edgar" would be a good option, too - you should teach Windows :U

If Edgar is absent, googling for MSDN WhatEverFunction is also a good choice.
Title: Re: Font and Color
Post by: Shooter on January 02, 2011, 05:14:45 PM
Quote from: jj2007 on December 31, 2010, 09:19:12 AM
Quote from: donkey on December 31, 2010, 03:53:24 AM
if you want to know anything about controls you go to...

"go to Edgar" would be a good option, too - you should teach Windows :U

If Edgar is absent, googling for MSDN WhatEverFunction is also a good choice.

Haha, I'm learning more and more from Edgar than I thought possible.
Title: Re: Font and Color
Post by: dedndave on January 02, 2011, 06:12:59 PM
we now consider you to be Edgar's pupil - hands off   :P
Title: Re: Font and Color
Post by: oex on January 02, 2011, 06:29:37 PM
aye aye there's a joke in there somewhere :lol
Title: Re: Font and Color
Post by: Shooter on January 02, 2011, 07:16:31 PM
Quote from: dedndave on January 02, 2011, 06:12:59 PM
we now consider you to be Edgar's pupil - hands off   :P


Hahahahahaha, wait, WHAT?  :eek