/usr/include/gpe/gpeclockface.h is in libgpewidget-dev 0.117-4.
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 | /*
* Copyright (C) 2003 Philip Blundell <philb@gnu.org>
*
* 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 of the License, or (at your option) any later version.
*/
#ifndef GPE_CLOCK_H
#define GPE_CLOCK_H
#include <gtk/gtk.h>
#include <glib-object.h>
#define GPE_TYPE_CLOCK_FACE (gpe_clock_face_get_type ())
#define GPE_CLOCK_FACE(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), gpe_clock_face_get_type(), GpeClockFace)
#define GTK_CLOCK_GET_CLASS(obj) G_TYPE_INSTANCE_GET_CLASS ((obj), gpe_clock_face_get_type(), GpeClockFaceClass)
typedef struct _GpeClockFace GpeClockFace;
/**
* GpeClockFaceClass:
*
* Object container for the GpeClockFaceClass widget.
*/
typedef struct _GpeClockFaceClass GpeClockFaceClass;
GtkType gpe_clock_face_get_type (void);
GtkWidget *gpe_clock_face_new (GtkAdjustment *, GtkAdjustment *, GtkAdjustment *);
void gpe_clock_face_set_do_grabs (GpeClockFace *clock, gboolean yes);
void gpe_clock_face_set_radius (GpeClockFace *clock, guint radius);
void gpe_clock_face_set_use_background_image (GpeClockFace *clock, gboolean yes);
void gpe_clock_face_set_label_hours (GpeClockFace *clock, gboolean yes);
void gpe_clock_face_set_hand_width (GpeClockFace *clock, double width);
void gpe_clock_face_set_border (GpeClockFace *clock, guint border);
GdkBitmap *gpe_clock_face_get_shape (GpeClockFace *clock);
#endif
|