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
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/gtk/import_lock_dialog_gtk.h"
#include "app/l10n_util.h"
#include "app/resource_bundle.h"
#include "base/message_loop.h"
#include "chrome/browser/importer/importer.h"
#include "chrome/common/gtk_util.h"
#include "grit/generated_resources.h"
#include "grit/chromium_strings.h"
// static
void ImportLockDialogGtk::Show(GtkWindow* parent, ImporterHost* importer_host) {
new ImportLockDialogGtk(parent, importer_host);
}
ImportLockDialogGtk::ImportLockDialogGtk(GtkWindow* parent,
ImporterHost* importer_host) : importer_host_(importer_host) {
// Build the dialog.
dialog_ = gtk_dialog_new_with_buttons(
l10n_util::GetStringUTF8(IDS_IMPORTER_LOCK_TITLE).c_str(),
parent,
(GtkDialogFlags) (GTK_DIALOG_MODAL | GTK_DIALOG_NO_SEPARATOR),
l10n_util::GetStringUTF8(IDS_IMPORTER_LOCK_OK).c_str(),
GTK_RESPONSE_ACCEPT,
l10n_util::GetStringUTF8(IDS_IMPORTER_LOCK_CANCEL).c_str(),
GTK_RESPONSE_REJECT,
NULL);
GtkWidget* content_area = GTK_DIALOG(dialog_)->vbox;
gtk_box_set_spacing(GTK_BOX(content_area), GtkUtil::kContentAreaSpacing);
GtkWidget* label = gtk_label_new(
l10n_util::GetStringUTF8(IDS_IMPORTER_LOCK_TEXT).c_str());
gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
gtk_box_pack_start(GTK_BOX(content_area), label, FALSE, FALSE, 0);
g_signal_connect(dialog_, "response",
G_CALLBACK(HandleOnResponseDialog), this);
gtk_window_set_resizable(GTK_WINDOW(dialog_), FALSE);
gtk_widget_show_all(dialog_);
}
void ImportLockDialogGtk::OnDialogResponse(GtkWidget* widget, int response) {
if (response == GTK_RESPONSE_ACCEPT) {
MessageLoop::current()->PostTask(FROM_HERE, NewRunnableMethod(
importer_host_.get(), &ImporterHost::OnLockViewEnd, true));
} else {
MessageLoop::current()->PostTask(FROM_HERE, NewRunnableMethod(
importer_host_.get(), &ImporterHost::OnLockViewEnd, false));
}
gtk_widget_destroy(dialog_);
delete this;
}
|