~ubuntu-branches/ubuntu/natty/miro/natty

« back to all changes in this revision

Viewing changes to lib/frontends/widgets/crashdialog.py

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2011-01-22 02:46:33 UTC
  • mfrom: (1.4.10 upstream) (1.7.5 experimental)
  • Revision ID: james.westby@ubuntu.com-20110122024633-kjme8u93y2il5nmf
Tags: 3.5.1-1ubuntu1
* Merge from debian.  Remaining ubuntu changes:
  - Use python 2.7 instead of python 2.6
  - Relax dependency on python-dbus to >= 0.83.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Miro - an RSS based video player application
 
2
# Copyright (C) 2005-2010 Participatory Culture Foundation
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
17
#
 
18
# In addition, as a special exception, the copyright holders give
 
19
# permission to link the code of portions of this program with the OpenSSL
 
20
# library.
 
21
#
 
22
# You must obey the GNU General Public License in all respects for all of
 
23
# the code used other than OpenSSL. If you modify file(s) with this
 
24
# exception, you may extend this exception to your version of the file(s),
 
25
# but you are not obligated to do so. If you do not wish to do so, delete
 
26
# this exception statement from your version. If you delete this exception
 
27
# statement from all source files in the program, then also delete it here.
 
28
 
 
29
"""miro.frontends.widgets.crashdialog -- Code for showing the
 
30
crash dialog.
 
31
"""
 
32
 
 
33
import logging
 
34
from miro import messages
 
35
from miro import config
 
36
from miro import prefs
 
37
 
 
38
from miro.gtcache import gettext as _
 
39
 
 
40
from miro.plat.frontends.widgets import widgetset
 
41
from miro.frontends.widgets import widgetutil
 
42
from miro.frontends.widgets.dialogs import MainDialog
 
43
from miro.dialogs import BUTTON_IGNORE, BUTTON_SUBMIT_REPORT
 
44
 
 
45
IGNORE_ERRORS = -1
 
46
 
 
47
def run_dialog(report):
 
48
    window = MainDialog(_("Internal Error"))
 
49
    try:
 
50
        try:
 
51
            vbox = widgetset.VBox(spacing=5)
 
52
 
 
53
            lab = widgetset.Label(_(
 
54
                "%(appname)s has encountered an internal error.  You can "
 
55
                "help us track down this problem and fix it by submitting "
 
56
                "an error report.",
 
57
                {"appname": config.get(prefs.SHORT_APP_NAME)}
 
58
                ))
 
59
 
 
60
            lab.set_wrap(True)
 
61
            lab.set_size_request(600, -1)
 
62
 
 
63
            vbox.pack_start(widgetutil.align_left(lab))
 
64
 
 
65
            cbx = widgetset.Checkbox(_(
 
66
                "Include entire program database including all video and "
 
67
                "feed metadata with crash report"
 
68
            ))
 
69
            vbox.pack_start(widgetutil.align_left(cbx))
 
70
 
 
71
            lab2 = widgetset.Label(_("Describe what you were doing when you got this error:"))
 
72
            vbox.pack_start(widgetutil.align_left(lab2))
 
73
 
 
74
            text = widgetset.MultilineTextEntry()
 
75
            text.set_size_request(600, 100)
 
76
            vbox.pack_start(widgetutil.align_left(text))
 
77
 
 
78
            window.set_extra_widget(vbox)
 
79
            window.add_button(BUTTON_SUBMIT_REPORT.text)
 
80
            window.add_button(BUTTON_IGNORE.text)
 
81
 
 
82
            ret = window.run()
 
83
            if ret == 0:
 
84
                messages.ReportCrash(report, text.get_text(), cbx.get_checked()).send_to_backend()
 
85
            else:
 
86
                return IGNORE_ERRORS
 
87
        except StandardError:
 
88
            logging.exception("crashdialog threw exception.")
 
89
    finally:
 
90
        window.destroy()