This was inspired by my recent thread about splitters, where I'd need some custom cursors for the user to drag them with. Not having any way of creating .CUR files, I fixed up an old (16-bit DOS) BMP-to-ICO conversion program. Also my first console app; about time. Easy peasy.
Adapting the old code was really easy, because .CUR files are almost identical to .ICO files except for 2 things:
- The type value is different (2 instead of 1)
- Two fields in the header are used for the "hotspot" position (x,y) instead of other things
So here it is. Use it if you want to make your own cursors out of bitmap images. The requirements:
- Images must be 32x32 pixels
- Images must be 2 colors (1 bit/pixel)
- Only one image per .BMP file
- Uncompressed (almost all BMPs are)
Usage:
bmp2cur <filename>
Here's another li'l tool: a cursor tester that lets you load any .CUR file and take it out for a spin to see what it looks like in a window. Very simple.
Do yourself a favour, get a cursor editor, they are simple things to make in a variety of sizes and you can even have animated cursors.
I own both Axialis Icon Workshop and Cursor Workshop and they are both very good tools. If you hunt around, you can find freeware apps that do the same thing.
OK. In the meantime I'll use my tools and my go-to image editor (an old version of Paint Shop Pro).
2 questions: Should I move this to the "Showcase" since it's a finished project? If so, would you move it, Hutch?
Second, I could add a command-line option to set the "hotspot" in case someone doesn't want it right in the middle (currently it's [15,15]). Anyone think this would be a good feature?
Quote from: NoCforMe on February 09, 2022, 05:49:22 AM
my go-to image editor (an old version of Paint Shop Pro).
You are on day 1595 of your 30 day evaluation period :cool:
> Should I move this to the "Showcase" since it's a finished project? If so, would you move it, Hutch?
No. The showcase is for finished code, not experiments.
OK, fair enough. What would it take for you to consider this finished? I've been using it to create cursors and it's worked fine.
Hi NoCforMe,
Thanks for your work. Here is my cursor from binary example using your converter. The cursor test tool could not display the arrow image ( cursor ) converted from bmp to cur. Maybe, my bitmap file is not correct, could you check the attached zip file?
Hmm; your cursor worked for me. Dunno why it didn't for you. I could tell it was your cursor because it's hollow inside instead of being filled by white.
Of course, there's no possibility that my conversion tool is at fault. :biggrin: :biggrin: :biggrin:
I'll look into it.
:biggrin:
http://www.rw-designer.com/cursor-maker (http://www.rw-designer.com/cursor-maker)
Comes at the right prioce.
Here's my implementation of a cursor editor, nearly finished (just a little "chrome" to put in, like an "about" window, maybe some help). No razzle-dazzle, and all it does is edit a standard (32X32, 2-color) Windows cursor, but it works and I'm using it to create cursors for projects. See what you think.
When you're editing a cursor you can use the right mouse button to put in the opposite color to the selected one (white if you have black selected). Other than that, pretty straightforward.
:biggrin:
That works well, a very simple tool that does the job. :thumbsup:
Thanks, Hutch!
Now I know that making requests is probably unreasonable but of you could impliment drawing a line, it would make the app a lot easier to use.
Hi NoCforMe,
Impressive work. :thumbsup:
Well done :thumbsup:
Quote from: Vortex on February 14, 2022, 05:32:37 AM
Hi NoCforMe,
Impressive work. :thumbsup:
Ah, if you only knew how many blunders and stupid mistakes I made writing that ...
I did learn a lot, though, which to me is the whole point of the exercise.
Well, I have to post an update here because guess what? there were some bugs in that previous version. No, you say, how could that be, what with your extremely rigorous testing procedures? Well, they slipped through. For one thing, if you tested a cursor it was displayed upside-down. (See below for explanation of that.)
This version fixes that problem, plus it handles saving the cursor more reasonably (if you load a cursor and edit it, it doesn't ask you for the filename again unless you choose "Save as"), plus it checks for unsaved work and asks you if you really want to exit or load a new file.
It's a little more complex, as I added a resource file, plus there are two bitmaps and a cursor to load. There's a "makefile" (a batch file) to stitch everything together.
Enjoy.
Oh, about those upside-down cursors: I learned something coding this, which is that there's a difference in the order of the bitmap masks between creating a cursor file and using CreateCursor() to make one within an application. The former wants the bitmaps to be "upside down", that is, going from the bottom up, while CreateCursor() expects the bitmaps to be "normal", i.e., top-down. I had to add a rather kluge-y routine to flip the bitmaps over when creating a cursor with CreateCursor(). This is mentioned nowhere in the MSDN documentation, by the way (surprise, surprise). I'm still wondering why they ever implemented those bass-ackwards bottom-up formats.
Another thing: there's something weird going on in my editor with cursors. Notice that if you open the app and move the cursor around, the custom cursor (a pen or pencil) turns into the standard arrow when you move it out of the editing window. But click on "Reset" and you'll see that now the cursor stays the same until you move over either the little "preview" window or the toolbar, at which point it reverts to the standard arrow. I cannot figure out why this happens. I'm using SetClassLong, hWin, GCLP_HCURSOR... to change the class cursor, which works, except for this one quirk. Anyone have a clue what's going on here?
Another very small point: I don't like the way the toolbar looks. I'm using "visual styles" which affect the appearance, but haven't been able to come up with a look that I like. I wish the text buttons in the toolbar looked like buttons instead of just text. Tried a bunch of combinations of styles and enabling or not enabling visual styles but nothing looked right.
Later, in another part of the forest: I found out why bitmaps were designed bottom-up. As always, the indispensible Raymond Chen has the explanation (https://devblogs.microsoft.com/oldnewthing/20210525-00/?p=105250). It's because OS/2.
Really nice, David :thumbsup:
Thanks, JJ. And if someone doesn't like my custom cursor they can always design their own.
Hi David,
Once again, nice work :thumbsup:
Don't worry about coding and testing. All of us , we are on the same boat, so all everything is OK.
Quote from: Vortex on February 17, 2022, 03:26:51 AM
Hi David,
Once again, nice work :thumbsup:
Don't worry about coding and testing. All of us , we are on the same boat, so all everything is OK.
You mean you ... you make mistakes too? :winking:
If anyone answer the two questions I had up above I'd be grateful. One about the cursor not getting reset, the other about making the toolbar look nicer.