27 lines
634 B
Ruby
27 lines
634 B
Ruby
module Msf
|
|
module Ui
|
|
module Gtk2
|
|
|
|
class MsfDialog
|
|
##
|
|
# Display an error Gtk style
|
|
# parent: the Gtk parent widget
|
|
# title: the error title
|
|
# message: the error
|
|
##
|
|
class Warning < Msf::Ui::Gtk2::SkeletonAlert
|
|
def initialize(parent, title, message=nil)
|
|
super(parent, title, Gtk::Stock::DIALOG_WARNING,
|
|
[[Gtk::Stock::OK, Gtk::Dialog::RESPONSE_OK]],
|
|
message)
|
|
self.default_response = Gtk::Dialog::RESPONSE_OK
|
|
show_all and run
|
|
destroy
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end |