OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #include "xfa/fwl/core/ifwl_edit.h" | 7 #include "xfa/fwl/core/ifwl_edit.h" |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <memory> | 10 #include <memory> |
11 #include <utility> | 11 #include <utility> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "third_party/base/ptr_util.h" | 14 #include "third_party/base/ptr_util.h" |
15 #include "third_party/base/stl_util.h" | 15 #include "third_party/base/stl_util.h" |
16 #include "xfa/fde/cfde_txtedtengine.h" | 16 #include "xfa/fde/cfde_txtedtengine.h" |
17 #include "xfa/fde/fde_gedevice.h" | 17 #include "xfa/fde/fde_gedevice.h" |
18 #include "xfa/fde/fde_render.h" | 18 #include "xfa/fde/fde_render.h" |
19 #include "xfa/fde/ifde_txtedtpage.h" | 19 #include "xfa/fde/ifde_txtedtpage.h" |
20 #include "xfa/fgas/font/fgas_gefont.h" | 20 #include "xfa/fgas/font/cfgas_gefont.h" |
21 #include "xfa/fwl/core/cfwl_evtcheckword.h" | 21 #include "xfa/fwl/core/cfwl_evtcheckword.h" |
22 #include "xfa/fwl/core/cfwl_evttextchanged.h" | 22 #include "xfa/fwl/core/cfwl_evttextchanged.h" |
23 #include "xfa/fwl/core/cfwl_evttextfull.h" | 23 #include "xfa/fwl/core/cfwl_evttextfull.h" |
24 #include "xfa/fwl/core/cfwl_evtvalidate.h" | 24 #include "xfa/fwl/core/cfwl_evtvalidate.h" |
25 #include "xfa/fwl/core/cfwl_msgkey.h" | 25 #include "xfa/fwl/core/cfwl_msgkey.h" |
26 #include "xfa/fwl/core/cfwl_msgmouse.h" | 26 #include "xfa/fwl/core/cfwl_msgmouse.h" |
27 #include "xfa/fwl/core/cfwl_themebackground.h" | 27 #include "xfa/fwl/core/cfwl_themebackground.h" |
28 #include "xfa/fwl/core/cfwl_themepart.h" | 28 #include "xfa/fwl/core/cfwl_themepart.h" |
29 #include "xfa/fwl/core/cfwl_widgetmgr.h" | 29 #include "xfa/fwl/core/cfwl_widgetmgr.h" |
30 #include "xfa/fwl/core/ifwl_app.h" | 30 #include "xfa/fwl/core/ifwl_app.h" |
(...skipping 1621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1652 UpdateOffset(pScrollBar, fPos - iCurPos); | 1652 UpdateOffset(pScrollBar, fPos - iCurPos); |
1653 UpdateCaret(); | 1653 UpdateCaret(); |
1654 | 1654 |
1655 CFX_RectF rect; | 1655 CFX_RectF rect; |
1656 GetWidgetRect(rect); | 1656 GetWidgetRect(rect); |
1657 CFX_RectF rtInvalidate; | 1657 CFX_RectF rtInvalidate; |
1658 rtInvalidate.Set(0, 0, rect.width + 2, rect.height + 2); | 1658 rtInvalidate.Set(0, 0, rect.width + 2, rect.height + 2); |
1659 Repaint(&rtInvalidate); | 1659 Repaint(&rtInvalidate); |
1660 return true; | 1660 return true; |
1661 } | 1661 } |
OLD | NEW |