blob: ee8df1b18b13939ef44164af5e5027357cf876dc (
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
|
// Copyright (c) 2011 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 VIEWS_CONTROLS_TEXTFIELD_TEXTFIELD_CONTROLLER_H_
#define VIEWS_CONTROLS_TEXTFIELD_TEXTFIELD_CONTROLLER_H_
#pragma once
#include "base/string16.h"
namespace views {
class KeyEvent;
class Textfield;
// This defines the callback interface for other code to be notified of changes
// in the state of a text field.
class TextfieldController {
public:
// This method is called whenever the text in the field changes.
virtual void ContentsChanged(Textfield* sender,
const string16& new_contents) = 0;
// This method is called to get notified about keystrokes in the edit.
// Returns true if the message was handled and should not be processed
// further. If it returns false the processing continues.
virtual bool HandleKeyEvent(Textfield* sender,
const KeyEvent& key_event) = 0;
// Called before performing a user action that may change the textfield.
// It's currently only supported by Views implementation.
virtual void OnBeforeUserAction(Textfield* sender) {}
// Called after performing a user action that may change the textfield.
// It's currently only supported by Views implementation.
virtual void OnAfterUserAction(Textfield* sender) {}
protected:
virtual ~TextfieldController() {}
};
} // namespace views
#endif // VIEWS_CONTROLS_TEXTFIELD_TEXTFIELD_CONTROLLER_H_
|