Detailed Description

Classes

struct  HexEditorHighlightState
 
class  FontParameters
 
class  RenderContext
 

Enumerations

enum  HexEditorHighlightMode { NoHighlight , ColumnHighlight , ByteValueHighlight }
 
enum  HexEditorColorMode { NoColorization , AsciiColorization , ModificationColorization }
 
enum  HexEditorHighlightContrast { NormalContrastHighlight , MediumContrastHighlight , HighContrastHighlight }
 

Class Documentation

◆ HexEditorHighlightState

struct HexEditorHighlightState

Public Member Functions

void restoreSettings ()
 
void saveSettings ()
 

Public Attributes

HexEditorHighlightMode mode
 
HexEditorColorMode color
 
HexEditorHighlightContrast contrast
 

Member Function Documentation

◆ restoreSettings()

void HexEditorHighlightState::restoreSettings ( )

◆ saveSettings()

void HexEditorHighlightState::saveSettings ( )

Member Data Documentation

◆ mode

HexEditorHighlightMode HexEditorHighlightState::mode

◆ color

HexEditorColorMode HexEditorHighlightState::color

◆ contrast

HexEditorHighlightContrast HexEditorHighlightState::contrast

◆ FontParameters

class FontParameters

Public Member Functions

 FontParameters (QWidget *parent, float fontScale=1.0f)
 
void update ()
 
const QFont & getFont () const
 
QFont & getFont ()
 
const QFont & getEmojiFont () const
 
QFont & getEmojiFont ()
 
void setFont (const QFont &font)
 
void setEmojiFont (const QFont &emojiFont)
 
int getBaseline () const
 
int getWidth () const
 
int getHeight () const
 
int getOffset () const
 

Constructor & Destructor Documentation

◆ FontParameters()

FontParameters::FontParameters ( QWidget *  parent,
float  fontScale = 1.0f 
)

Member Function Documentation

◆ update()

void FontParameters::update ( )

◆ getFont() [1/2]

const QFont & FontParameters::getFont ( ) const
inline

◆ getFont() [2/2]

QFont & FontParameters::getFont ( )
inline

◆ getEmojiFont() [1/2]

const QFont & FontParameters::getEmojiFont ( ) const
inline

◆ getEmojiFont() [2/2]

QFont & FontParameters::getEmojiFont ( )
inline

◆ setFont()

void FontParameters::setFont ( const QFont &  font)

◆ setEmojiFont()

void FontParameters::setEmojiFont ( const QFont &  emojiFont)

◆ getBaseline()

int FontParameters::getBaseline ( ) const
inline

◆ getWidth()

int FontParameters::getWidth ( ) const
inline

◆ getHeight()

int FontParameters::getHeight ( ) const
inline

◆ getOffset()

int FontParameters::getOffset ( ) const
inline

◆ RenderContext

class RenderContext

Public Member Functions

 RenderContext (QWidget *parent, float fontScale=1.0f)
 
void update ()
 
FontParametersgetFontParamters ()
 
const FontParametersgetFontParameters () const
 
int getFontWidth () const
 
int getFontHeight () const
 
void init (QPainter &p)
 
QColor getColorForHexDumpByte (const HexEditorHighlightState &state, BNModificationStatus modification, uint8_t byte)
 
QColor getHighlightColor (BNHighlightColor color)
 
HighlightTokenState getTokenForDisassemblyLinePosition (int64_t col, const std::vector< BinaryNinja::InstructionTextToken > &tokens)
 
HighlightTokenState getTokenForDisassemblyTokenIndex (size_t tokenIndex, const std::vector< BinaryNinja::InstructionTextToken > &tokens)
 
HighlightTokenState getHighlightTokenForTextToken (const BinaryNinja::InstructionTextToken &token)
 
void drawText (QPainter &p, int x, int y, QColor color, const QString &text)
 
void drawUnderlinedText (QPainter &p, int x, int y, QColor color, const QString &text)
 
void drawSeparatorLine (QPainter &p, QColor top, QColor bottom, QColor line, const QRect &rect)
 
void drawInstructionHighlight (QPainter &p, const QRect &rect, bool focused=true)
 
void drawLinearDisassemblyLineBackground (QPainter &p, BNLinearDisassemblyLineType type, const QRect &rect, const QRect &dirtyRect, int gutterWidth)
 
void drawDisassemblyLine (QPainter &p, int left, int top, const std::vector< BinaryNinja::InstructionTextToken > &tokens, HighlightTokenState &highlight, bool highlightOnly=false)
 
void drawHexEditorLine (QPainter &p, int left, int top, const HexEditorHighlightState &highlight, BinaryViewRef view, uint64_t lineStartAddr, size_t cols, size_t firstCol, size_t count, bool cursorVisible, bool cursorAscii, size_t cursorPos, bool byteCursor)
 
QFont getFont ()
 
QFont getEmojiFont ()
 
void setFont (const QFont &font)
 

Constructor & Destructor Documentation

◆ RenderContext()

RenderContext::RenderContext ( QWidget *  parent,
float  fontScale = 1.0f 
)

Member Function Documentation

◆ update()

void RenderContext::update ( )

◆ getFontParamters()

FontParameters & RenderContext::getFontParamters ( )
inline

◆ getFontParameters()

const FontParameters & RenderContext::getFontParameters ( ) const
inline

◆ getFontWidth()

int RenderContext::getFontWidth ( ) const
inline

◆ getFontHeight()

int RenderContext::getFontHeight ( ) const
inline

◆ init()

void RenderContext::init ( QPainter &  p)

◆ getColorForHexDumpByte()

QColor RenderContext::getColorForHexDumpByte ( const HexEditorHighlightState state,
BNModificationStatus  modification,
uint8_t  byte 
)

◆ getHighlightColor()

QColor RenderContext::getHighlightColor ( BNHighlightColor  color)

◆ getTokenForDisassemblyLinePosition()

HighlightTokenState RenderContext::getTokenForDisassemblyLinePosition ( int64_t  col,
const std::vector< BinaryNinja::InstructionTextToken > &  tokens 
)

◆ getTokenForDisassemblyTokenIndex()

HighlightTokenState RenderContext::getTokenForDisassemblyTokenIndex ( size_t  tokenIndex,
const std::vector< BinaryNinja::InstructionTextToken > &  tokens 
)

◆ getHighlightTokenForTextToken()

HighlightTokenState RenderContext::getHighlightTokenForTextToken ( const BinaryNinja::InstructionTextToken token)

◆ drawText()

void RenderContext::drawText ( QPainter &  p,
int  x,
int  y,
QColor  color,
const QString &  text 
)

◆ drawUnderlinedText()

void RenderContext::drawUnderlinedText ( QPainter &  p,
int  x,
int  y,
QColor  color,
const QString &  text 
)

◆ drawSeparatorLine()

void RenderContext::drawSeparatorLine ( QPainter &  p,
QColor  top,
QColor  bottom,
QColor  line,
const QRect &  rect 
)

◆ drawInstructionHighlight()

void RenderContext::drawInstructionHighlight ( QPainter &  p,
const QRect &  rect,
bool  focused = true 
)

◆ drawLinearDisassemblyLineBackground()

void RenderContext::drawLinearDisassemblyLineBackground ( QPainter &  p,
BNLinearDisassemblyLineType  type,
const QRect &  rect,
const QRect &  dirtyRect,
int  gutterWidth 
)

◆ drawDisassemblyLine()

void RenderContext::drawDisassemblyLine ( QPainter &  p,
int  left,
int  top,
const std::vector< BinaryNinja::InstructionTextToken > &  tokens,
HighlightTokenState highlight,
bool  highlightOnly = false 
)

◆ drawHexEditorLine()

void RenderContext::drawHexEditorLine ( QPainter &  p,
int  left,
int  top,
const HexEditorHighlightState highlight,
BinaryViewRef  view,
uint64_t  lineStartAddr,
size_t  cols,
size_t  firstCol,
size_t  count,
bool  cursorVisible,
bool  cursorAscii,
size_t  cursorPos,
bool  byteCursor 
)

◆ getFont()

QFont RenderContext::getFont ( )
inline

◆ getEmojiFont()

QFont RenderContext::getEmojiFont ( )
inline

◆ setFont()

void RenderContext::setFont ( const QFont &  font)

Enumeration Type Documentation

◆ HexEditorHighlightMode

Enumerator
NoHighlight 
ColumnHighlight 
ByteValueHighlight 

◆ HexEditorColorMode

Enumerator
NoColorization 
AsciiColorization 
ModificationColorization 

◆ HexEditorHighlightContrast

Enumerator
NormalContrastHighlight 
MediumContrastHighlight 
HighContrastHighlight