~ubuntu-branches/ubuntu/raring/geany/raring-proposed

« back to all changes in this revision

Viewing changes to scintilla/KeyMap.h

  • Committer: Bazaar Package Importer
  • Author(s): Damián Viano
  • Date: 2008-05-02 11:37:45 UTC
  • mto: (3.1.1 lenny) (1.3.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: james.westby@ubuntu.com-20080502113745-7q62rqhl2ku02ptu
Import upstream version 0.14

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
#ifndef KEYTOCOMMAND_H
9
9
#define KEYTOCOMMAND_H
10
10
 
 
11
#ifdef SCI_NAMESPACE
 
12
namespace Scintilla {
 
13
#endif
 
14
 
11
15
#define SCI_NORM 0
12
16
#define SCI_SHIFT SCMOD_SHIFT
13
17
#define SCI_CTRL SCMOD_CTRL
40
44
        unsigned int Find(int key, int modifiers);      // 0 returned on failure
41
45
};
42
46
 
 
47
#ifdef SCI_NAMESPACE
 
48
}
 
49
#endif
 
50
 
43
51
#endif