~ldotlopez/eina/github-copy

« back to all changes in this revision

Viewing changes to eina/ext/eina-file-chooser-dialog.h

  • Committer: Luis López
  • Date: 2011-07-11 07:00:44 UTC
  • Revision ID: luis@ugluk.cent.uji.es-20110711070044-su2jelehui4elesi
Snapshot 20110711090043

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
18
 */
19
19
 
20
 
#ifndef _EINA_FILE_CHOOSER_DIALOG
21
 
#define _EINA_FILE_CHOOSER_DIALOG
 
20
#ifndef __EINA_FILE_CHOOSER_DIALOG_H__
 
21
#define __EINA_FILE_CHOOSER_DIALOG_H__
22
22
 
23
23
#include <glib-object.h>
24
24
#include <gtk/gtk.h>
42
42
        GtkFileChooserDialogClass parent_class;
43
43
} EinaFileChooserDialogClass;
44
44
 
45
 
/*
 
45
/**
46
46
 * EinaFileChooserDialogAction:
47
 
 * @EINA_FILE_CHOOSER_DIALOG_LOAD_FILES: Filechooser dialog will be used to
 
47
 * @EINA_FILE_CHOOSER_DIALOG_ACTION_LOAD_FILES: Filechooser dialog will be used to
48
48
 *                                       load files
49
49
 *
50
50
 * Possible actions for the filechooser dialog
51
51
 */
52
52
typedef enum {
53
 
        EINA_FILE_CHOOSER_DIALOG_LOAD_FILES
 
53
        EINA_FILE_CHOOSER_DIALOG_ACTION_LOAD_FILES
54
54
} EinaFileChooserDialogAction;
55
55
 
56
 
/*
 
56
/**
57
57
 * EinaFileChooserDialogResponse:
58
58
 * @EINA_FILE_CHOOSER_RESPONSE_QUEUE: URIs were selected for queue
59
59
 * @EINA_FILE_CHOOSER_RESPONSE_PLAY: URIs were selected for play
65
65
        EINA_FILE_CHOOSER_RESPONSE_PLAY
66
66
} EinaFileChooserDialogResponse;
67
67
 
68
 
/*
 
68
/**
69
69
 * EinaFileChooserDialogMsgType:
70
70
 * @EINA_FILE_CHOOSER_DIALOG_MSG_TYPE_NONE: No type
71
71
 * @EINA_FILE_CHOOSER_DIALOG_MSG_TYPE_INFO: Information message
72
72
 * @EINA_FILE_CHOOSER_DIALOG_MSG_TYPE_WARN: Warning message
73
73
 * @EINA_FILE_CHOOSER_DIALOG_MSG_TYPE_ERROR: Error message
74
74
 *
75
 
 * Possible messages types
 
75
 * Possible messages types, each message type uses diferent visual indicators,
 
76
 * p.ex. icons.
76
77
 */
77
78
typedef enum {
78
79
        EINA_FILE_CHOOSER_DIALOG_MSG_TYPE_NONE,
91
92
 
92
93
G_END_DECLS
93
94
 
94
 
#endif /* _EINA_FILE_CHOOSER_DIALOG */
 
95
#endif /* __EINA_FILE_CHOOSER_DIALOG_H__ */