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

Unified Diff: xfa/fwl/core/cfx_barcode.h

Issue 2503513002: Cleanup fwl_* classes and cfx_* classes in fwl. (Closed)
Patch Set: Review feedback Created 4 years, 1 month 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
« no previous file with comments | « no previous file | xfa/fwl/core/cfx_barcode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/core/cfx_barcode.h
diff --git a/xfa/fwl/core/cfx_barcode.h b/xfa/fwl/core/cfx_barcode.h
index 0a454e5599d4bd4fb14b3ff64c98e059f1ef7ea7..21fb7451d4ceac3bab02e74852065b986b7e1770 100644
--- a/xfa/fwl/core/cfx_barcode.h
+++ b/xfa/fwl/core/cfx_barcode.h
@@ -28,24 +28,29 @@ class CFX_Barcode {
bool Create(BC_TYPE type);
BC_TYPE GetType();
bool Encode(const CFX_WideStringC& contents, bool isDevice, int32_t& e);
+
bool RenderDevice(CFX_RenderDevice* device,
const CFX_Matrix* matrix,
int32_t& e);
- bool RenderBitmap(CFX_DIBitmap*& pOutBitmap, int32_t& e);
+
bool SetCharEncoding(BC_CHAR_ENCODING encoding);
+
bool SetModuleHeight(int32_t moduleHeight);
bool SetModuleWidth(int32_t moduleWidth);
+
bool SetHeight(int32_t height);
bool SetWidth(int32_t width);
- bool CheckContentValidity(const CFX_WideStringC& contents);
+
bool SetPrintChecksum(bool checksum);
bool SetDataLength(int32_t length);
bool SetCalChecksum(bool state);
+
bool SetFont(CFX_Font* pFont);
bool SetFontSize(FX_FLOAT size);
- bool SetFontStyle(int32_t style);
bool SetFontColor(FX_ARGB color);
+
bool SetTextLocation(BC_TEXT_LOC location);
+
bool SetWideNarrowRatio(int32_t ratio);
bool SetStartChar(FX_CHAR start);
bool SetEndChar(FX_CHAR end);
@@ -53,7 +58,7 @@ class CFX_Barcode {
bool SetErrorCorrectionLevel(int32_t level);
bool SetTruncated(bool truncated);
- protected:
+ private:
std::unique_ptr<CBC_CodeBase> m_pBCEngine;
};
« no previous file with comments | « no previous file | xfa/fwl/core/cfx_barcode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698