What I need is a function to retrieve the size of an element, be it a Java Applet window in a browser, text boxes in programs, applications window and so on.

Now I don't know what this kind of function is called, but I uploaded an example from an application that had that functionality.

Example (The red box)

What I need to be able to with this is get its size and its coordinates on the screen. This needs to be in C++.

So ff anyone could give an example, or atleast the name of that kind of function, I would be grateful.

Edit 1: - Removed Qt tag, as it doesn't really has anything to do with it.

I found a program that has the function I seek: It is called Scar Divi, which is a scriptable tool to perform repetitive actions, mostly uses for cheating in a game called Runescape it seems. Unfortunately it is closed source.

link|improve this question
I uploaded an example of what I seek (while using Scar Divi): youtube.com/watch?v=JzKxH7H6oMg it is a little speedy, but it should give you an idea. – FlameFurious Dec 29 '10 at 4:04
There is an oen alternative to SCAR Divi, it is called Simba for more look here: wizzup.org/simba – Allan Kimmer Jensen Aug 7 '11 at 18:47
feedback

3 Answers

Are you looking for Window Geometry or desktop widget?

link|improve this answer
Neither, uploaded an example on youtube about it, link under the question. It doesn't really have anything to do with Qt after thinking about it. Sorry for the confuse. – FlameFurious Dec 29 '10 at 4:07
feedback

After getting an image of the screen (there will be somethign in Qt to do this)

You need an image processing library like openCV to find the rectangle - look for "Hough Transform"

link|improve this answer
I believe using OpenCV would be a bit overkill and imprecise for my purpose. I edited my question just before you commented, so you may not have seen it, so sorry for the confuse, but after thinking Qt doesn't really belong to the tags as it really doesn't have anything to do with it. But thanks for your input. – FlameFurious Dec 29 '10 at 4:15
Do you know that it's red - or was that just an example? Finding all the (possibly overlapping) rectangles on a screen image is a good use for an image processing lib – Martin Beckett Dec 29 '10 at 4:27
The image was just a painted example, the video is a scriptable tool I found that have the function I am seeking. That tool does it without a picture. It works by dragging the cursor over parts of windows and it finds the target area and the coordinates. – FlameFurious Dec 29 '10 at 4:38
feedback
up vote 0 down vote accepted

I found the solution!

POINT p;
HWND wnd;
RECT rec;

GetCursorPos(&p);
wnd = WindowFromPoint(p);
GetWindowRect(wnd, &rec);

This will give you the coordinates for the box (extract from rec).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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