#119 closed Feature Request (Rejected)
GuiCtrlGet*
Reported by: | WeaponX | Owned by: | |
---|---|---|---|
Milestone: | Component: | AutoIt | |
Version: | Severity: | None | |
Keywords: | GuiCtrlGet | Cc: |
Description
We can set these options but how do we get them?
GUICtrlSetBkColor -> GUICtrlGetBkColor
GUICtrlSetColor -> GUICtrlGetColor
GUICtrlSetCursor -> GUICtrlGetCursor
GUICtrlSetFont -> GUICtrlGetFont
GUICtrlSetPos -> GUICtrlGetPos (same as ControlGetPos?)
Attachments (0)
Change History (5)
comment:1 Changed 17 years ago by Valik
- Version 3.2.10.0 (Stable) deleted
comment:2 Changed 16 years ago by Valik
- Severity set to None
comment:3 Changed 16 years ago by Jpm
My point of view is the user has to memorized what he did instead of asking what he has done.
So for me it is not necessary
comment:4 Changed 16 years ago by Valik
- Resolution set to Rejected
- Status changed from new to closed
Good enough answer for me. Closing as rejected.
comment:5 Changed 21 months ago by TimRude
I know this suggestion was rejected long ago, but please consider this as possibly a valid reason for needing GUICtrlGet... (and GUIGet...) functions:
Suppose you're writing a UDF that will be used as an #include function. As such you don't know what settings the user may have specified for BkColor, Color, Cursor, or Font while defining their GUI and its controls, and the functionality of your UDF may depend on knowing these settings.
For example, consider a function that converts an .ico or .png into a bitmap for loading into a Pic control. Your function needs to know the BkColor of the GUI in order to know what to do with the transparent parts of the image. And it needs to know it before the GUI is shown (i.e. before querying the DC is useful). Without a GetBkColor function, you're stuck with having to make the user pass the BkColor as a parameter to your UDF.
But maybe the user didn't set a specific BkColor for their GUI or controls. In that case the user would have figure out how to do something like _WinAPI_GetSysColor($COLOR_BTNFACE) to determine what the default BkColor is to then pass it to the UDF. Wouldn't it be better if the UDF could just use a GetBkColor call to find this info on its own?
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
Do we really want to provide these? It seems like something simple for somebody to implement but is it really necessary?