blob: a72be04defbd9f2c285ee4ba7c5dc785fc768ec0 (
plain)
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
|
// 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.
#ifndef CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_PINYIN_CONFIG_VIEW_H_
#define CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_PINYIN_CONFIG_VIEW_H_
#pragma once
#include <string>
#include "chrome/browser/chromeos/cros/input_method_library.h"
#include "chrome/browser/chromeos/language_preferences.h"
#include "chrome/browser/pref_member.h"
#include "chrome/browser/views/options/options_page_view.h"
#include "views/controls/button/checkbox.h"
#include "views/controls/combobox/combobox.h"
#include "views/controls/label.h"
#include "views/window/dialog_delegate.h"
namespace chromeos {
class LanguageCombobox;
template <typename DataType>
class LanguageComboboxModel;
// A dialog box for showing Traditional Chinese (Pinyin) input method
// preferences.
class LanguagePinyinConfigView : public views::ButtonListener,
public views::Combobox::Listener,
public views::DialogDelegate,
public OptionsPageView {
public:
explicit LanguagePinyinConfigView(Profile* profile);
virtual ~LanguagePinyinConfigView();
// views::ButtonListener overrides.
virtual void ButtonPressed(views::Button* sender, const views::Event& event);
// views::Combobox::Listener overrides.
virtual void ItemChanged(views::Combobox* sender,
int prev_index,
int new_index);
// views::DialogDelegate overrides.
virtual bool IsModal() const { return true; }
virtual views::View* GetContentsView() { return this; }
virtual int GetDialogButtons() const;
virtual std::wstring GetDialogButtonLabel(
MessageBoxFlags::DialogButton button) const;
virtual std::wstring GetWindowTitle() const;
// views::View overrides.
virtual void Layout();
virtual gfx::Size GetPreferredSize();
// OptionsPageView overrides.
virtual void InitControlLayout();
// NotificationObserver overrides.
virtual void Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details);
private:
// Updates the pinyin checkboxes.
void NotifyPrefChanged();
BooleanPrefMember pinyin_boolean_prefs_[
language_prefs::kNumPinyinBooleanPrefs];
// TODO(yusukes): Support integer prefs if needed.
views::View* contents_;
// A checkboxes for Pinyin.
views::Checkbox* pinyin_boolean_checkboxes_[
language_prefs::kNumPinyinBooleanPrefs];
struct DoublePinyinSchemaPrefAndAssociatedCombobox {
IntegerPrefMember multiple_choice_pref;
LanguageComboboxModel<int>* combobox_model;
LanguageCombobox* combobox;
} double_pinyin_schema_;
DISALLOW_COPY_AND_ASSIGN(LanguagePinyinConfigView);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_PINYIN_CONFIG_VIEW_H_
|