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

« back to all changes in this revision

Viewing changes to src/bar.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2006-04-15 15:47:47 UTC
  • mfrom: (1.2.2 upstream) (3.1.1 dapper)
  • Revision ID: james.westby@ubuntu.com-20060415154747-vr4eqoxwcrgs2ps1
* New upstream version:
  - New logo and icons,
  - Added ability to display all albums of an artist in the 'Artist / Album'
    view,
  - Added detection of the bugged version of id3lib when writting ID3 tag to 
    Unicode to inform the user (a patch for id3lib is supplied in package
    source),
  - For Ogg files, the field DESCRIPTION is also used for the comment,
  - Fixed stack corruption bugs in Fill Tag scanner,
  - Fixed loading disk number for FLAC tag,
  - Fixed error that displays MP3 files in red when no tag is present,
  - Fixed a crash in the CDDB window when getting tracks of a album,
  - Fixed playlist name bug when creating it in the parent directory,
  - Fixed manual CDDB search when using Squid,
  - Little fix for FLAC tags,
  - Fixed various bugs,
  - Russian translation updated,
  - Greek translation updated,
  - Spanish translation updated,
  - Japanese translation updated,
  - Czech translation updated,
  - Brazilian Portuguese translation updated
  - Danish translation updated,
  - Italian translation updated,
  - Hungarian translation updated,
  - German translation updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* bar.h - 2000/05/05 */
2
2
/*
3
3
 *  EasyTAG - Tag editor for MP3 and Ogg Vorbis files
4
 
 *  Copyright (C) 2000-2003  Jerome Couderc <j.couderc@ifrance.com>
 
4
 *  Copyright (C) 2000-2003  Jerome Couderc <easytag@gmail.com>
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
32
32
guint           StatusBarContext;
33
33
 
34
34
GtkWidget *CheckMenuItemBrowseSubdirMainMenu;
 
35
GtkWidget *CheckMenuItemBrowseHiddenDirMainMenu;
35
36
 
36
37
#define MENU_FILE       "FileMenu"
37
38
#define MENU_BROWSER    "BrowserMenu"
61
62
#define AM_UNDO_HISTORY             "Undo"
62
63
#define AM_REDO_HISTORY             "Redo"
63
64
#define AM_SAVE                     "SaveFile"
 
65
#define AM_SAVE_FORCED              "SaveFileForced"
64
66
#define AM_SELECT_ALL_FILES         "SelAll"
65
67
#define AM_UNSELECT_ALL_FILES       "UnselAll"
66
68
#define AM_INVERT_SELECTION         "SelInv"
69
71
#define AM_LOAD_DEFAULT_DIR         "GoToDefaultPath"
70
72
#define AM_SET_PATH_AS_DEFAULT      "SetDefaultPath"
71
73
#define AM_RENAME_DIR               "RenameDir"
72
 
#define AM_RECURSE                  "BrowseSubdir"
 
74
#define AM_BROWSE_SUBDIR            "BrowseSubdir"
 
75
#define AM_BROWSER_HIDDEN_DIR       "BrowseHiddenDir"
73
76
#define AM_COLLAPSE_TREE            "CollapseTree"
74
77
#define AM_INITIALIZE_TREE          "RefreshTree"
75
78
#define AM_RELOAD_DIRECTORY         "ReloadDir"
76
79
#define AM_TREE_OR_ARTISTALBUM_VIEW "ViewMode"
77
80
#define AM_BROWSE_DIRECTORY_WITH    "BrowseDir"
78
 
#define AM_BROWSE_FILE_WITH         "Open"
 
81
#define AM_OPEN_FILE_WITH           "OpenFile"
79
82
#define AM_OPEN_OPTIONS_WINDOW      "Preferences"
80
 
#define AM_SAVE_CONFIG              "SaveConfig"
81
83
#define AM_SCANNER_FILL_TAG         "FillTag"
82
84
#define AM_SCANNER_RENAME_FILE      "RenameFile"
83
85
#define AM_SCANNER_PROCESS_FIELDS   "ProcessFields"
84
86
#define AM_SEARCH_FILE              "SearchFile"
 
87
#define AM_CDDB_SEARCH_FILE         "CDDBSearchFile"
85
88
#define AM_CDDB_SEARCH              "CDDBSearch"
86
89
#define AM_FILENAME_FROM_TXT        "LoadFilenames"
87
90
#define AM_WRITE_PLAYLIST           "WritePlaylist"
89
92
#define AM_OPEN_ABOUT_WINDOW        "About"
90
93
#define AM_QUIT                     "Quit"
91
94
 
 
95
#define AM_ARTIST_RUN_AUDIO_PLAYER  "ArtistRunAudio"
 
96
#define AM_ARTIST_OPEN_FILE_WITH    "ArtistOpenFile"
 
97
#define AM_ALBUM_RUN_AUDIO_PLAYER   "AlbumRunAudio"
 
98
#define AM_ALBUM_OPEN_FILE_WITH     "AlbumOpenFile"
 
99
 
92
100
#define AM_STOP                     "Stop"
93
101
#define AM_VIEWMODE_TOGGLE          "ViewModeToggle"
94
102
 
141
149
 * Prototypes *
142
150
 **************/
143
151
 
144
 
void       Create_UI(GtkWidget **menubar, GtkWidget **toolbar);
145
 
GtkWidget *Create_Status_Bar (void);
146
 
void       Statusbar_Message (gchar *message, gint with_timer);
 
152
void       Create_UI           (GtkWidget **menubar, GtkWidget **toolbar);
 
153
GtkWidget *Create_Status_Bar   (void);
 
154
void       Statusbar_Message   (gchar *message, gint with_timer);
147
155
GtkWidget *Create_Progress_Bar (void);
148
156
 
149
157
void Check_Menu_Item_Toggled_Browse_Subdir (GtkWidget *checkmenuitem);
150
 
void Check_Menu_Item_Update_Browse_Subdir (void);
 
158
void Check_Menu_Item_Update_Browse_Subdir  (void);
 
159
void Check_Menu_Item_Toggled_Browse_Hidden_Dir (GtkWidget *checkmenuitem);
 
160
void Check_Menu_Item_Update_Browse_Hidden_Dir  (void);
151
161
 
152
162
#endif /* __BAR_H__ */