Source Code (Use browser search to find items of interest.)

Class Index

khexedit'SDisplayFont (./kdeutils/khexedit/hexeditstate.h:417)

struct SDisplayFont
{
  SDisplayFont( void )
  {
    useSystemFont = false;
    localFont.setFamily( "courier" );
    localFont.setPointSize( 12 );
    localFont.setWeight( QFont::Bold );
    localFont.setItalic( false );
    nonPrintChar = '.';
  }

  bool  useSystemFont;
  QFont localFont;
  int   nonPrintChar;
};