I am programming in C, using the Windows API, and would like to know how I could draw separators.

I'm a total noob when it comes to writing GUI applications, so I may need a code example.

Edit: Here's an illustration...

alt text

link|improve this question

Separators for what? Context or examples would help. – jamesdlin May 23 '10 at 17:34
I said I'm writing a GUI application. You see these lines separating our comments? Those basically :) – someguy May 23 '10 at 17:35
Are you talking about separators in menus? (Notepad's Edit menu: Undo/Separator/Cut/Copy/Paste/Delete/Separator/Find/Find Next/...) Or are you talking about separators in flat toolbars? (New/Open/Save/Separator/Undo/Redo/Separator/...) – Andreas Rejbrand May 23 '10 at 17:39
Separators like the ones seen in IE or Firefox, where they are used to separate the menu from the buttons, the buttons from the bookmarks toolbar etc. – someguy May 23 '10 at 17:48
feedback

4 Answers

up vote 1 down vote accepted

Use a static control/window with the SS_ETCHEDHORZ style (This is what explorer does and should give you the most accurate rendering when it comes to Visual Styles)

link|improve this answer
I believe that is for MFC. I'm using Win32, but maybe I can look into MFC. – someguy May 24 '10 at 17:39
No, the static control is a normal native win32 control – Anders May 24 '10 at 18:02
Thanks. This is what I was looking for :) – someguy May 25 '10 at 15:06
@someguy maybe you should change the marked answer then... – Anders May 25 '10 at 15:38
Sorry, I wasn't aware you could do that (lol). – someguy May 25 '10 at 18:05
feedback

I don't suppose you're just looking for LineTo?

For menus and toolbars, generally the separators are drawn for you by the menu and toolbar APIs. For random separators in dialog boxes, etc, like in the picture you added you can just draw a line.

link|improve this answer
Thanks (to Andreas as well). Is this the only way though? I thought there would've been a more "official" way. I'll wait a while (for a reply) before setting this as the accepted answer. – someguy May 23 '10 at 18:09
Owner draw is overkill when there is a common control that does exactly what you want (And you don't have to handle Classic vs Visual styles etc) – Anders May 24 '10 at 12:34
feedback

OK, you just want to draw straight lines on the form. That is trivial. When drawing your window, i.e. when processing the WM_PAINT message, simply draw a line using the MoveToEx and LineTo functions.

link|improve this answer
feedback

You insert separators in menus when you insert a normal menu item with a hyphen "-" as text.

Windows will automatically expand them to separators.

link|improve this answer
Initially, I also believed that this was the kind of separators he was looking for. Rather evil to give you a -1, for your response was posted prior to the clarification. – Andreas Rejbrand May 23 '10 at 18:01
I wasn't the one who voted you down by the way. – someguy May 23 '10 at 18:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.