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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
// 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/first_run_dialog.h"
#include "app/l10n_util.h"
#include "app/resource_bundle.h"
#include "base/message_loop.h"
#include "chrome/app/breakpad_linux.h"
#include "chrome/browser/shell_integration.h"
#include "chrome/common/gtk_util.h"
#include "chrome/installer/util/google_update_settings.h"
#include "grit/generated_resources.h"
#include "grit/google_chrome_strings.h"
#include "grit/locale_settings.h"
// static
bool FirstRunDialog::Show(Profile* profile) {
int response = -1;
new FirstRunDialog(profile, response);
return (response == GTK_RESPONSE_ACCEPT);
}
FirstRunDialog::FirstRunDialog(Profile* profile, int& response)
: dialog_(NULL), report_crashes_(NULL), make_default_(NULL),
import_data_(NULL), import_profile_(NULL), profile_(profile),
response_(response), importer_host_(new ImporterHost()) {
dialog_ = gtk_dialog_new_with_buttons(
l10n_util::GetStringUTF8(IDS_FIRSTRUN_DLG_TITLE).c_str(),
NULL, // No parent
(GtkDialogFlags) (GTK_DIALOG_MODAL | GTK_DIALOG_NO_SEPARATOR),
GTK_STOCK_CANCEL,
GTK_RESPONSE_REJECT,
l10n_util::GetStringUTF8(IDS_FIRSTRUN_DLG_OK).c_str(),
GTK_RESPONSE_ACCEPT,
NULL);
gtk_window_set_resizable(GTK_WINDOW(dialog_), FALSE);
int width, height;
GtkUtil::GetWidgetSizeFromResources(dialog_,
IDS_FIRSTRUN_DIALOG_WIDTH_CHARS,
IDS_FIRSTRUN_DIALOG_HEIGHT_LINES,
&width, &height);
gtk_window_set_default_size(GTK_WINDOW(dialog_), width, height);
g_signal_connect(G_OBJECT(dialog_), "delete-event",
G_CALLBACK(gtk_widget_hide_on_delete), NULL);
GtkWidget* content_area = GTK_DIALOG(dialog_)->vbox;
gtk_box_set_spacing(GTK_BOX(content_area), 18);
GtkWidget* vbox = gtk_vbox_new(FALSE, 12);
#if defined(GOOGLE_CHROME_BUILD)
// TODO(port): remove this warning before beta release when we have all the
// privacy features working.
GtkWidget* privacy_label = gtk_label_new(
"This version of Google Chrome for Linux is not appropriate for "
"general consumer use. Certain privacy features are unavailable "
"at this time as described in our privacy policy at");
gtk_misc_set_alignment(GTK_MISC(privacy_label), 0, 0);
gtk_label_set_line_wrap(GTK_LABEL(privacy_label), TRUE);
gtk_box_pack_start(GTK_BOX(vbox), privacy_label, FALSE, FALSE, 0);
GtkWidget* url_label = gtk_label_new(NULL);
gtk_label_set_markup(GTK_LABEL(url_label),
"<tt>http://www.google.com/chrome/intl/en/privacy_linux.html</tt>");
// Set selectable to allow copy and paste.
gtk_label_set_selectable(GTK_LABEL(url_label), TRUE);
gtk_box_pack_start(GTK_BOX(vbox), url_label, FALSE, FALSE, 0);
report_crashes_ = gtk_check_button_new();
GtkWidget* check_label = gtk_label_new(
l10n_util::GetStringUTF8(IDS_OPTIONS_ENABLE_LOGGING).c_str());
gtk_label_set_line_wrap(GTK_LABEL(check_label), TRUE);
gtk_container_add(GTK_CONTAINER(report_crashes_), check_label);
gtk_box_pack_start(GTK_BOX(vbox), report_crashes_, FALSE, FALSE, 0);
#endif
make_default_ = gtk_check_button_new_with_label(
l10n_util::GetStringUTF8(IDS_FR_CUSTOMIZE_DEFAULT_BROWSER).c_str());
gtk_box_pack_start(GTK_BOX(vbox), make_default_, FALSE, FALSE, 0);
GtkWidget* combo_hbox = gtk_hbox_new(FALSE, GtkUtil::kLabelSpacing);
import_data_ = gtk_check_button_new_with_label(
l10n_util::GetStringUTF8(IDS_FR_CUSTOMIZE_IMPORT).c_str());
gtk_box_pack_start(GTK_BOX(combo_hbox), import_data_, FALSE, FALSE, 0);
import_profile_ = gtk_combo_box_new_text();
gtk_box_pack_start(GTK_BOX(combo_hbox), import_profile_, TRUE, TRUE, 0);
gtk_box_pack_start(GTK_BOX(vbox), combo_hbox, FALSE, FALSE, 0);
// Detect any supported browsers that we can import from and fill
// up the combo box. If none found, disable import data checkbox.
int profiles_count = importer_host_->GetAvailableProfileCount();
if (profiles_count > 0) {
for (int i = 0; i < profiles_count; i++) {
std::wstring profile = importer_host_->GetSourceProfileNameAt(i);
gtk_combo_box_append_text(GTK_COMBO_BOX(import_profile_),
WideToUTF8(profile).c_str());
}
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(import_data_), TRUE);
gtk_combo_box_set_active(GTK_COMBO_BOX(import_profile_), 0);
} else {
gtk_combo_box_append_text(GTK_COMBO_BOX(import_profile_),
l10n_util::GetStringUTF8(IDS_IMPORT_NO_PROFILE_FOUND).c_str());
gtk_combo_box_set_active(GTK_COMBO_BOX(import_profile_), 0);
gtk_widget_set_sensitive(import_data_, FALSE);
gtk_widget_set_sensitive(import_profile_, FALSE);
}
gtk_box_pack_start(GTK_BOX(content_area), vbox, FALSE, FALSE, 0);
// TODO(port): it should be sufficient to just run the dialog:
// int response = gtk_dialog_run(GTK_DIALOG(dialog));
// but that spins a nested message loop and hoses us. :(
// http://code.google.com/p/chromium/issues/detail?id=12552
// Instead, run a loop and extract the response manually.
g_signal_connect(G_OBJECT(dialog_), "response",
G_CALLBACK(HandleOnResponseDialog), this);
gtk_widget_show_all(dialog_);
MessageLoop::current()->Run();
}
void FirstRunDialog::OnDialogResponse(GtkWidget* widget, int response) {
bool import_started = false;
gtk_widget_hide_all(dialog_);
response_ = response;
if (response == GTK_RESPONSE_ACCEPT) {
// Mark that first run has ran.
FirstRun::CreateSentinel();
// Check if user has opted into reporting.
if (report_crashes_ &&
gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(report_crashes_))) {
if (GoogleUpdateSettings::SetCollectStatsConsent(true)) {
InitCrashReporter();
}
} else {
GoogleUpdateSettings::SetCollectStatsConsent(false);
}
// If selected set as default browser.
if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(make_default_)))
ShellIntegration::SetAsDefaultBrowser();
// Import data if selected.
if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(import_data_))) {
const ProfileInfo& source_profile =
importer_host_->GetSourceProfileInfoAt(
gtk_combo_box_get_active(GTK_COMBO_BOX(import_profile_)));
int items = SEARCH_ENGINES + HISTORY + FAVORITES + HOME_PAGE + PASSWORDS;
// TODO(port): Should we do the actual import in a new process like
// Windows?
StartImportingWithUI(GTK_WINDOW(dialog_), items, importer_host_.get(),
source_profile, profile_, this, true);
import_started = true;
}
}
if (!import_started)
FirstRunDone();
}
void FirstRunDialog::FirstRunDone() {
// Set preference to show first run bubble and welcome page.
FirstRun::SetShowFirstRunBubblePref();
FirstRun::SetShowWelcomePagePref();
gtk_widget_destroy(dialog_);
MessageLoop::current()->Quit();
}
|