1/*
2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
3 * Copyright (C) 2010 Apple Inc. All rights reserved.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
14 *
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
19 */
20
21#pragma once
22
23namespace WebCore {
24
25// There are multiple editing details that are different on Windows than Macintosh.
26// We use a single switch for all of them. Some examples:
27//
28// 1) Clicking below the last line of an editable area puts the caret at the end
29// of the last line on Mac, but in the middle of the last line on Windows.
30// 2) Pushing the down arrow key on the last line puts the caret at the end of the
31// last line on Mac, but does nothing on Windows. A similar case exists on the
32// top line.
33//
34// This setting is intended to control these sorts of behaviors. There are some other
35// behaviors with individual function calls on EditorClient (smart copy and paste and
36// selecting the space after a double click) that could be combined with this if
37// if possible in the future.
38enum EditingBehaviorType {
39 EditingMacBehavior,
40 EditingWindowsBehavior,
41 EditingUnixBehavior,
42 EditingIOSBehavior
43};
44
45} // WebCore namespace
46