The MASM Forum Archive 2004 to 2012

General Forums => The Laboratory => Topic started by: hutch-- on August 08, 2011, 01:40:36 AM

Title: Image button demo.
Post by: hutch-- on August 08, 2011, 01:40:36 AM
This is just a test piece using the masm32 library module "BmpButton" to test if it would handle RGB/Alpha bitmaps. The test piece requires a manifest file to display the images correctly but on my XP dev box it works fine. Note that with the 64 pixel button size the RGB/A images are 16k each so each button has 32k of image data. The Stopwatch button uses a different image from up to down to show why its useful to have 2 image buttons, even at the expense of a much larger resource section. If you use Jeremy Collake's PECompact it drops the file size from 203k to about 32k which is OK by todays Vista/Win7 standards.

This demo will work on Win2000 but the images do not have RGB/A support and will have black backgrounds.
Title: Re: Image button demo.
Post by: dedndave on August 08, 2011, 10:41:05 AM
i get nothing
it hangs, i guess, there is no system-menu close box
i am guessing that means it never gets past create
Title: Re: Image button demo.
Post by: hutch-- on August 08, 2011, 10:59:52 AM
Unusual, from memory you are running XP SP2 on a PIV, does the window show at all ? It should show 6 buttons stacked vertically.
Title: Re: Image button demo.
Post by: dedndave on August 08, 2011, 11:42:26 AM
prescot w/htt - 1 gb ram
XP MCE 2005 SP3

i know - i need to buy some ram   :P

(http://www.masm32.com/board/index.php?action=dlattach;topic=17195.0;id=9564)



the attachment is the above PNG image renamed to ZIP
Title: Re: Image button demo.
Post by: dedndave on August 08, 2011, 12:01:14 PM
i changed WS_OVERLAPPED to WS_OVERLAPPEDWINDOW
now i can close it without the task manager

i commented out the BmpButton calls
everything seems to be ok with the WndProc and message loop

the BmpButton calls don't hang - they just don't make buttons

the ones in \masm32\examples work ok
Title: Re: Image button demo.
Post by: FORTRANS on August 08, 2011, 12:37:42 PM
Hi,

   Works as described on my Win 2000 machine.  Large icons
that report numbers when clicked or exit.  Works(?) as Dave
describes on an XP machine, blank.

Regards,

Steve N.
Title: Re: Image button demo.
Post by: hutch-- on August 08, 2011, 01:20:50 PM
OK, on my XP SP3 box it looks like this.

(http://www.masm32.com/private/image.jpg)

If you have the software to open them, try opening any of the paired bitmaps that make up the buttons. The images are all RGB/Alpha channel bitmaps and on this dev box I run the 32 bit colour depth for normal display.

this is what it looks like on Win7 64 bit with its cheesy Aero interface.

(http://www.masm32.com/private/butnapp.jpg)
Title: Re: Image button demo.
Post by: hutch-- on August 08, 2011, 03:07:45 PM
 have done a couple of minor changes to see what the problem may be on Daves box. I added a titlebar exit button and placed a messagebox after each button create function call to see if the button is actually being created rather than if it does or does not display correctly. It should show 6 message boxes with 6 handles before the main window shows.

It would be useful to know what screen colour depth is being used as these images are all RGB/Alpha and I don't have a machine set up with low resolution display. All of my boxes have half gig video cards that run 32 bit colour.
Title: Re: Image button demo.
Post by: dedndave on August 08, 2011, 03:31:02 PM
same thing, Hutch
i have made a test program with the BmpButton and ButtonProc functions internal
let me see what the return values are.....
Title: Re: Image button demo.
Post by: hutch-- on August 08, 2011, 03:40:47 PM
Dave,

The handles displayed in the 6 message boxes will tell you if the control was created or not.
Title: Re: Image button demo.
Post by: jj2007 on August 08, 2011, 03:49:33 PM
Hutch,

XP SP2: Blank box, BmpButton errors with INVALID_WINDOW_HANDLE.
Title: Re: Image button demo.
Post by: dedndave on August 08, 2011, 03:53:54 PM
ok - you'll be happy to know that there is no problem with the BmpButton function   :bg

here is the mod i made to the main program...
start:
        push    ICC_WIN95_CLASSES
        push    sizeof INITCOMMONCONTROLSEX
        INVOKE  InitCommonControlsEx,esp
        pop     ecx
        pop     edx


it works as requested, now   :U
Title: Re: Image button demo.
Post by: dedndave on August 08, 2011, 03:59:18 PM
what we need is a little routine to make the second image from the first...
        INVOKE  MakeBtnPair,nIdBitmap,nIdNew,nXoffset,nYoffset
        INVOKE  BmpButton,hWnd,50,50,edx,eax,900

that would cut the size in half   :U
Title: Re: Image button demo.
Post by: dedndave on August 08, 2011, 04:09:07 PM
by the way, InitCommonControls works also
it does not have to be InitCommonControlsEx
Title: Re: Image button demo.
Post by: hutch-- on August 08, 2011, 04:21:44 PM
Thanks,

So it is an InitCommonControls() problem, I have seen this before and Erol helped out with his Turkish version. Strange that it does not occur on my US English XP SP3 or US version of Win7 64.

I don't get the idea of copying the up image to the down image, all of the ones used shifted 1 pixel down and across.
Title: Re: Image button demo.
Post by: dedndave on August 08, 2011, 04:27:50 PM
well - you include both up and down images in the resource
you could make the assumption that the pixel at 0,0 is the background colour
let the caller specify the offset distance (nXoffset, nYoffset)
then, create the second image from the first
that way, only one image per button would be needed in the resource
in this case, that would cut about 96 kb off the exe file size

you could get fancy and offer options like invert colours, etc
Title: Re: Image button demo.
Post by: dedndave on August 08, 2011, 04:45:29 PM
you could offer other effects, too, like R, G, B shifts and XOR's

i suppose if you used 256-colour GIF or PNG, or better yet, ICO images, you wouldn't have to go through all that   :P
the files are much smaller, offer transparency, and for an icon-sized image, 256 is plenty
Title: Re: Image button demo.
Post by: ToutEnMasm on August 08, 2011, 05:06:33 PM

On my XP sp3 ,Just a window.No Button
Title: Re: Image button demo.
Post by: Vortex on August 08, 2011, 05:07:32 PM
Same as ToutEnMasm. One blank window with no button. OS = Win XP SP3
Title: Re: Image button demo.
Post by: dedndave on August 08, 2011, 05:17:00 PM
try this one guys
i took Hutch's "imgbtn2" file...
added InitCommonControls
removed a few start-up message boxes that were used in testing
Title: Re: Image button demo.
Post by: ToutEnMasm on August 08, 2011, 05:21:55 PM

Ok with imgbtn3.zip
Title: Re: Image button demo.
Post by: Vortex on August 08, 2011, 05:25:10 PM
Hi Dave,

Thanks, it works fine.
Title: Re: Image button demo.
Post by: dedndave on August 08, 2011, 06:34:45 PM
i suspect it has something to do with which files are present in the WinSxS folder
there is a manifest, so it expects InitCommonControls with some SxS combinations and not with others
lately, i have been including InitCommonControls as a rule   :P
if i don't need it now, likely that i will later
Title: Re: Image button demo.
Post by: ToutEnMasm on August 08, 2011, 07:06:09 PM
Quote
it expects InitCommonControls with some SxS combinations and not with others
lately, i have been including InitCommonControls as a rule   

It's a rule when use is made of the ressource with
Quote
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"

This init works also
Quote
      mov InitCtrls.dwSize,sizeof INITCOMMONCONTROLSEX
      mov InitCtrls.dwICC,0   ;remplacer 0 par un identifiant
      invoke InitCommonControlsEx,addr InitCtrls ;cumulatif
Title: Re: Image button demo.
Post by: lingo on August 08, 2011, 10:18:03 PM
invoke InitCommonControls is slow.... :lol
Should be dd InitCommonControls
start:
    ;  invoke InitCommonControls

      mov hInstance,   rv(GetModuleHandle, NULL)
      mov CommandLine, rv(GetCommandLine)
      mov hIcon,       rv(LoadIcon,hInstance,500)
      mov hCursor,     rv(LoadCursor,NULL,IDC_ARROW)
      mov sWid,        rv(GetSystemMetrics,SM_CXSCREEN)
      mov sHgt,        rv(GetSystemMetrics,SM_CYSCREEN)
      call Main
      invoke ExitProcess,eax
      dd     InitCommonControls 
Title: Re: Image button demo.
Post by: hutch-- on August 09, 2011, 02:32:21 AM
It is pretty much the case that if you want a single image custom control, you would write it differently and it would peform something like a BS_BITMAP button but you cannot do the same things with a single bitmap control. The purpose of the test was to test RGB/Alpha bitmaps which accurately control transparency where the 8, 16 and 24 bit colour images cannot and generally have lousy edges with a notchy appearance.

RE: The use of the InitCommonControls() to initialise the common control library, I would like to see better documentation for the later OS versions and have some predictable method of knowing what works on what OS version. I started using the Ex version because it can initialise a larger number of common controls but from experience it behaves differently on different language Windows versions. Strangely enough the original example worked correctly on both my XP SP3 box and the Win7 64 bit box.
Title: Re: Image button demo.
Post by: dedndave on August 09, 2011, 02:44:51 AM
Hutch,
for the sake of comparison, here is what i have in WinSxS...
6.0.0.0
6.0.2600.2180
6.0.2600.5512
6.0.2600.5705

i am probably missing one that you have   :P

lingo
does it really matter how many clock cylces InitCommonControls takes ?
the programs i write that call it come up plenty fast
it's not like i stick in a loop or anything   :lol
Title: Re: Image button demo.
Post by: hutch-- on August 09, 2011, 04:11:40 AM
Dave,

My WinSx has a mountain of stuff in it but nothing like you have mentioned, there are two entries for common controls that have 2 different versions of the DLL in them, could you elaborate some ?
Title: Re: Image button demo.
Post by: ToutEnMasm on August 09, 2011, 06:26:43 AM

Test this one,I have rewite it and he use the InitCommonControlsEx to initialise
Title: Re: Image button demo.
Post by: hutch-- on August 09, 2011, 08:34:29 AM
Works OK here but no source.
Title: Re: Image button demo.
Post by: dedndave on August 09, 2011, 10:07:28 AM
works here, Yves

Hutch,
those are the CommonControl versions that i have
x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.0.0_x-ww_1382d70a
x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9
x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83
x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5705_x-ww_36cfed49
Title: Re: Image button demo.
Post by: ToutEnMasm on August 09, 2011, 10:49:11 AM
Here is the source code
Added code to test version of dll
Title: Re: Image button demo.
Post by: dedndave on August 09, 2011, 11:55:33 AM
i am learning that it doesn't always help to see the source   :lol
Title: Re: Image button demo.
Post by: ToutEnMasm on August 09, 2011, 12:57:37 PM

Quote
i am learning that it doesn't always help to see the source   

The source code of the windows has been tested here a number of time.That is what I call learn something.
It is good,I keep it and I re-use it.
Many details (styles,extended styles,functions,proc ..) can change if you create your code at each time you need it.
It is what is missing in the masm32 package , some good code to made a good window at the fist time.
What i call a good code,is a code modify and  tested further times.
The question is how learn something when all is changed at each time ???
Title: Re: Image button demo.
Post by: dedndave on August 09, 2011, 04:15:40 PM
i wasn't refering to the code so much, Yves
i was refereing to the use of French for function and variable names   :bg
i can only imagine how hard it must have been for you to learn the API
it's ok if full words are used, like "CreateWindow" - at least you can split that one up and use google translate   :P
but, i often use shortened words in function and variable names, like "MkBgImg" or something   :'(

Hutch has a tool that he has posted under the names "CodeGen" and "ProStart"
as you mentioned, it would be cool if it used external text files to build from
that way, you could modify them as time goes on and make improvements or get different window types, styles, and so on
i guess you really don't need a program for that - just start a collection

when i first started learning GUI programming, i used those programs, along side Iczelion's tutorials
they did help me learn a lot   :U
Title: Re: Image button demo.
Post by: hutch-- on August 10, 2011, 01:15:32 AM
Templating systems that are configurable are technically trivial to make but are a disaster for people who do not understand the code in detail. The two code generators in MASM32 are binary files to ensure that the written code cannot be messed up. The later scripting engine in QE is easily capable of producing complete working templates including the binary files like icons and toolbar bitmaps but I don't think many have bothered as it involves learning how to use the scripting engine language.
Title: Re: Image button demo.
Post by: dedndave on August 10, 2011, 02:26:18 AM
hmmmm - that sounds interesting
i may have to look into it   :U
Title: Re: Image button demo.
Post by: vanjast on August 30, 2011, 08:45:44 PM
I've been messing around with that, but editing the template result in a big way.
Maybe it might be an idea to further advance the template with regard to the visual I/F...
- including the resource editor, icon/bmp editor for toolbar and app icons..

Just an idea
:8)
Title: Re: Image button demo.
Post by: ToutEnMasm on August 31, 2011, 05:53:58 PM
Quote
The later scripting engine in QE is easily capable of producing complete working templates including the binary files like icons and toolbar bitmaps but I don't think many have bothered as it involves learning how to use the scripting engine language.
The more simple way is to copy the files from one folder to another.NO SCRIPT and the files in the folder can be easily modify if needed.
Title: Re: Image button demo.
Post by: hutch-- on August 31, 2011, 05:59:25 PM
Yves,

The script is much faster, names everything correctly and dumps it where you want.
Title: Re: Image button demo.
Post by: ToutEnMasm on September 01, 2011, 05:11:54 AM
Quote
The script is much faster, names everything correctly and dumps it where you want
In this case,a tool to made a script with  the files project in a directory could be useful.
I think it isn't too much hard to do and useful.