This is the verbatim text of the qclipbrd.h include file. It is is provided only for illustration; the copyright remains with Troll Tech
/**************************************************************************** ** $Id: qclipbrd.h,v 2.0 1996/09/24 10:15:47 agulbra Exp $ ** ** Definition of QClipboard class ** ** Created : 960430 ** ** Copyright (C) 1996 by Troll Tech AS. All rights reserved. ** *****************************************************************************/ #ifndef QCLIPBRD_H #define QCLIPBRD_H #include "qobject.h" class QClipboard : public QObject { Q_OBJECT private: QClipboard( QObject *parent=0, const char *name=0 ); ~QClipboard(); public: void clear(); void *data( const char *format ) const; void setData( const char *format, void * ); const char *text() const; void setText( const char * ); QPixmap *pixmap() const; void setPixmap( const QPixmap & ); signals: void dataChanged(); private slots: void ownerDestroyed(); protected: void connectNotify( const char * ); bool event( QEvent * ); friend class QApplication; private: // Disabled copy constructor and operator= QClipboard( const QClipboard & ) {} QClipboard &operator=( const QClipboard & ) { return *this; } }; #endif // QCLIPBRD_H