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 #ifndef _PWL_WND_H_ | 7 #ifndef FPDFSDK_INCLUDE_PDFWINDOW_PWL_WND_H_ |
8 #define _PWL_WND_H_ | 8 #define FPDFSDK_INCLUDE_PDFWINDOW_PWL_WND_H_ |
9 | 9 |
10 #include "../../../core/include/fxcrt/fx_basic.h" | 10 #include "../../../core/include/fxcrt/fx_basic.h" |
11 #include "../../../core/include/fpdfdoc/fpdf_doc.h" | 11 #include "../../../core/include/fpdfdoc/fpdf_doc.h" |
12 #include "../fx_systemhandler.h" | 12 #include "../fx_systemhandler.h" |
13 | 13 |
14 class CPWL_MsgControl; | 14 class CPWL_MsgControl; |
15 class CPWL_ScrollBar; | 15 class CPWL_ScrollBar; |
16 class CPWL_Timer; | 16 class CPWL_Timer; |
17 class CPWL_TimerHandler; | 17 class CPWL_TimerHandler; |
18 class CPWL_Wnd; | 18 class CPWL_Wnd; |
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
467 | 467 |
468 CPDF_Rect m_rcWindow; | 468 CPDF_Rect m_rcWindow; |
469 CPDF_Rect m_rcClip; | 469 CPDF_Rect m_rcClip; |
470 | 470 |
471 FX_BOOL m_bCreated;
| 471 FX_BOOL m_bCreated;
|
472 FX_BOOL m_bVisible; | 472 FX_BOOL m_bVisible; |
473 FX_BOOL m_bNotifying; | 473 FX_BOOL m_bNotifying; |
474 FX_BOOL m_bEnabled; | 474 FX_BOOL m_bEnabled; |
475 }; | 475 }; |
476 | 476 |
477 // #ifndef VK_END | 477 #endif // FPDFSDK_INCLUDE_PDFWINDOW_PWL_WND_H_ |
478 // | |
479 // #define VK_END 0x23 | |
480 // #define VK_HOME 0x24 | |
481 // #define VK_LEFT 0x25 | |
482 // #define VK_UP 0x26 | |
483 // #define VK_RIGHT 0x27 | |
484 // #define VK_DOWN 0x28 | |
485 // #define VK_INSERT 0x2D | |
486 // #define VK_DELETE 0x2E | |
487 // | |
488 // #define VK_BACK 0x08 | |
489 // #define VK_TAB 0x09 | |
490 // | |
491 // #define VK_CLEAR 0x0C | |
492 // #define VK_RETURN 0x0D | |
493 // #define VK_ESCAPE 0x1B | |
494 // #define VK_SPACE 0x20 | |
495 // #endif | |
496 // | |
497 // #define VK_NONE» » » 0 | |
498 | |
499 #endif // !defined(AFX_PWL_WND_H__D32812AD_A875_4E08_9D3C_0A57020987C6__INCLUDED
_) | |
500 | |
501 | |
OLD | NEW |