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
28
29 #ifndef NEDIT_WINDOWTITLE_H_INCLUDED
30 #define NEDIT_WINDOWTITLE_H_INCLUDED
31
32 #include "nedit.h"
33
34 #include <X11/Intrinsic.h>
35
36 char *FormatWindowTitle(
const char* filename,
37 const char* path,
38 const char* clearCaseViewTag,
39 const char* serverName,
40 const char* encoding,
41 int isServer,
42 int filenameSet,
43 int lockReasons,
44 int fileChanged,
45 const char* titleFormat);
46
47 void EditCustomTitleFormat(WindowInfo *window);
48
49 #endif
50