File: ErrorDialog.py

package info (click to toggle)
postr 0.13.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 2,160 kB
  • ctags: 485
  • sloc: sh: 4,139; python: 4,058; makefile: 141
file content (64 lines) | stat: -rw-r--r-- 2,350 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Postr, a Flickr Uploader
#
# Copyright (C) 2006-2008 Ross Burton <ross@burtonini.com>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
# St, Fifth Floor, Boston, MA 02110-1301 USA

import gtk

class ErrorDialog(gtk.MessageDialog):
    def __init__(self, parent=None):
        gtk.MessageDialog.__init__(self, flags=gtk.DIALOG_DESTROY_WITH_PARENT,
                                   type=gtk.MESSAGE_ERROR,
                                   buttons=gtk.BUTTONS_OK,
                                   parent=parent,
                                   message_format=_("An error occurred"))
        self.connect("response", lambda dialog, response: dialog.destroy())
        self.expander = None

    def set_from_failure (self, failure):
        print failure
        # TODO: format nicer
        self.format_secondary_text (str (failure.value))

    def set_from_exception (self, exception):
        print exception
        # TODO: format nicer
        self.format_secondary_text (str (exception))

    def set_from_string(self, message):
        # TODO: format nicer
        self.format_secondary_text (message)

    def add_details(self, message):
        # TODO: format nicer
        if not self.expander:
            self.expander = gtk.Expander(_('Details'))
            self.view = gtk.TextView();
            self.buffer = self.view.get_buffer()

            sw = gtk.ScrolledWindow()
            sw.set_shadow_type(gtk.SHADOW_ETCHED_IN)
            sw.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)

            sw.add(self.view)

            self.expander.add(sw)
            self.expander.show_all()
            self.vbox.pack_start(self.expander)


        iter = self.buffer.get_end_iter()
        self.buffer.insert(iter, message+'\n')