I think I still don't fully understand your point of view, but I don't want to give up until I do.
and after thinking about your way, i still believe this is not optimal. making the change between two states without jump is much easier by using the same frame size, than trying to find the right value for shifting the entire frame after switching states.
But the frame size is even more unpredictable than the solid size. You can have all sorts of different frame sizes in the same state, and it would be extremely difficult to switch states without graphics jumping around uncontrollably if you had to worry about every frame size instead of just the state's size. At least with the state's solidity size, you know that the sprite will always be a specific size when it's in that state, so when you switch to another state, you know the current size of the original state without having to check every frame.
you have to make much more rules for that, and if you some time decide to change your graphics size you have to work over all values.
If you change your graphic size, it's better to only have to fit it in with the state where it's used instead of having to worry about how that new size fits into every place where the state might change from that frame. For example, assume I have a Left-facing frame that's used in my "Flying left" and "Super-speed Left" states for "Enemy Follow Path" sprite, and the same two states for a "Enemy Follow Player" sprite. I offset the frame a couple pixels because I know that wherever it's used, there are a couple pixels that don't really represent the "solid" part of this image. Then I change the size and I have to offset the frame a couple more pixels. I only have to do that once for the frame. If there were an offset for each state, I would have to go to each state where the frame was used and change the offset (I would have to change it 4 places instead of 1). I might also have to go to every rule that changes states and looks at all the frames to take the new frame size into account when switching states. By this test, I think the existing solution is much easier because you only have to change the offset once instead of 4 times, and you don't have to worry about all the rules that would manually handle the offset. (So I think I'm not understanding you.)
but, what i want to say is this: you don't think about the possibility that a sprite changes its size several times within ONE state.
That's not possible -- one state always has the same size. One of the purposes of a state is for grouping frames with the same solidity size. For example, walking and crawling would be different states. All the walking frames should be the same size as each other, and all the crawling frames should be the same size as each other. Crawling frames would be shorter than walking frames, but you shouldn't be changing the size of the sprite just as part of the animation, otherwise simply animating the sprite could cause it to need to move in reaction to solidity.
imagine a guy who is kneeing and standing up the whole time (with some room at the frame around him). try to make the collision rectangles for THAT.
I don't understand. Kneeling should be a different state than standing. And if the solidity rectangle for those two states are set up correctly, it's easy to switch between them, and the frames will be easily positioned properly by aligning the bottoms of the solidity rectangles when switching states.
all i want to suggest is, that i would make much more sense to give the user two simple input fields more: offset x for coll. rectangle, and offset y for coll. rectangle. in that preview window for example.
I don't see how more input fields would simplify things. More values would make it more complicated, not simpler. Can you provide another example maybe?