Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

what is the most common way for the selection of multiple elements on the GUI by clicking the elements with the mousebutton and holding a key. What is the "right" key shift or ctrl or both?

thx TomK.

share|improve this question
2  
If its for Windows users, I would do the same as what Windows does. – Peter Lawrey Sep 4 '12 at 14:11

closed as not constructive by Marcelo, Filburt, martin clayton, Jeremy, Bo Persson Sep 4 '12 at 21:40

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

Usually, Shift is for selecting ranges (e.g. all letters, or files, between the first and last click) and Ctrl is for selecting individual items, so it would be best to implement both.

share|improve this answer

For Windows control is used for non contiguous selection. Shift is used for a contiguous range. Java I think does the same in its UI elements. Not sure about MAC or Linux but your question is tagged Windows so I presume that is what you are interested in. You can check this in Windows by selecting multiple files in Windows Explorer

share|improve this answer

On Windows, Shift is for contiguous ranges and Ctrl is for individual multiple selections (which may or may not be adjacent). On Mac Shift is the same as on Windows for selecting a range, but individual selections use Cmd instead of Ctrl.

java.awt.Toolkit.getDefaultToolkit().getMenuShortcutKeyMask() will return you the appropriate mask to use for the current platform - Ctrl on Windows, Cmd on Mac.

share|improve this answer

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