* contrib/hbqt/qtgui/qth/HBQSyntaxHighlighter.qth
* contrib/hbqt/qtgui/qth/QAction.qth
* contrib/hbqt/qtgui/qth/QBoxLayout.qth
* contrib/hbqt/qtgui/qth/QFormLayout.qth
* contrib/hbqt/qtgui/qth/QFrame.qth
* contrib/hbqt/qtgui/qth/QGridLayout.qth
* contrib/hbqt/qtgui/qth/QLineEdit.qth
* contrib/hbqt/qtgui/qth/QPushButton.qth
* contrib/hbqt/qtgui/qth/QScrollArea.qth
* contrib/hbqt/qtgui/qth/QSizeGrip.qth
* contrib/hbqt/qtgui/qth/QSlider.qth
* contrib/hbqt/qtgui/qth/QSound.qth
* contrib/hbqt/qtgui/qth/QSpinBox.qth
* contrib/hbqt/qtgui/qth/QSplashScreen.qth
* contrib/hbqt/qtgui/qth/QSplitter.qth
* contrib/hbqt/qtgui/qth/QStackedWidget.qth
* contrib/hbqt/qtgui/qth/QStandardItem.qth
* contrib/hbqt/qtgui/qth/QStandardItemModel.qth
* contrib/hbqt/qtgui/qth/QStringListModel.qth
* contrib/hbqt/qtgui/qth/QSystemTrayIcon.qth
* contrib/hbqt/qtgui/qth/QTabBar.qth
* contrib/hbqt/qtgui/qth/QTableWidget.qth
* contrib/hbqt/qtgui/qth/QTabWidget.qth
* contrib/hbqt/qtgui/qth/QTextBrowser.qth
* contrib/hbqt/qtgui/qth/QTextDocument.qth
* contrib/hbqt/qtgui/qth/QTextEdit.qth
* contrib/hbqt/qtgui/qth/QTextFormat.qth
* contrib/hbqt/qtgui/qth/QTimeEdit.qth
* contrib/hbqt/qtgui/qth/QToolBox.qth
* contrib/hbqt/qtgui/qth/QToolButton.qth
* contrib/hbqt/qtgui/qth/QTreeView.qth
* contrib/hbqt/qtgui/qth/QTreeWidget.qth
* contrib/hbqt/qtgui/qth/QWidgetAction.qth
* contrib/hbqt/qtgui/qth/QWidgetItem.qth
* contrib/hbqt/qtgui/qth/QWizardPage.qth
! Fixed: constructors. Now hbIDE shows up with __HBQT_REVAMP__.
78 lines
1.6 KiB
Plaintext
78 lines
1.6 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Qt wrapper generator control file
|
|
*
|
|
* Copyright 2009-2012 Pritpal Bedi <bedipritpal@hotmail.com>
|
|
* www - http://www.harbour-project.org
|
|
*
|
|
* See COPYING for licensing terms.
|
|
*/
|
|
|
|
<CLASS>
|
|
Inherit = QTextEdit
|
|
Type = Core
|
|
New = pParent
|
|
</CLASS>
|
|
|
|
<CODE>
|
|
#include <QtGui/QTextBrowser>
|
|
|
|
|
|
/*
|
|
* QTextBrowser ( QWidget * parent = 0 )
|
|
*/
|
|
HB_FUNC( QT_QTEXTBROWSER )
|
|
{
|
|
if( hb_pcount() == 1 && hbqt_par_isDerivedFrom( 1, "QWIDGET" ) )
|
|
{
|
|
__HB_RETPTRGC__( new QTextBrowser( hbqt_par_QWidget( 1 ) ) );
|
|
}
|
|
else
|
|
{
|
|
__HB_RETPTRGC__( new QTextBrowser() );
|
|
}
|
|
}
|
|
</CODE>
|
|
|
|
<ENUMS>
|
|
</ENUMS>
|
|
|
|
<PROTOS>
|
|
int backwardHistoryCount () const
|
|
void clearHistory ()
|
|
int forwardHistoryCount () const
|
|
QString historyTitle ( int i ) const
|
|
QUrl historyUrl ( int i ) const
|
|
bool isBackwardAvailable () const
|
|
bool isForwardAvailable () const
|
|
virtual QVariant loadResource ( int type, const QUrl & name )
|
|
bool openExternalLinks () const
|
|
bool openLinks () const
|
|
QStringList searchPaths () const
|
|
void setOpenExternalLinks ( bool open )
|
|
void setOpenLinks ( bool open )
|
|
void setSearchPaths ( const QStringList & paths )
|
|
QUrl source () const
|
|
</PROTOS>
|
|
|
|
<SLOTS>
|
|
virtual void backward ()
|
|
virtual void forward ()
|
|
virtual void home ()
|
|
virtual void reload ()
|
|
virtual void setSource ( const QUrl & name )
|
|
</SLOTS>
|
|
|
|
<SIGNALS>
|
|
void anchorClicked ( const QUrl & link )
|
|
void backwardAvailable ( bool available )
|
|
void forwardAvailable ( bool available )
|
|
void highlighted ( const QUrl & link )
|
|
void highlighted ( const QString & link )
|
|
void historyChanged ()
|
|
void sourceChanged ( const QUrl & src )
|
|
</SIGNALS>
|