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
|
// Copyright (c) 2010 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/update_recommended_dialog.h"
#include <gtk/gtk.h>
#include "app/l10n_util.h"
#include "chrome/browser/browser_list.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/gtk/gtk_util.h"
#include "chrome/browser/prefs/pref_service.h"
#include "chrome/common/pref_names.h"
#include "grit/chromium_strings.h"
#include "grit/generated_resources.h"
static const int kMessageWidth = 400;
// static
void UpdateRecommendedDialog::Show(GtkWindow* parent) {
new UpdateRecommendedDialog(parent);
}
UpdateRecommendedDialog::UpdateRecommendedDialog(GtkWindow* parent) {
dialog_ = gtk_dialog_new_with_buttons(
l10n_util::GetStringUTF8(IDS_PRODUCT_NAME).c_str(),
parent,
static_cast<GtkDialogFlags>(GTK_DIALOG_MODAL | GTK_DIALOG_NO_SEPARATOR),
l10n_util::GetStringUTF8(IDS_NOT_NOW).c_str(),
GTK_RESPONSE_REJECT,
l10n_util::GetStringUTF8(IDS_RESTART_AND_UPDATE).c_str(),
GTK_RESPONSE_ACCEPT,
NULL);
g_signal_connect(dialog_, "response", G_CALLBACK(OnResponseThunk), this);
// Add the message text.
std::string text(
l10n_util::GetStringFUTF8(IDS_UPDATE_RECOMMENDED,
l10n_util::GetStringUTF16(IDS_PRODUCT_NAME)));
GtkWidget* label = gtk_label_new(text.c_str());
gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
gtk_widget_set_size_request(label, kMessageWidth, -1);
gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog_)->vbox), label,
FALSE, FALSE, 0);
gtk_window_set_resizable(GTK_WINDOW(dialog_), FALSE);
gtk_widget_show_all(dialog_);
}
UpdateRecommendedDialog::~UpdateRecommendedDialog() {
}
void UpdateRecommendedDialog::OnResponse(GtkWidget* sender, gint response_id) {
gtk_widget_destroy(dialog_);
if (response_id == GTK_RESPONSE_ACCEPT) {
// Set the flag to restore the last session on shutdown.
PrefService* pref_service = g_browser_process->local_state();
pref_service->SetBoolean(prefs::kRestartLastSessionOnShutdown, true);
BrowserList::CloseAllBrowsersAndExit();
}
delete this;
}
|