AnantLabs / sharpfile

Automatically exported from code.google.com/p/sharpfile
2 stars 1 forks source link

Specify keycodes for actions #25

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Configurable keycodes for actions. IAction interface.

Original issue reported on code.google.com by longueur...@gmail.com on 1 Feb 2008 at 10:46

GoogleCodeExporter commented 9 years ago
Delete, create, rename, refresh.

Original comment by longueur...@gmail.com on 1 Feb 2008 at 10:48

GoogleCodeExporter commented 9 years ago
- Del
- Shift-del
- Ctrl-C
- Ctrl-V

Original comment by longueur...@gmail.com on 1 Feb 2008 at 11:02

GoogleCodeExporter commented 9 years ago
Starting.

Original comment by longueur...@gmail.com on 21 May 2008 at 3:45

GoogleCodeExporter commented 9 years ago
Added the ability to associate a "tool" with a key code. Still need to work out 
how
modifiers will work. Also, this will only work when a listview is selected -- I 
want
shortcuts to be an application-wide key hook, so that even if the user is 
typing in
the path toolbar, they can invoke a shortcut.

Original comment by longueur...@gmail.com on 23 May 2008 at 3:16

GoogleCodeExporter commented 9 years ago
Add ability to use modifier keys with a primary key. For example, the following 
could
be used to have a Control+F4 shortcut to open a command window in the currently
selected path:
<Tools>
      <Tool Name="Command Prompt" Path="cmd" Arguments="/K cd
"{SelectedPath}"">
        <Key>
          <PrimaryKey>F4</PrimaryKey>
          <ModifierKeys>
            <Key>Control</Key>
          </ModifierKeys>
        </Key>
      </Tool>
    </Tools>

The only real modifier keys are Ctrl, Alt, and Shift, however, all keys are 
"valid".
The UI will restrict the ability to put weird keys into the config file because 
they
will never work. r457.

Original comment by longueur...@gmail.com on 25 May 2008 at 8:34

GoogleCodeExporter commented 9 years ago
Moved the keyboard event from the listview to a application-wide keyboard hook.
Configuration is the same. r459.

Original comment by longueur...@gmail.com on 1 Jun 2008 at 10:44