File: games-file-list.h

package info (click to toggle)
gnome-robots 1%3A3.14.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 17,892 kB
  • ctags: 635
  • sloc: ansic: 5,520; sh: 1,291; makefile: 207; xml: 132
file content (68 lines) | stat: -rw-r--r-- 2,758 bytes parent folder | download | duplicates (4)
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
/* games-file-list.h:
   Copyright 2003 Callum McKenzie

   This library is free software; you can redistribute it and'or modify
   it under the terms of the GNU Library General Public License as published 
   by the Free Software Foundation; either version 2, or (at your option)
   any later version.

   This library 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 Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */

/* Authors:   Callum McKenzie <callum@physics.otago.ac.nz> */

#ifndef GAMES_FILE_LIST_H
#define GAMES_FILE_LIST_H

#include <gtk/gtk.h>

G_BEGIN_DECLS

typedef struct GamesFileListPrivate GamesFileListPrivate;

typedef struct {
  GObject parent;
  /*< private >*/
  GamesFileListPrivate *priv;
} GamesFileList;

typedef struct {
  GObjectClass parent;
} GamesFileListClass;

enum {
  GAMES_FILE_LIST_REMOVE_EXTENSION = 1 << 0,
  GAMES_FILE_LIST_REPLACE_UNDERSCORES = 1 << 1,
};

#define GAMES_FILE_LIST_TYPE (games_file_list_get_type ())
#define GAMES_FILE_LIST(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAMES_FILE_LIST_TYPE, GamesFileList))

GType          games_file_list_get_type           (void);
GamesFileList *games_file_list_new                (const gchar * glob,
                                                   ...) G_GNUC_NULL_TERMINATED;
GamesFileList *games_file_list_new_images         (const gchar * path1,
                                                   ...) G_GNUC_NULL_TERMINATED;
void           games_file_list_transform_basename (GamesFileList * list);
gsize          games_file_list_length             (GamesFileList * filelist);
void           games_file_list_for_each           (GamesFileList * filelist,
                                                   GFunc function,
                                                   gpointer userdata);
gchar         *games_file_list_find               (GamesFileList * filelist,
                                                   GCompareFunc function,
                                                   gpointer userdata);
const gchar   *games_file_list_get_nth            (GamesFileList * filelist,
                                                   gint n);
GtkWidget     *games_file_list_create_widget      (GamesFileList * filelist,
                                                   const gchar * selection,
                                                   guint flags);

G_END_DECLS

#endif /* GAMES_FILE_LIST_H */