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

Class Index

khexedit'SDisplayInputMode (./kdeutils/khexedit/hexeditstate.h:519)

struct SDisplayInputMode
{
  SDisplayInputMode( void )
  {
    inputLock = false;
    readOnly = false;
    allowResize = true;
  };
  
  bool noInput( void )
  {
    return( inputLock || readOnly );
  }

  bool inputLock;  // Set by application only
  bool readOnly;   // Set by user
  bool allowResize;
};