2009-10-09 19:10 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)

* contrib/hbqt/qth/QApplication.qth
  * contrib/hbqt/qth/QBoxLayout.qth
  * contrib/hbqt/qth/QBrush.qth
  * contrib/hbqt/qth/QClipboard.qth
  * contrib/hbqt/qth/QColorDialog.qth
  * contrib/hbqt/qth/QCursor.qth
  * contrib/hbqt/qth/QInputEvent.qth
  * contrib/hbqt/qth/QList.qth
  * contrib/hbqt/qth/QSizeF.qth
  * contrib/hbqt/qth/QTextBlockGroup.qth
  * contrib/hbqt/qth/QTextCodec.qth
  * contrib/hbqt/qth/QTextObject.qth
  * contrib/hbqt/qth/QWebFrame.qth
  * contrib/hbqt/qth/QWebHistory.qth
  * contrib/hbqt/qth/QWebSettings.qth
    ! Preliminaries for next massive update, probably.
This commit is contained in:
Pritpal Bedi
2009-10-10 02:13:57 +00:00
parent c2d056ee9a
commit 7526e00883
16 changed files with 33 additions and 49 deletions

View File

@@ -17,6 +17,24 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-10-09 19:10 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbqt/qth/QApplication.qth
* contrib/hbqt/qth/QBoxLayout.qth
* contrib/hbqt/qth/QBrush.qth
* contrib/hbqt/qth/QClipboard.qth
* contrib/hbqt/qth/QColorDialog.qth
* contrib/hbqt/qth/QCursor.qth
* contrib/hbqt/qth/QInputEvent.qth
* contrib/hbqt/qth/QList.qth
* contrib/hbqt/qth/QSizeF.qth
* contrib/hbqt/qth/QTextBlockGroup.qth
* contrib/hbqt/qth/QTextCodec.qth
* contrib/hbqt/qth/QTextObject.qth
* contrib/hbqt/qth/QWebFrame.qth
* contrib/hbqt/qth/QWebHistory.qth
* contrib/hbqt/qth/QWebSettings.qth
! Preliminaries for next massive update, probably.
2009-10-09 22:22 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* ChangeLog
* Marked TODO/TOFIX items as DONE.

View File

@@ -95,25 +95,8 @@ static char ** s_argv;
* virtual ~QApplication ()
*/
#if 0
HB_FUNC( QT_QAPPLICATION )
{
int i_argc = 0;
char** c_argv = NULL;
app = new QApplication( i_argc, c_argv );
hb_retptr( ( QApplication* ) app);
}
#endif
HB_FUNC( QT_QAPPLICATION )
{
#if 0
int i_argc;
char ** c_argv;
i_argc = hb_cmdargARGC();
c_argv = hb_cmdargARGV();
app = new QApplication( i_argc, c_argv );
#endif
hb_retptr( ( QApplication * ) app );
}
@@ -168,23 +151,6 @@ HB_FUNC( QT_QAPPLICATION_QUIT )
{
app->quit();
}
#if 0
HB_FUNC( QT_QAPPLICATION_EXECUTE )
{
hb_retni( app->exec() );
}
HB_FUNC( QT_QAPPLICATION_SETSTYLE )
{
app->setStyle( hb_parcx( 2 ) );
}
HB_FUNC( QT_QAPPLICATION_QUIT )
{
app->quit();
}
#endif
</CODE>
<ENUMS>

View File

@@ -69,8 +69,7 @@ New = nDirection, pParent
*/
HB_FUNC( QT_QBOXLAYOUT )
{
hb_retptr( ( QBoxLayout* ) new QBoxLayout( ( QBoxLayout::Direction ) hb_parni( 1 ),
hbqt_par_QWidget( 2 ) ) );
hb_retptr( ( QBoxLayout* ) new QBoxLayout( ( QBoxLayout::Direction ) hb_parni( 1 ), hbqt_par_QWidget( 2 ) ) );
}
</CODE>

View File

@@ -135,8 +135,7 @@ HB_FUNC( QT_QBRUSH )
}
else if( objName == ( QString ) "QColor" )
{
hb_retptr( ( QBrush* ) new QBrush( *hbqt_par_QColor( 2 ),
HB_ISNUM( 3 ) ? ( Qt::BrushStyle ) hb_parni( 3 ) : Qt::SolidPattern ) );
hb_retptr( ( QBrush* ) new QBrush( *hbqt_par_QColor( 2 ), HB_ISNUM( 3 ) ? ( Qt::BrushStyle ) hb_parni( 3 ) : Qt::SolidPattern ) );
}
else
{

View File

@@ -58,6 +58,7 @@
Inherits = QObject
Type = Core
New =
Destructor = no
</CLASS>
<CODE>

View File

@@ -74,8 +74,7 @@ HB_FUNC( QT_QCOLORDIALOG )
{
if( hb_pcount() >= 1 && HB_ISNUM( 1 ) )
{
hb_retptr( ( QColorDialog* ) new QColorDialog( hb_parni( 1 ),
hbqt_par_QWidget( 2 ) ) );
hb_retptr( ( QColorDialog* ) new QColorDialog( hb_parni( 1 ), hbqt_par_QWidget( 2 ) ) );
}
else
{

View File

@@ -98,9 +98,7 @@ HB_FUNC( QT_QCURSOR )
if( objName == ( QString ) "QPixmap" )
{
hb_retptr( ( QCursor* ) new QCursor( *hbqt_par_QPixmap( 2 ),
HB_ISNUM( 3 ) ? hb_parni( 3 ) : -1,
HB_ISNUM( 4 ) ? hb_parni( 4 ) : -1 ) );
hb_retptr( ( QCursor* ) new QCursor( *hbqt_par_QPixmap( 2 ), HB_ISNUM( 3 ) ? hb_parni( 3 ) : -1, HB_ISNUM( 4 ) ? hb_parni( 4 ) : -1 ) );
}
else
{
@@ -109,9 +107,7 @@ HB_FUNC( QT_QCURSOR )
}
else if( hb_pcount() >= 2 && HB_ISPOINTER( 1 ) && HB_ISPOINTER( 2 ) )
{
hb_retptr( ( QCursor* ) new QCursor( *hbqt_par_QBitmap( 1 ), *hbqt_par_QBitmap( 2 ),
HB_ISNUM( 3 ) ? hb_parni( 3 ) : -1,
HB_ISNUM( 4 ) ? hb_parni( 4 ) : -1 ) );
hb_retptr( ( QCursor* ) new QCursor( *hbqt_par_QBitmap( 1 ), *hbqt_par_QBitmap( 2 ), HB_ISNUM( 3 ) ? hb_parni( 3 ) : -1, HB_ISNUM( 4 ) ? hb_parni( 4 ) : -1 ) );
}
else
{

View File

@@ -70,8 +70,7 @@ New =
*/
HB_FUNC( QT_QINPUTEVENT )
{
hb_retptr( ( QInputEvent* ) new QInputEvent( ( QEvent::Type ) hb_parni( 1 ),
( Qt::KeyboardModifiers ) hb_parni( 2 ) ) );
hb_retptr( ( QInputEvent* ) new QInputEvent( ( QEvent::Type ) hb_parni( 1 ), ( Qt::KeyboardModifiers ) hb_parni( 2 ) ) );
}
</CODE>

View File

@@ -58,6 +58,7 @@
Inherits =
Type = Core
New =
List = yes
</CLASS>
<CODE>

View File

@@ -84,7 +84,7 @@ HB_FUNC( QT_QSIZEF )
{
hb_retptr( ( QSizeF* ) new QSizeF() );
}
}
}
</CODE>
<ENUMS>

View File

@@ -58,6 +58,7 @@
Inherits = QTextObject
Type = Core
New =
Destructor = no
</CLASS>
<CODE>

View File

@@ -58,6 +58,7 @@
Inherits =
Type = Core
New =
Destructor = no
</CLASS>
<CODE>

View File

@@ -58,6 +58,7 @@
Inherits = QObject
Type = Core
New =
Destructor = no
</CLASS>
<CODE>

View File

@@ -58,6 +58,7 @@
Inherits = QObject
Type = Core
New =
Destructor = no
</CLASS>
<CODE>

View File

@@ -58,6 +58,7 @@
Inherits =
Type = Core
New =
Destructor = no
</CLASS>
<CODE>

View File

@@ -58,6 +58,7 @@
Inherits =
Type = Core
New =
Destructor = no
</CLASS>
<CODE>