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

« back to all changes in this revision

Viewing changes to scintilla/include/Scintilla.h

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2011-12-10 07:43:26 UTC
  • mfrom: (3.3.7 sid)
  • Revision ID: package-import@ubuntu.com-20111210074326-s8yqbew5i20h33tf
Tags: 0.21-1ubuntu1
* Merge from Debian Unstable, remaining changes:
  - debian/patches/20_use_evince_viewer.patch:
     + use evince as viewer for pdf and dvi files
  - debian/patches/20_use_x_terminal_emulator.patch:
     + use x-terminal-emulator as terminal
  - debian/control
     + Add breaks on geany-plugins-common << 0.20
* Also fixes bugs:
  - Filter for MATLAB/Octave files filters everythign (LP: 885505)

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
#define SCI_SETTABWIDTH 2036
92
92
#define SCI_GETTABWIDTH 2121
93
93
#define SC_CP_UTF8 65001
94
 
#define SC_CP_DBCS 1
95
94
#define SCI_SETCODEPAGE 2037
96
95
#define SCI_SETUSEPALETTE 2039
97
96
#define MARKER_MAX 31
160
159
#define SCI_GETMARGINMASKN 2245
161
160
#define SCI_SETMARGINSENSITIVEN 2246
162
161
#define SCI_GETMARGINSENSITIVEN 2247
 
162
#define SCI_SETMARGINCURSORN 2248
 
163
#define SCI_GETMARGINCURSORN 2249
163
164
#define STYLE_DEFAULT 32
164
165
#define STYLE_LINENUMBER 33
165
166
#define STYLE_BRACELIGHT 34
591
592
#define SCI_SETMOUSEDOWNCAPTURES 2384
592
593
#define SCI_GETMOUSEDOWNCAPTURES 2385
593
594
#define SC_CURSORNORMAL -1
 
595
#define SC_CURSORARROW 2
594
596
#define SC_CURSORWAIT 4
 
597
#define SC_CURSORREVERSEARROW 7
595
598
#define SCI_SETCURSOR 2386
596
599
#define SCI_GETCURSOR 2387
597
600
#define SCI_SETCONTROLCHARSYMBOL 2388
669
672
#define SCI_FINDCOLUMN 2456
670
673
#define SCI_GETCARETSTICKY 2457
671
674
#define SCI_SETCARETSTICKY 2458
 
675
#define SC_CARETSTICKY_OFF 0
 
676
#define SC_CARETSTICKY_ON 1
 
677
#define SC_CARETSTICKY_WHITESPACE 2
672
678
#define SCI_TOGGLECARETSTICKY 2459
673
679
#define SCI_SETPASTECONVERTENDINGS 2467
674
680
#define SCI_GETPASTECONVERTENDINGS 2468
783
789
#define SCI_GETADDITIONALCARETFORE 2605
784
790
#define SCI_ROTATESELECTION 2606
785
791
#define SCI_SWAPMAINANCHORCARET 2607
 
792
#define SCI_CHANGELEXERSTATE 2617
 
793
#define SCI_CONTRACTEDFOLDNEXT 2618
 
794
#define SCI_VERTICALCENTRECARET 2619
786
795
#define SCI_STARTRECORD 3001
787
796
#define SCI_STOPRECORD 3002
788
797
#define SCI_SETLEXER 4001
798
807
#define SCI_GETPROPERTYINT 4010
799
808
#define SCI_GETSTYLEBITSNEEDED 4011
800
809
#define SCI_GETLEXERLANGUAGE 4012
 
810
#define SCI_PRIVATELEXERCALL 4013
 
811
#define SCI_PROPERTYNAMES 4014
 
812
#define SC_TYPE_BOOLEAN 0
 
813
#define SC_TYPE_INTEGER 1
 
814
#define SC_TYPE_STRING 2
 
815
#define SCI_PROPERTYTYPE 4015
 
816
#define SCI_DESCRIBEPROPERTY 4016
 
817
#define SCI_DESCRIBEKEYWORDSETS 4017
801
818
#define SC_MOD_INSERTTEXT 0x1
802
819
#define SC_MOD_DELETETEXT 0x2
803
820
#define SC_MOD_CHANGESTYLE 0x4
817
834
#define SC_MOD_CHANGEMARGIN 0x10000
818
835
#define SC_MOD_CHANGEANNOTATION 0x20000
819
836
#define SC_MOD_CONTAINER 0x40000
820
 
#define SC_MODEVENTMASKALL 0x7FFFF
 
837
#define SC_MOD_LEXERSTATE 0x80000
 
838
#define SC_MODEVENTMASKALL 0xFFFFF
 
839
#define SC_UPDATE_CONTENT 0x1
 
840
#define SC_UPDATE_SELECTION 0x2
 
841
#define SC_UPDATE_V_SCROLL 0x4
 
842
#define SC_UPDATE_H_SCROLL 0x8
821
843
#define SCEN_CHANGE 768
822
844
#define SCEN_SETFOCUS 512
823
845
#define SCEN_KILLFOCUS 256
872
894
#define SCN_INDICATORRELEASE 2024
873
895
#define SCN_AUTOCCANCELLED 2025
874
896
#define SCN_AUTOCCHARDELETED 2026
 
897
#define SCN_HOTSPOTRELEASECLICK 2027
875
898
/* --Autogenerated -- end of section automatically generated from Scintilla.iface */
876
899
 
877
900
/* These structures are defined to be exactly the same shape as the Win32
956
979
        int y;          /* SCN_DWELLSTART, SCN_DWELLEND */
957
980
        int token;              /* SCN_MODIFIED with SC_MOD_CONTAINER */
958
981
        int annotationLinesAdded;       /* SC_MOD_CHANGEANNOTATION */
 
982
        int updated;    /* SCN_UPDATEUI */
959
983
};
960
984
 
961
985
#ifdef SCI_NAMESPACE
962
986
}
963
987
#endif
964
988
 
 
989
#ifdef INCLUDE_DEPRECATED_FEATURES
 
990
 
 
991
#define SC_CP_DBCS 1
 
992
 
 
993
#endif
 
994
 
965
995
#endif