Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(694)

Unified Diff: xfa/src/fwl/src/basewidget/fwl_caretimp.h

Issue 1770953004: Remove xfa/src/fwl/src and move code up a level. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: xfa/src/fwl/src/basewidget/fwl_caretimp.h
diff --git a/xfa/src/fwl/src/basewidget/fwl_caretimp.h b/xfa/src/fwl/src/basewidget/fwl_caretimp.h
deleted file mode 100644
index ae334e944be844584813c71d9baa877ad6a85da6..0000000000000000000000000000000000000000
--- a/xfa/src/fwl/src/basewidget/fwl_caretimp.h
+++ /dev/null
@@ -1,67 +0,0 @@
-// Copyright 2014 PDFium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-
-#ifndef XFA_SRC_FWL_SRC_BASEWIDGET_FWL_CARETIMP_H_
-#define XFA_SRC_FWL_SRC_BASEWIDGET_FWL_CARETIMP_H_
-
-#include "xfa/include/fwl/core/fwl_timer.h"
-#include "xfa/src/fwl/src/core/fwl_widgetimp.h"
-
-class CFWL_WidgetImpProperties;
-class IFWL_Widget;
-class CFWL_CaretImpDelegate;
-
-class CFWL_CaretImp : public CFWL_WidgetImp {
- public:
- CFWL_CaretImp(const CFWL_WidgetImpProperties& properties,
- IFWL_Widget* pOuter);
- virtual ~CFWL_CaretImp();
-
- virtual FWL_ERR GetClassName(CFX_WideString& wsClass) const;
- virtual FX_DWORD GetClassID() const;
-
- virtual FWL_ERR Initialize();
- virtual FWL_ERR Finalize();
-
- virtual FWL_ERR DrawWidget(CFX_Graphics* pGraphics,
- const CFX_Matrix* pMatrix = NULL);
-
- virtual FWL_ERR ShowCaret(FX_BOOL bFlag = TRUE);
- virtual FWL_ERR GetFrequency(FX_DWORD& elapse);
- virtual FWL_ERR SetFrequency(FX_DWORD elapse);
- virtual FWL_ERR SetColor(CFX_Color crFill);
-
- protected:
- FX_BOOL DrawCaretBK(CFX_Graphics* pGraphics,
- IFWL_ThemeProvider* pTheme,
- const CFX_Matrix* pMatrix);
- class CFWL_CaretTimer : public IFWL_Timer {
- public:
- explicit CFWL_CaretTimer(CFWL_CaretImp* pCaret);
- ~CFWL_CaretTimer() override {}
- int32_t Run(FWL_HTIMER hTimer) override;
- CFWL_CaretImp* const m_pCaret;
- };
- CFWL_CaretTimer* m_pTimer;
- FWL_HTIMER m_hTimer;
- FX_DWORD m_dwElapse;
- CFX_Color m_crFill;
- FX_BOOL m_bSetColor;
- friend class CFWL_CaretImpDelegate;
- friend class CFWL_CaretTimer;
-};
-class CFWL_CaretImpDelegate : public CFWL_WidgetImpDelegate {
- public:
- CFWL_CaretImpDelegate(CFWL_CaretImp* pOwner);
- int32_t OnProcessMessage(CFWL_Message* pMessage) override;
- FWL_ERR OnDrawWidget(CFX_Graphics* pGraphics,
- const CFX_Matrix* pMatrix = NULL) override;
-
- protected:
- CFWL_CaretImp* m_pOwner;
-};
-
-#endif // XFA_SRC_FWL_SRC_BASEWIDGET_FWL_CARETIMP_H_

Powered by Google App Engine
This is Rietveld 408576698