1 /* vi:set et ai sw=2 sts=2 ts=2: */
2 /*-
3  * Copyright (c) 2006 Benedikt Meurer <benny@xfce.org>
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the Free
7  * Software Foundation; either version 2 of the License, or (at your option)
8  * any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
13  * more details.
14  *
15  * You should have received a copy of the GNU General Public License along with
16  * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
17  * Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19 
20 #ifndef __THUNAR_SENDTO_MODEL_H__
21 #define __THUNAR_SENDTO_MODEL_H__
22 
23 #include <thunar/thunar-file.h>
24 
25 G_BEGIN_DECLS;
26 
27 typedef struct _ThunarSendtoModelClass ThunarSendtoModelClass;
28 typedef struct _ThunarSendtoModel      ThunarSendtoModel;
29 
30 #define THUNAR_TYPE_SENDTO_MODEL            (thunar_sendto_model_get_type ())
31 #define THUNAR_SENDTO_MODEL(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), THUNAR_TYPE_SENDTO_MODEL, ThunarSendtoModel))
32 #define THUNAR_SENDTO_MODEL_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), THUNAR_TYPE_SENDTO_MODEL, ThunarSendtoModelClass))
33 #define THUNAR_IS_SENDTO_MODEL(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), THUNAR_TYPE_SENDTO_MODEL))
34 #define THUNAR_IS_SENDTO_MODEL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), THUNAR_TYPE_SENDTO_MODEL))
35 #define THUNAR_SENDTO_MODEL_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), THUNAR_TYPE_SENDTO_MODEL))
36 
37 GType              thunar_sendto_model_get_type     (void) G_GNUC_CONST;
38 
39 ThunarSendtoModel *thunar_sendto_model_get_default  (void) G_GNUC_WARN_UNUSED_RESULT;
40 
41 GList             *thunar_sendto_model_get_matching (ThunarSendtoModel *sendto_model,
42                                                      GList             *files) G_GNUC_MALLOC G_GNUC_WARN_UNUSED_RESULT;
43 
44 G_END_DECLS;
45 
46 #endif /* !__THUNAR_SENDTO_MODEL_H__ */
47