summaryrefslogtreecommitdiff
path: root/xfa/fwl/core/cfx_barcode.h
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-11-14 15:13:11 -0800
committerCommit bot <commit-bot@chromium.org>2016-11-14 15:13:11 -0800
commit3439802410dc2c4aeb49397c987bf5ca0ddfad8b (patch)
treeb321dc4ed2a4d032d36a8b5f532a904c77021817 /xfa/fwl/core/cfx_barcode.h
parent137a344ad02056107e2e01d5d55f5e97d21fa74b (diff)
downloadpdfium-3439802410dc2c4aeb49397c987bf5ca0ddfad8b.tar.xz
Cleanup fwl_* classes and cfx_* classes in fwl.
This CL cleans up the classes in the fwl_* and cfx_* files in fwl/core. Review-Url: https://codereview.chromium.org/2503513002
Diffstat (limited to 'xfa/fwl/core/cfx_barcode.h')
-rw-r--r--xfa/fwl/core/cfx_barcode.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/xfa/fwl/core/cfx_barcode.h b/xfa/fwl/core/cfx_barcode.h
index 0a454e5599..21fb7451d4 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;
};