/* * $Id$ */ /* -------------------------------------------------------------------- */ /* WARNING: Automatically generated source file. DO NOT EDIT! */ /* Instead, edit corresponding .qth file, */ /* or the generator tool itself, and run regenarate. */ /* -------------------------------------------------------------------- */ /* * Harbour Project source code: * QT wrapper main header * * Copyright 2009 Pritpal Bedi * * Copyright 2009 Marcos Antonio Gambeta * www - http://www.harbour-project.org * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this software; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/). * * As a special exception, the Harbour Project gives permission for * additional uses of the text contained in its release of Harbour. * * The exception is that, if you link the Harbour libraries with other * files to produce an executable, this does not by itself cause the * resulting executable to be covered by the GNU General Public License. * Your use of that executable is in no way restricted on account of * linking the Harbour library code into it. * * This exception does not however invalidate any other reasons why * the executable file might be covered by the GNU General Public License. * * This exception applies only to the code released by the Harbour * Project under the name Harbour. If you copy code from other * Harbour Project or Free Software Foundation releases into a copy of * Harbour, as the General Public License permits, the exception does * not apply to the code that you add in this way. To avoid misleading * anyone as to the status of such modified files, you must delete * this exception notice from them. * * If you write modifications of your own for Harbour, it is your choice * whether to permit this exception to apply to your modifications. * If you do not wish that, delete this exception notice. * */ /*----------------------------------------------------------------------*/ #include "hbapi.h" #include "../hbqt.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 /*----------------------------------------------------------------------*/ /* * enum FileError { NoError, ReadError, WriteError, FatalError, ..., CopyError } * enum MemoryMapFlags { NoOptions } * enum Permission { ReadOwner, WriteOwner, ExeOwner, ReadUser, ..., ExeOther } * flags Permissions * flags OpenMode * enum OpenModeFlag { NotOpen, ReadOnly, WriteOnly, ReadWrite, ..., Unbuffered } */ #include #include /* QFile ( const QString & name ) * QFile ( QObject * parent ) * QFile ( const QString & name, QObject * parent ) * ~QFile () */ QT_G_FUNC( release_QFile ) { #if defined(__debug__) hb_snprintf( str, sizeof(str), "release_QFile" ); OutputDebugString( str ); #endif void * ph = ( void * ) Cargo; if( ph ) { const QMetaObject * m = ( ( QObject * ) ph )->metaObject(); if( ( QString ) m->className() != ( QString ) "QObject" ) { delete ( ( QFile * ) ph ); ph = NULL; } else { #if defined(__debug__) hb_snprintf( str, sizeof(str), " Object Name Missing: QFile" ); OutputDebugString( str ); #endif } } } HB_FUNC( QT_QFILE ) { QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), gcFuncs() ); QPointer< QFile > pObj = NULL; if( hb_pcount() == 1 && HB_ISCHAR( 1 ) ) { pObj = new QFile( hbqt_par_QString( 1 ) ) ; } p->ph = pObj; p->func = release_QFile; hb_retptrGC( p ); } /* * virtual bool atEnd () const */ HB_FUNC( QT_QFILE_ATEND ) { hb_retl( hbqt_par_QFile( 1 )->atEnd() ); } /* * virtual void close () */ HB_FUNC( QT_QFILE_CLOSE ) { hbqt_par_QFile( 1 )->close(); } /* * bool copy ( const QString & newName ) */ HB_FUNC( QT_QFILE_COPY ) { hb_retl( hbqt_par_QFile( 1 )->copy( hbqt_par_QString( 2 ) ) ); } /* * FileError error () const */ HB_FUNC( QT_QFILE_ERROR ) { hb_retni( ( QFile::FileError ) hbqt_par_QFile( 1 )->error() ); } /* * bool exists () const */ HB_FUNC( QT_QFILE_EXISTS ) { hb_retl( hbqt_par_QFile( 1 )->exists() ); } /* * QString fileName () const */ HB_FUNC( QT_QFILE_FILENAME ) { hb_retc( hbqt_par_QFile( 1 )->fileName().toAscii().data() ); } /* * bool flush () */ HB_FUNC( QT_QFILE_FLUSH ) { hb_retl( hbqt_par_QFile( 1 )->flush() ); } /* * int handle () const */ HB_FUNC( QT_QFILE_HANDLE ) { hb_retni( hbqt_par_QFile( 1 )->handle() ); } /* * virtual bool isSequential () const */ HB_FUNC( QT_QFILE_ISSEQUENTIAL ) { hb_retl( hbqt_par_QFile( 1 )->isSequential() ); } /* * bool link ( const QString & linkName ) */ HB_FUNC( QT_QFILE_LINK ) { hb_retl( hbqt_par_QFile( 1 )->link( hbqt_par_QString( 2 ) ) ); } /* * uchar * map ( qint64 offset, qint64 size, MemoryMapFlags flags = NoOptions ) */ HB_FUNC( QT_QFILE_MAP ) { hb_retptr( ( uchar* ) hbqt_par_QFile( 1 )->map( hb_parnint( 2 ), hb_parnint( 3 ), ( HB_ISNUM( 4 ) ? ( QFile::MemoryMapFlags ) hb_parni( 4 ) : ( QFile::MemoryMapFlags ) QFile::NoOptions ) ) ); } /* * virtual bool open ( OpenMode mode ) */ HB_FUNC( QT_QFILE_OPEN ) { hb_retl( hbqt_par_QFile( 1 )->open( ( QFile::OpenMode ) hb_parni( 2 ) ) ); } /* * bool open ( int fd, OpenMode mode ) */ HB_FUNC( QT_QFILE_OPEN_1 ) { hb_retl( hbqt_par_QFile( 1 )->open( hb_parni( 2 ), ( QFile::OpenMode ) hb_parni( 3 ) ) ); } /* * Permissions permissions () const */ HB_FUNC( QT_QFILE_PERMISSIONS ) { hb_retni( ( QFile::Permissions ) hbqt_par_QFile( 1 )->permissions() ); } /* * bool remove () */ HB_FUNC( QT_QFILE_REMOVE ) { hb_retl( hbqt_par_QFile( 1 )->remove() ); } /* * bool rename ( const QString & newName ) */ HB_FUNC( QT_QFILE_RENAME ) { hb_retl( hbqt_par_QFile( 1 )->rename( hbqt_par_QString( 2 ) ) ); } /* * bool resize ( qint64 sz ) */ HB_FUNC( QT_QFILE_RESIZE ) { hb_retl( hbqt_par_QFile( 1 )->resize( hb_parnint( 2 ) ) ); } /* * void setFileName ( const QString & name ) */ HB_FUNC( QT_QFILE_SETFILENAME ) { hbqt_par_QFile( 1 )->setFileName( hbqt_par_QString( 2 ) ); } /* * bool setPermissions ( Permissions permissions ) */ HB_FUNC( QT_QFILE_SETPERMISSIONS ) { hb_retl( hbqt_par_QFile( 1 )->setPermissions( ( QFile::Permissions ) hb_parni( 2 ) ) ); } /* * virtual qint64 size () const */ HB_FUNC( QT_QFILE_SIZE ) { hb_retnint( hbqt_par_QFile( 1 )->size() ); } /* * QString symLinkTarget () const */ HB_FUNC( QT_QFILE_SYMLINKTARGET ) { hb_retc( hbqt_par_QFile( 1 )->symLinkTarget().toAscii().data() ); } /* * void unsetError () */ HB_FUNC( QT_QFILE_UNSETERROR ) { hbqt_par_QFile( 1 )->unsetError(); } /* * bool copy ( const QString & fileName, const QString & newName ) */ HB_FUNC( QT_QFILE_COPY_1 ) { hb_retl( hbqt_par_QFile( 1 )->copy( hbqt_par_QString( 2 ), hbqt_par_QString( 3 ) ) ); } /* * QString decodeName ( const QByteArray & localFileName ) */ HB_FUNC( QT_QFILE_DECODENAME ) { hb_retc( hbqt_par_QFile( 1 )->decodeName( *hbqt_par_QByteArray( 2 ) ).toAscii().data() ); } /* * QString decodeName ( const char * localFileName ) */ HB_FUNC( QT_QFILE_DECODENAME_1 ) { hb_retc( hbqt_par_QFile( 1 )->decodeName( hbqt_par_char( 2 ) ).toAscii().data() ); } /* * QByteArray encodeName ( const QString & fileName ) */ HB_FUNC( QT_QFILE_ENCODENAME ) { hb_retptrGC( hbqt_ptrTOgcpointer( new QByteArray( hbqt_par_QFile( 1 )->encodeName( hbqt_par_QString( 2 ) ) ), release_QByteArray ) ); } /* * bool exists ( const QString & fileName ) */ HB_FUNC( QT_QFILE_EXISTS_1 ) { hb_retl( hbqt_par_QFile( 1 )->exists( hbqt_par_QString( 2 ) ) ); } /* * bool link ( const QString & fileName, const QString & linkName ) */ HB_FUNC( QT_QFILE_LINK_1 ) { hb_retl( hbqt_par_QFile( 1 )->link( hbqt_par_QString( 2 ), hbqt_par_QString( 3 ) ) ); } /* * Permissions permissions ( const QString & fileName ) */ HB_FUNC( QT_QFILE_PERMISSIONS_1 ) { hb_retni( ( QFile::Permissions ) hbqt_par_QFile( 1 )->permissions( hbqt_par_QString( 2 ) ) ); } /* * bool remove ( const QString & fileName ) */ HB_FUNC( QT_QFILE_REMOVE_1 ) { hb_retl( hbqt_par_QFile( 1 )->remove( hbqt_par_QString( 2 ) ) ); } /* * bool rename ( const QString & oldName, const QString & newName ) */ HB_FUNC( QT_QFILE_RENAME_1 ) { hb_retl( hbqt_par_QFile( 1 )->rename( hbqt_par_QString( 2 ), hbqt_par_QString( 3 ) ) ); } /* * bool resize ( const QString & fileName, qint64 sz ) */ HB_FUNC( QT_QFILE_RESIZE_1 ) { hb_retl( hbqt_par_QFile( 1 )->resize( hbqt_par_QString( 2 ), hb_parnint( 3 ) ) ); } /* * bool setPermissions ( const QString & fileName, Permissions permissions ) */ HB_FUNC( QT_QFILE_SETPERMISSIONS_1 ) { hb_retl( hbqt_par_QFile( 1 )->setPermissions( hbqt_par_QString( 2 ), ( QFile::Permissions ) hb_parni( 3 ) ) ); } /* * QString symLinkTarget ( const QString & fileName ) */ HB_FUNC( QT_QFILE_SYMLINKTARGET_1 ) { hb_retc( hbqt_par_QFile( 1 )->symLinkTarget( hbqt_par_QString( 2 ) ).toAscii().data() ); } /*----------------------------------------------------------------------*/ #endif /* #if QT_VERSION >= 0x040500 */ /*----------------------------------------------------------------------*/