# vim: set fileencoding=utf-8 : # Copyright (C) 2005, 2008 Insecure.Com LLC. # # Author(s): João Paulo de Souza Medeiros # Adriano Monteiro Marques # Cleber Rodrigues # # 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 of the License, 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA import gtk from radialnet.bestwidgets import gtk_version_minor PRIMARY_TEXT_MARKUP = '%s' class BWAlertDialog(gtk.MessageDialog): """ """ def __init__(self, parent=None, flags=0, type=gtk.MESSAGE_INFO, buttons=gtk.BUTTONS_OK, primary_text=None, secondary_text=None): gtk.MessageDialog.__init__(self, parent, flags, type, buttons) self.connect('response', self.__destroy) self.set_resizable(False) self.set_title(_("Alert")) self.set_markup(PRIMARY_TEXT_MARKUP % primary_text) if secondary_text: # GTK up to version 2.4 does not have secondary_text if gtk_version_minor > 4: self.format_secondary_text(secondary_text) def __destroy(self, dialog, id): """ """ self.destroy() class BWWindow(gtk.Window): """ """ def __init__(self, type=gtk.WINDOW_TOPLEVEL): """ """ gtk.Window.__init__(self, type) self.set_border_width(5) BWMainWindow = gtk.Window