blob: 88f3188807fa76d941c2ee73fadeb79a5cb30248 (
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
|
// 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_HANGUL_CONFIG_VIEW_H_
#define CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_HANGUL_CONFIG_VIEW_H_
#include <string>
#include "base/scoped_ptr.h"
#include "chrome/browser/chromeos/cros/input_method_library.h"
#include "chrome/browser/pref_member.h"
#include "chrome/browser/views/options/options_page_view.h"
#include "views/controls/combobox/combobox.h"
#include "views/controls/label.h"
#include "views/window/dialog_delegate.h"
namespace chromeos {
class HangulKeyboardComboboxModel;
// A dialog box for showing Korean input method preferences.
class LanguageHangulConfigView : public views::Combobox::Listener,
public views::DialogDelegate,
public OptionsPageView {
public:
explicit LanguageHangulConfigView(Profile* profile);
virtual ~LanguageHangulConfigView();
// 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 hangul keyboard combobox.
void NotifyPrefChanged();
StringPrefMember keyboard_pref_;
views::View* contents_;
// A combobox for Hangul keyboard layouts and its model.
views::Combobox* hangul_keyboard_combobox_;
scoped_ptr<HangulKeyboardComboboxModel> hangul_keyboard_combobox_model_;
DISALLOW_COPY_AND_ASSIGN(LanguageHangulConfigView);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_HANGUL_CONFIG_VIEW_H_
|