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

« back to all changes in this revision

Viewing changes to src/msgbox.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:
1
 
/* msgbox.h - 2000/10/13 */
2
 
/*
3
 
 *  EasyTAG - Tag editor for MP3 and Ogg Vorbis files
4
 
 *  Copyright (C) 2000-2003  Jerome Couderc <easytag@gmail.com>
5
 
 *
6
 
 *  This program is free software; you can redistribute it and/or modify
7
 
 *  it under the terms of the GNU General Public License as published by
8
 
 *  the Free Software Foundation; either version 2 of the License, or
9
 
 *  (at your option) any later version.
10
 
 *
11
 
 *  This program is distributed in the hope that it will be useful,
12
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 *  GNU General Public License for more details.
15
 
 *
16
 
 *  You should have received a copy of the GNU General Public License
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.
19
 
 */
20
 
 
21
 
 
22
 
#ifndef __MSGBOX_H__
23
 
#define __MSGBOX_H__
24
 
 
25
 
 
26
 
#include <gtk/gtk.h>
27
 
 
28
 
 
29
 
/*
30
 
enum Button_Type 
31
 
{     
32
 
    BUTTON_OK       = 1<<0 ,
33
 
    BUTTON_YES      = 1<<1 ,
34
 
    BUTTON_NO       = 1<<2 ,
35
 
    BUTTON_APPLY    = 1<<3 ,
36
 
    BUTTON_SAVE     = 1<<4 ,
37
 
    BUTTON_CANCEL   = 1<<5 ,
38
 
    BUTTON_CLOSE    = 1<<6 ,
39
 
    BUTTON_WRITE    = 1<<7 ,
40
 
    BUTTON_EXECUTE  = 1<<8 ,
41
 
    BUTTON_SEARCH   = 1<<9 ,
42
 
    BUTTON_BROWSE   = 1<<10
43
 
};
44
 
 
45
 
enum Message_Type 
46
 
{     
47
 
    MSG_INFO        = 1<<0,
48
 
    MSG_ERROR       = 1<<1,
49
 
    MSG_QUESTION    = 1<<2,
50
 
    MSG_WARNING     = 1<<3
51
 
};
52
 
*/
53
 
 
54
 
 
55
 
GtkWidget *msg_box_new (gchar *title, GtkWindow *parent, GtkWidget **check_button, GtkDialogFlags flags, gchar *message, const gchar *icon, ...);
56
 
 
57
 
 
58
 
 
59
 
#endif /* __MSGBOX_H__ */