1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 #ifndef NEDIT_SHIFT_H_INCLUDED
28 #define NEDIT_SHIFT_H_INCLUDED
29
30 #include "nedit.h"
31
32 enum ShiftDirection {
SHIFT_LEFT,
SHIFT_RIGHT};
33
34 void ShiftSelection(WindowInfo *window,
int direction,
int byTab);
35 void UpcaseSelection(WindowInfo *window);
36 void DowncaseSelection(WindowInfo *window);
37 void FillSelection(WindowInfo *window);
38 char *ShiftText(
char *text,
int direction,
int tabsAllowed,
int tabDist,
39 int nChars,
int *newLen);
40
41 #endif
42