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

« back to all changes in this revision

Viewing changes to src/easytag.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
 
40
40
gboolean Main_Stop_Button_Pressed;
41
41
 
42
42
GtkWidget *MainWindow;
43
 
GtkWidget *MenuArea;
44
 
GtkWidget *ToolArea;
45
 
GtkWidget *BrowseArea;
46
 
GtkWidget *FileArea;
47
 
GtkWidget *TagArea;
48
 
GtkWidget *StatusArea;
49
 
GtkWidget *ProgressArea;
50
43
GtkWidget *LogArea;
51
 
GtkWidget *ReadOnlyStatusIconBox;
52
 
GtkWidget *BrokenStatusIconBox;
53
 
GtkWidget *MainWindowHPaned;
54
 
GtkWidget *MainWindowVPaned;
55
44
 
56
45
/* File Area */
57
46
GtkWidget *FileFrame;
93
82
GtkWidget    *URLEntry;
94
83
GtkWidget    *EncodedByEntry;
95
84
GtkWidget    *PictureEntryView;
96
 
GtkListStore *PictureEntryModel;
97
 
// Labels
98
 
GtkWidget    *TitleLabel;
99
 
GtkWidget    *ArtistLabel;
100
 
GtkWidget    *AlbumArtistLabel;
101
 
GtkWidget    *AlbumLabel;
102
 
GtkWidget    *DiscNumberLabel;
103
 
GtkWidget    *YearLabel;
104
 
GtkWidget    *TrackLabel;
105
 
GtkWidget    *GenreLabel;
106
 
GtkWidget    *CommentLabel;
107
 
GtkWidget    *ComposerLabel;
108
 
GtkWidget    *OrigArtistLabel;
109
 
GtkWidget    *CopyrightLabel;
110
 
GtkWidget    *URLLabel;
111
 
GtkWidget    *EncodedByLabel;
112
 
GtkWidget    *PictureLabel;
113
 
// Mini buttons
114
 
GtkWidget    *TitleMButton;
115
 
GtkWidget    *ArtistMButton;
116
 
GtkWidget    *AlbumArtistMButton;
117
 
GtkWidget    *AlbumMButton;
118
 
GtkWidget    *DiscNumberMButton;
119
 
GtkWidget    *YearMButton;
120
 
GtkWidget    *TrackMButton;
121
 
GtkWidget    *TrackMButtonSequence;
122
 
GtkWidget    *TrackMButtonNbrFiles;
123
 
GtkWidget    *GenreMButton;
124
 
GtkWidget    *CommentMButton;
125
 
GtkWidget    *ComposerMButton;
126
 
GtkWidget    *OrigArtistMButton;
127
 
GtkWidget    *CopyrightMButton;
128
 
GtkWidget    *URLMButton;
129
 
GtkWidget    *EncodedByMButton;
130
 
GtkWidget    *PictureMButton;
131
 
 
132
 
// Other for picture
133
 
GtkWidget *PictureClearButton;
134
 
GtkWidget *PictureAddButton;
135
 
GtkWidget *PictureSaveButton;
136
 
GtkWidget *PicturePropertiesButton;
137
 
GtkWidget *PictureScrollWindow;
138
 
 
139
 
GdkCursor *MouseCursor;
 
85
 
 
86
/* Other for picture. */
 
87
GtkToolItem *remove_image_toolitem;
 
88
GtkToolItem *add_image_toolitem;
 
89
GtkToolItem *save_image_toolitem;
 
90
GtkToolItem *image_properties_toolitem;
140
91
 
141
92
gchar *INIT_DIRECTORY;
142
93
 
151
102
/**************
152
103
 * Prototypes *
153
104
 **************/
154
 
void Action_Select_All_Files            (void);
155
 
void Action_Unselect_All_Files          (void);
 
105
void et_on_action_select_all (void);
 
106
void et_on_action_unselect_all (void);
156
107
void Action_Invert_Files_Selection      (void);
157
108
void Action_Select_Prev_File            (void);
158
109
void Action_Select_Next_File            (void);
176
127
 
177
128
void Action_Main_Stop_Button_Pressed    (void);
178
129
void Action_Select_Browser_Style        (void);
 
130
void et_on_action_select_scan_mode (GtkRadioAction *action,
 
131
                                    GtkRadioAction *current,
 
132
                                    gpointer user_data);
179
133
 
180
134
void Tag_Area_Display_Controls (ET_File *ETFile);
181
135