This file is indexed.

/usr/src/castle-game-engine-4.1.1/window/castlerecentfiles.txt is in castle-game-engine-src 4.1.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
How should recent files menu look and work like in GNOME program ?

(I didn't found this info in any guideline on Internet,
especially not in GNOME HIG).

Inline "recent files" menu:
- Examples: See gedit, eog, evince, totem
- Size: At most 5 recent items
- Placement: After "print" commands, there's a separator,
  then a recent files list, then separator and "close" commands.
  Menu items are sorted from 1st (the most recent one).
- Look: "n" + ". " + basename (with extension, without path) of the filename.
  "n" is between 1 and 5, and it's a key shortcut to this menu item.
  Only the basename is shown, to see full filename you should move to this
  menu item --- gedit will show full filename in status bar,
  eog will show it as a hint, in both cases the text is
    Opens "full-filename"

--------------------
Separate "recent files" menu:
- Examples: See gimp
- Size: At most 10 recent items
- Placement: As a submenu of "Open recent" in main menu.
  "Open recent" is right below "Open location", so it's visually
  connected with other "Open ..." commands.
  Menu items are sorted from the most recent one.
- Look: just a file basename. There is no underlined menu shortcut,
  but there is a global shortcut: Ctrl+1, Ctrl+2 etc.
  The last (10th) item has a shortcut Ctrl+0.
- The "Open recent" submenu ends with separator and command
  "Document History" that displays a window with full (long) list
  of recent files, allowing you to open files on this list and do
  some other operations.

--------------------
There are reasons after and against separate "recent files",
see e.g. [http://bugzilla.gnome.org/show_bug.cgi?id=349541]
or [http://log.emmanuelebassi.net/archives/category/hacking/recent-files/].
In short:
+ inline recent files menu allows you to avoid submenus, and avoiding
  submenus makes it more visible and easier to navigate
- inline recent files menu blocks you from placing too many items
  there ("File" menu would grow too large)
- inline recent files menu doesn't give you a clear place where you
  could place an item like "More" ("Document History" known from GIMP).

--------------------
Somewhat related to this is
[http://standards.freedesktop.org/recent-file-spec/recent-file-spec-0.2.html]
but it seems to be used only by GIMP for now.