~jcowgill/ubuntu/trusty/easytag/bug-1295882

« back to all changes in this revision

Viewing changes to src/misc.h

  • Committer: Package Import Robot
  • Author(s): James Cowgill, James Cowgill, Alessio Treglia
  • Date: 2014-02-28 15:50:09 UTC
  • mfrom: (8.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20140228155009-o7quqdw3qlldw98q
Tags: 2.1.10-1
* Team upload.

[ James Cowgill ]
* New upstream release (Closes: #560813, #500051, #518955, #727811).
* Add myself to the list of uploaders.
* Use debhelper v9.
* debian/control:
  - Build depend on desktop-file-utils and yelp-tools.
  - Recommend on gnome-icon-theme, gvfs and yelp (thanks David King)
  - Update homepage location.
  - Bump standards to 3.9.5 (no changes required).
* debian/copyright:
  - Rewritten to use DEP-5
* debian/rules:
  - Enable all hardening flags.
  - Remove unnecessary dh overrides.
* debian/patches:
  - Remove 1001-c90_style.patch, applied upstream.
  - Add patch to remove appdata from buildsystem.
    Can't use until appdata-tools is introduced into Debian.

[ Alessio Treglia ]
* Improve package description (Closes: #691687)

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 *
16
16
 *  You should have received a copy of the GNU General Public License
17
17
 *  along with this program; if not, write to the Free Software
18
 
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
18
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
19
 */
20
20
 
21
21
#ifndef __MISC_H__
28
28
 * Declaration *
29
29
 ***************/
30
30
 
31
 
GtkWidget *WritePlaylistWindow;
32
31
GtkWidget *playlist_use_mask_name;
33
 
GtkWidget *PlayListNameMaskCombo;
34
32
GtkWidget *playlist_use_dir_name;
35
33
GtkWidget *playlist_only_selected_files;
36
34
GtkWidget *playlist_full_path;
40
38
GtkWidget *playlist_content_none;
41
39
GtkWidget *playlist_content_filename;
42
40
GtkWidget *playlist_content_mask;
43
 
GtkWidget *PlayListContentMaskCombo;
44
 
GtkListStore *PlayListNameMaskModel;
45
 
GtkListStore *PlayListContentMaskModel;
46
41
 
47
42
 
48
43
/**************
52
47
/*
53
48
 * Create Pixmaps, buttons...
54
49
 */
55
 
GtkWidget *Create_Pixmap_Icon_With_Event_Box (const gchar *pixmap_name);
56
50
GtkWidget *Create_Button_With_Icon_And_Label (const gchar *pixmap_name, gchar *label);
57
51
GtkWidget *Create_Xpm_Image                  (const char **xpm_name);
58
52
 
67
61
/*
68
62
 * Other
69
63
 */
70
 
void Entry_Changed_Disable_Object (GtkWidget *widget_to_disable, GtkEditable *source_widget);
71
64
void Insert_Only_Digit (GtkEditable *editable,const gchar *text,gint length,gint *position,gpointer data);
72
65
gboolean Parse_Date (void);
73
66
void Load_Genres_List_To_UI (void);
87
80
void Run_Audio_Player_Using_Browser_Artist_List (void);
88
81
void Run_Audio_Player_Using_Browser_Album_List  (void);
89
82
 
90
 
gchar *Convert_Size     (gfloat size);
91
 
gchar *Convert_Size_1   (gfloat size);
92
83
gchar *Convert_Duration (gulong duration);
93
84
 
94
 
gulong Get_File_Size (const gchar *filename);
95
 
 
96
 
void Strip_String (gchar *string);
 
85
void et_show_help (void);
 
86
 
 
87
goffset et_get_file_size (const gchar *filename);
 
88
 
97
89
gint Combo_Alphabetic_Sort (GtkTreeModel *model, GtkTreeIter *a, GtkTreeIter *b, gpointer data);
98
90
 
 
91
gboolean et_run_program (const gchar *program_name, GList *args_list);
 
92
 
99
93
void File_Selection_Window_For_File      (GtkWidget *entry);
100
94
void File_Selection_Window_For_Directory (GtkWidget *entry);
101
95
 
111
105
void Open_Load_Filename_Window          (void);
112
106
void Load_Filename_Window_Apply_Changes (void);
113
107
 
 
108
gchar * et_disc_number_to_string (const guint disc_number);
 
109
gchar * et_track_number_to_string (const guint track_number);
 
110
 
 
111
void et_on_child_exited (GPid pid, gint status, gpointer user_data);
114
112
 
115
113
#endif /* __MISC_H__ */