Remove status bar. Use progress bar to tell the user what bug-buddy is
[bug-buddy.git] / src / bug-buddy.h
bloba1531b67922a3ed09c2cf693ff4d87700e3343bf
1 /* bug-buddy bug submitting program
3 * Copyright (C) 1999 - 2001 Jacob Berkman
4 * Copyright 2000 Ximian, Inc.
6 * Author: jacob berkman <jacob@bug-buddy.org>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of version 2 of the GNU General Public
10 * License as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
22 #ifndef __BUG_BUDDY_H__
23 #define __BUG_BUDDY_H__
25 #include "bugzilla.h"
27 #include <glade/glade.h>
28 #include <gdk-pixbuf/gdk-pixbuf.h>
29 #include <sys/types.h>
32 typedef struct {
33 /* contact page */
34 gchar *name;
35 gchar *email;
37 /* package page */
38 gchar *package;
39 gchar *package_ver;
41 /* dialog page */
42 gchar *app_file;
43 int pid;
45 /* core page */
46 gchar *core_file;
48 /* file to include */
49 gchar *include_file;
51 /* pid to kill after the bug report */
52 int kill;
53 } GOptionData;
55 enum {
56 BUG_TYPE_CRASH,
57 BUG_TYPE_REQUEST
63 #endif /* __bug_buddy_h__ */