• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • interfaces
 

interfaces

  • interfaces
  • khexedit
byteseditinterface.h
1 /***************************************************************************
2  byteseditinterface.h - description
3  -------------------
4  begin : Fri Sep 12 2003
5  copyright : (C) 2003 by Friedrich W. H. Kossebau
6  email : Friedrich.W.H@Kossebau.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This library is free software; you can redistribute it and/or *
12  * modify it under the terms of the GNU Library General Public *
13  * License version 2 as published by the Free Software Foundation. *
14  * *
15  ***************************************************************************/
16 
17 
18 #ifndef BYTESEDITINTERFACE_H
19 #define BYTESEDITINTERFACE_H
20 
21 // kde specific
22 #include <kparts/componentfactory.h>
23 
24 #include <tqwidget.h>
25 
32 namespace KHE
33 {
34 
76 class BytesEditInterface
77 {
78  public:
79  //static const char Name[] = "KHE::BytesEditInterface";
80 
81  public: // set methods
89  virtual void setData( char *D, int S, int RS = -1, bool KM = true ) = 0;
91  virtual void setReadOnly( bool RO = true ) = 0;
100  virtual void setMaxDataSize( int MS ) = 0;
104  virtual void setAutoDelete( bool AD = true ) = 0;
106 // virtual void resetData( char *D, int S, bool Repaint ) = 0;
114  virtual void setKeepsMemory( bool KM = true ) = 0;
115  //
117  virtual void setOverwriteOnly( bool b ) = 0;
119  virtual void setOverwriteMode( bool b ) = 0;
121  virtual void setModified( bool b ) = 0;
122 
123 
124  public: // get methods
126  virtual char *data() const = 0;
128  virtual int dataSize() const = 0;
130  virtual int maxDataSize () const = 0;
132  virtual bool isAutoDelete() const = 0;
134  virtual bool keepsMemory() const = 0;
135 
137  virtual bool isOverwriteMode() const = 0;
139  virtual bool isOverwriteOnly() const = 0;
141  virtual bool isReadOnly() const = 0;
143  virtual bool isModified() const = 0;
144 
145  public: // call for action
147  virtual void repaintRange( int i1, int i2 ) = 0;
148 };
149 
150 
156 template<class T>
157 inline BytesEditInterface *bytesEditInterface( T *t )
158 {
159  if( !t )
160  return 0;
161 
162  return static_cast<KHE::BytesEditInterface*>( t->qt_cast("KHE::BytesEditInterface") );
163 }
164 
221 inline TQWidget *createBytesEditWidget( TQWidget *Parent = 0, const char *Name = 0 )
222 {
223  return KParts::ComponentFactory::createInstanceFromQuery<TQWidget>
224  ( TQString::fromLatin1("KHexEdit/KBytesEdit"), TQString::null, TQT_TQOBJECT(Parent), Name );
225 }
226 
227 }
228 
229 #endif

interfaces

Skip menu "interfaces"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members

interfaces

Skip menu "interfaces"
  • arts
  • dcop
  • dnssd
  • interfaces
  •     interface
  •     library
  •   kspeech
  •   ktexteditor
  • kabc
  • kate
  • kcmshell
  • kdecore
  • kded
  • kdefx
  • kdeprint
  • kdesu
  • kdeui
  • kdoctools
  • khtml
  • kimgio
  • kinit
  • kio
  •   bookmarks
  •   httpfilter
  •   kfile
  •   kio
  •   kioexec
  •   kpasswdserver
  •   kssl
  • kioslave
  •   http
  • kjs
  • kmdi
  •   kmdi
  • knewstuff
  • kparts
  • krandr
  • kresources
  • kspell2
  • kunittest
  • kutils
  • kwallet
  • libkmid
  • libkscreensaver
Generated for interfaces by doxygen 1.8.1.2
This website is maintained by Timothy Pearson.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. |