This file is indexed.

/usr/include/xfce4/xfce4-session-4.6/libxfsm/xfsm-splash-engine.h is in xfce4-session 4.8.3-0ubuntu2.

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
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/* $Id$ */
/*-
 * Copyright (c) 2003-2004 Benedikt Meurer <benny@xfce.org>
 * All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 * MA 02110-1301 USA.
 */

#ifndef __XFSM_SPLASH_ENGINE_H__
#define __XFSM_SPLASH_ENGINE_H__

#include <time.h>

#include <gtk/gtk.h>

#include <libxfsm/xfsm-splash-rc.h>


#define XFSM_CHOOSE_LOGOUT  0
#define XFSM_CHOOSE_LOAD    1
#define XFSM_CHOOSE_NEW     2


typedef struct _XfsmSplashEngine XfsmSplashEngine;
typedef struct _XfsmSplashConfig XfsmSplashConfig;
typedef struct _XfsmSessionInfo  XfsmSessionInfo;


struct _XfsmSplashEngine
{
  /* provided by the session manager */
  GdkDisplay  *display;
  GdkScreen   *primary_screen;
  int          primary_monitor;


  /* to be filled in by the engine */
  gpointer     user_data;

  /* load config from rc and display the splash window */
  void (*setup)   (XfsmSplashEngine *engine,
                   XfsmSplashRc     *rc);

  /* tells the engine that the session will start now, where
     steps is the approx. number of apps started in the session,
     name is the name of the session and the preview at 52x42
     (OPTIONAL) */
  void (*start)   (XfsmSplashEngine *engine,
                   const gchar      *name,
                   GdkPixbuf        *preview,
                   unsigned          steps);

  /* place, run, hide the dialog and return the result of the run.
     override on demand (OPTIONAL) */
  int  (*run)     (XfsmSplashEngine *engine,
                   GtkWidget        *dialog);

  /* display the text (OPTIONAL) */
  void (*next)    (XfsmSplashEngine *engine,
                   const gchar      *text);

  /* choose a session (OPTIONAL), should return XFSM_CHOOSE_* */
  int  (*choose)  (XfsmSplashEngine *engine,
                   GList            *sessions,
                   const gchar      *default_session,
                   gchar           **name_return);

  void (*destroy) (XfsmSplashEngine *engine);

  gpointer _reserved[8];
};


struct _XfsmSplashConfig
{
  /* provided by the session manager */
  XfsmSplashRc  *rc;


  /* to be filled in by the config (freed by the session manager) */
  gchar   *name;
  gchar   *description;
  gchar   *version;
  gchar   *author;
  gchar   *homepage;

  /* config internals (config is responsible for freeing during destroy) */
  gpointer user_data;

  /* generate preview for engine, should be 320x240! (OPTIONAL) */
  GdkPixbuf *(*preview) (XfsmSplashConfig *config);

  /* display a configuration dialog (OPTIONAL) */
  void (*configure) (XfsmSplashConfig *config,
                     GtkWidget        *parent);

  void (*destroy) (XfsmSplashConfig *config);

  gpointer _reserved[8];
};


struct _XfsmSessionInfo
{
  gchar     *name;      /* name of the session */
  time_t     atime;     /* last access time */
  GdkPixbuf *preview;   /* preview icon (52x42) */
};


#endif /* !__XFSM_SPLASH_ENGINE_H__ */