Found a bug? Please report it, but remember to follow the bug reporting guidelines.
Missing a sane feature? Let us know!
But please do NOT request ports to other systems.
Alright, it has been a long time since I requested something of ZSNES but here goes.
Wouldn't it be something if the menu's automaticly collapsed once you first click on one of the items in the menu? And stop of course when you click an item or on something outside the menu.
I've read dozens of GUI requests so it's always the question if it's worth messing with the GUI to implement this. If it's not, or unwanted, then I'll go along with that, no problem.
I don't really see the point of this...Or maybe I'm just misunderstanding your request?
So you're basically saying you want to minimize windows in ZSNES? If so, I'm thinking it might be easier to use hotkeys to bring the menus up or hide them. This is already partially possible with the load menu, at least.
I think I've used the wrong term to describe what I mean. Maybe to fold out? Anyway, what I mean is automaticly let the menu's under 'Game' 'Options' 'Cheats' and 'Misc' appear if you hover your mouse over them.
If I interpret grin's answer correctly, what you ask is near impossible.
whicker: franpa is grammatically correct, and he still gets ripped on? sweener2001: Grammatically correct this one time? sure. every other time? no. does that give him a right? not really.
Like I said in the first place, if it's near impossible to implement then you can let it pass of course. Otherwise, it would be nice if the menu is modified to behave like this.
Considering we have code to highlight when the mouse hovers, it shouldn't be that big of a deal to make menu header open the menu apon hover. However the largest issue here is finding where in the source this code is.
May 9 2007 - NSRT 3.4, now with lots of hashing and even more accurate information! Go download it.
_____________ Insane Coding
Hmm, currently...
- the highlight code only works with menu items, not menus themselves.
- the mouse location is checked AFTER a click. If the mouse is in the right place, the menu opens.
- since you can open a menu even if there's another window onscreen, we can't just cheat and assume the mouse is always clicking (or else the checkboxes you hover on will toggle 36 times per second)
Will require some thoughts. But really not impossible.
grinvader wrote:Hmm, currently...
- the highlight code only works with menu items, not menus themselves.
- the mouse location is checked AFTER a click. If the mouse is in the right place, the menu opens.
- since you can open a menu even if there's another window onscreen, we can't just cheat and assume the mouse is always clicking (or else the checkboxes you hover on will toggle 36 times per second)
Will require some thoughts. But really not impossible.
maybe have the mouse always click if the y coordinate is less than some number? Then it only clicks at the top of the screen.