|
|
|
@ -31,7 +31,7 @@
|
|
|
|
|
#include <tqptrlist.h>
|
|
|
|
|
|
|
|
|
|
#include "qextscintillabase.h"
|
|
|
|
|
#include "ScintillaTQt.h"
|
|
|
|
|
#include "ScintillaQt.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// The #defines in Scintilla.h and the enums in qextscintillabase.h conflict
|
|
|
|
@ -80,11 +80,11 @@ QextScintillaBase::QextScintillaBase(TQWidget *parent,const char *name,WFlags f)
|
|
|
|
|
txtarea -> setFocusProxy(this);
|
|
|
|
|
tqlayout -> addWidget(txtarea,0,0);
|
|
|
|
|
|
|
|
|
|
vsb = new TQScrollBarQt::Vertical,this);
|
|
|
|
|
vsb = new TQScrollBar(Qt::Vertical,this);
|
|
|
|
|
tqlayout -> addWidget(vsb,0,1);
|
|
|
|
|
connect(vsb,TQT_SIGNAL(valueChanged(int)),TQT_SLOT(handleVSb(int)));
|
|
|
|
|
|
|
|
|
|
hsb = new TQScrollBarQt::Horizontal,this);
|
|
|
|
|
hsb = new TQScrollBar(Qt::Horizontal,this);
|
|
|
|
|
tqlayout -> addWidget(hsb,1,0);
|
|
|
|
|
connect(hsb,TQT_SIGNAL(valueChanged(int)),TQT_SLOT(handleHSb(int)));
|
|
|
|
|
|
|
|
|
@ -386,9 +386,9 @@ void QextScintillaBase::mouseWheel(TQWheelEvent *we)
|
|
|
|
|
{
|
|
|
|
|
setFocus();
|
|
|
|
|
|
|
|
|
|
if (we -> orientation() ==Qt::Horizontal || we -> state() & ShiftButton)
|
|
|
|
|
if (we -> orientation() == Qt::Horizontal || we -> state() & ShiftButton)
|
|
|
|
|
TQApplication::sendEvent(hsb,we);
|
|
|
|
|
else if (we -> orientation() ==Qt::Vertical)
|
|
|
|
|
else if (we -> orientation() == Qt::Vertical)
|
|
|
|
|
TQApplication::sendEvent(vsb,we);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -558,7 +558,7 @@ void QextScintillaBase::handleVSb(int val)
|
|
|
|
|
// Handle the horizontal scrollbar.
|
|
|
|
|
void QextScintillaBase::handleHSb(int val)
|
|
|
|
|
{
|
|
|
|
|
sci ->Qt::HorizontalScrollTo(val);
|
|
|
|
|
sci ->HorizontalScrollTo(val);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|