~ubuntu-branches/ubuntu/wily/easytag/wily

« back to all changes in this revision

Viewing changes to src/easytag.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2013-10-11 17:07:47 UTC
  • mto: (8.1.4 sid)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: package-import@ubuntu.com-20131011170747-uqvgtx7uyd046j7z
Tags: upstream-2.1.8
ImportĀ upstreamĀ versionĀ 2.1.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
 
26
26
/* 'include' and 'define' created by autoconf/automake */
27
 
#include "../config.h"
 
27
#include "config.h"
28
28
 
29
29
#include "et_core.h"
30
30
 
31
31
 
32
 
#define APPNAME            "EasyTAG"
33
 
#define AUTHOR             "Jerome Couderc"    // Note: do not use accents
34
 
#define EMAIL              "easytag-mailing@lists.sourceforge.net"
35
 
#define WEBPAGE            "http://easytag.sourceforge.net"
36
 
/*#define VERSION "0.15.1" //Now version is defined in ../configure.h.in */
37
 
 
38
32
#define MAX_STRING_LEN     1024
39
33
 
40
 
#if defined(__GNUC__) && (__GNUC__ > 2 || __GNUC__ == 2 && __GNUC_MINOR__ >= 7)
41
 
#  define ATTRIBUTE_UNUSED __attribute__((__unused__))
42
 
#else
43
 
#  define ATTRIBUTE_UNUSED
44
 
#endif 
45
 
 
46
34
 
47
35
/***************
48
36
 * Declaration *
150
138
 
151
139
GdkCursor *MouseCursor;
152
140
 
153
 
gchar *HOME_VARIABLE;
154
141
gchar *INIT_DIRECTORY;
155
142
 
156
143
#ifndef errno
157
144
extern int errno;
158
145
#endif
159
146
 
160
 
/* A flag to start/avoid a new reading while an other one is running */
 
147
/* A flag to start/avoid a new reading while another one is running */
161
148
gboolean ReadingDirectory;
162
149
 
163
150
 
186
173
void Action_Redo_From_History_List      (void);
187
174
void Action_Delete_Selected_Files       (void);
188
175
gint Save_All_Files_With_Answer         (gboolean force_saving_files);
189
 
gint Save_Selected_Files_With_Answer    (gboolean force_saving_files);
190
176
 
191
177
void Action_Main_Stop_Button_Pressed    (void);
192
178
void Action_Select_Browser_Style        (void);
193
179
 
194
 
void File_Area_Set_Sensitive (gboolean activate);
195
 
void Tag_Area_Set_Sensitive  (gboolean activate);
196
180
void Tag_Area_Display_Controls (ET_File *ETFile);
197
181
 
198
182
gboolean Read_Directory               (gchar *path);