Prev: touchpad programming
Next: Visual Basic.net
From: Nobody on 28 Apr 2010 13:43 "Nobody" <nobody(a)nobody.com> wrote in message news:uNuu$ev5KHA.3804(a)TK2MSFTNGP05.phx.gbl... > What event triggers the master loop? Is it a Timer or something else? Also, when the user is using the tool, is the mouse button down "all the time", and the drawing continues when the mouse button is released?
From: David on 28 Apr 2010 13:47 I've looked up C++ menus and didn't see difference than normal loop processing for other controls. Can you point me in the right direction? "Jeff Johnson" <i.get(a)enough.spam> wrote in message news:eRnl4ov5KHA.1888(a)TK2MSFTNGP05.phx.gbl... > "David" <NoWhere(a)earthlink.net> wrote in message > news:uJneUKv5KHA.5464(a)TK2MSFTNGP05.phx.gbl... > >> I guess my question centers mostly around menus and how they appear to be >> independent. You would think -- my logic -- that the form would be the >> parent and the menu would be an object under the parent form. >> When the master parent (form) loop is processed by the OS, the other >> loops -- menu, any controls, etc. -- should be processed as a subset >> under the parent (form) loop. >> >> So how does the menu become "semi-modal"? > > Because the operating system has special handling for menus. >
From: David on 28 Apr 2010 14:54 > Also, when the user is using the tool, is the mouse button down "all the > time", and the drawing continues when the mouse button is released? Yes, especially when dragging (e.g. pencil end point or segment). "Nobody" <nobody(a)nobody.com> wrote in message news:expImpv5KHA.1424(a)TK2MSFTNGP04.phx.gbl... > "Nobody" <nobody(a)nobody.com> wrote in message > news:uNuu$ev5KHA.3804(a)TK2MSFTNGP05.phx.gbl... >> What event triggers the master loop? Is it a Timer or something else? > > Also, when the user is using the tool, is the mouse button down "all the > time", and the drawing continues when the mouse button is released? > >
From: Jeff Johnson on 28 Apr 2010 14:56 "David" <NoWhere(a)earthlink.net> wrote in message news:u9oTrrv5KHA.1932(a)TK2MSFTNGP05.phx.gbl... > I've looked up C++ menus and didn't see difference than > normal loop processing for other controls. Can you > point me in the right direction? No, I guess I can't. Maybe I'm completely wrong.
From: David on 28 Apr 2010 14:57
No Timer. Graph is handled from the Picturebox Paint event. Tools are handled from the Picturebox Mouse events. "Nobody" <nobody(a)nobody.com> wrote in message news:uNuu$ev5KHA.3804(a)TK2MSFTNGP05.phx.gbl... > "David" <NoWhere(a)earthlink.net> wrote in message > news:uJneUKv5KHA.5464(a)TK2MSFTNGP05.phx.gbl... >> Mr Johnson: >> >> I guess my question centers mostly around menus and how they appear to be >> independent. You would think -- my logic -- that the form would be the >> parent and the menu would be an object under the parent form. >> When the master parent (form) loop is processed by the OS, the other >> loops -- menu, any controls, etc. -- should be processed as a subset >> under the parent (form) loop. >> >> So how does the menu become "semi-modal"? > > What event triggers the master loop? Is it a Timer or something else? > > |