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/basewidget/fwl_checkboximp.h" | 7 #include "xfa/fwl/basewidget/fwl_checkboximp.h" |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 | 10 |
11 #include "xfa/fde/tto/fde_textout.h" | 11 #include "xfa/fde/tto/fde_textout.h" |
12 #include "xfa/fwl/basewidget/ifwl_checkbox.h" | 12 #include "xfa/fwl/basewidget/ifwl_checkbox.h" |
13 #include "xfa/fwl/core/cfwl_message.h" | 13 #include "xfa/fwl/core/cfwl_message.h" |
14 #include "xfa/fwl/core/cfwl_themebackground.h" | 14 #include "xfa/fwl/core/cfwl_themebackground.h" |
15 #include "xfa/fwl/core/cfwl_themetext.h" | 15 #include "xfa/fwl/core/cfwl_themetext.h" |
| 16 #include "xfa/fwl/core/cfwl_widgetmgr.h" |
16 #include "xfa/fwl/core/fwl_noteimp.h" | 17 #include "xfa/fwl/core/fwl_noteimp.h" |
17 #include "xfa/fwl/core/fwl_widgetimp.h" | 18 #include "xfa/fwl/core/fwl_widgetimp.h" |
18 #include "xfa/fwl/core/fwl_widgetmgrimp.h" | |
19 #include "xfa/fwl/core/ifwl_themeprovider.h" | 19 #include "xfa/fwl/core/ifwl_themeprovider.h" |
20 | 20 |
21 namespace { | 21 namespace { |
22 | 22 |
23 const int kCaptionMargin = 5; | 23 const int kCaptionMargin = 5; |
24 | 24 |
25 } // namespace | 25 } // namespace |
26 | 26 |
27 // static | 27 // static |
28 IFWL_CheckBox* IFWL_CheckBox::Create(const CFWL_WidgetImpProperties& properties, | 28 IFWL_CheckBox* IFWL_CheckBox::Create(const CFWL_WidgetImpProperties& properties, |
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
563 void CFWL_CheckBoxImpDelegate::OnKeyDown(CFWL_MsgKey* pMsg) { | 563 void CFWL_CheckBoxImpDelegate::OnKeyDown(CFWL_MsgKey* pMsg) { |
564 if (pMsg->m_dwKeyCode == FWL_VKEY_Tab) { | 564 if (pMsg->m_dwKeyCode == FWL_VKEY_Tab) { |
565 m_pOwner->DispatchKeyEvent(pMsg); | 565 m_pOwner->DispatchKeyEvent(pMsg); |
566 return; | 566 return; |
567 } | 567 } |
568 if (pMsg->m_dwKeyCode == FWL_VKEY_Return || | 568 if (pMsg->m_dwKeyCode == FWL_VKEY_Return || |
569 pMsg->m_dwKeyCode == FWL_VKEY_Space) { | 569 pMsg->m_dwKeyCode == FWL_VKEY_Space) { |
570 m_pOwner->NextStates(); | 570 m_pOwner->NextStates(); |
571 } | 571 } |
572 } | 572 } |
OLD | NEW |