mirror of
git://projects.qi-hardware.com/qvido.git
synced 2024-12-22 08:53:56 +02:00
add mouse movement
Signed-off-by: Mirko Lindner <mirko@sharism.cc>
This commit is contained in:
parent
f06a95726a
commit
c4feb4a5b3
39
htmlarea.cpp
39
htmlarea.cpp
@ -115,9 +115,9 @@ void HtmlArea::setNewContent( int method, QString str = "" ){
|
|||||||
log_debug("Text set");
|
log_debug("Text set");
|
||||||
// log_debug("index: " << article.getIndex());
|
// log_debug("index: " << article.getIndex());
|
||||||
// log_debug("enabled: " << this->isEnabled());
|
// log_debug("enabled: " << this->isEnabled());
|
||||||
log_debug("string: " << str.toUtf8().data());
|
|
||||||
qApp->processEvents();
|
qApp->processEvents();
|
||||||
qobject_cast<QMain *>(this->parentWidget())->setEnabled(true);
|
qobject_cast<QMain *>(this->parentWidget())->setEnabled(true);
|
||||||
|
log_debug("string: " << str.toUtf8().data());
|
||||||
|
|
||||||
}else{
|
}else{
|
||||||
this->setText(current);
|
this->setText(current);
|
||||||
@ -324,3 +324,40 @@ zim::Search::Results HtmlArea::searchArticleFromTitle(QString phrase)
|
|||||||
log_debug("term :" << phrase.toUtf8().data());
|
log_debug("term :" << phrase.toUtf8().data());
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///////////////////////////////////
|
||||||
|
// functions related to navigation
|
||||||
|
|
||||||
|
void HtmlArea::keyPressEvent(QKeyEvent *e){
|
||||||
|
log_debug("key pressed");
|
||||||
|
switch (e->key()) {
|
||||||
|
case Qt::Key_Right:
|
||||||
|
{
|
||||||
|
QPoint pos = qApp->overrideCursor()->pos();
|
||||||
|
qApp->overrideCursor()->setPos(pos.x() + 5, pos.y());
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
|
||||||
|
case Qt::Key_Left:
|
||||||
|
{
|
||||||
|
QPoint pos = qApp->overrideCursor()->pos();
|
||||||
|
qApp->overrideCursor()->setPos(pos.x() - 5, pos.y());
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
|
||||||
|
case Qt::Key_Down:
|
||||||
|
{
|
||||||
|
QPoint pos = qApp->overrideCursor()->pos();
|
||||||
|
qApp->overrideCursor()->setPos(pos.x(), pos.y() + 5);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
|
||||||
|
case Qt::Key_Up:
|
||||||
|
{
|
||||||
|
QPoint pos = qApp->overrideCursor()->pos();
|
||||||
|
qApp->overrideCursor()->setPos(pos.x(), pos.y() - 5);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
QTextBrowser::keyPressEvent(e);
|
||||||
|
}
|
@ -52,6 +52,9 @@ class HtmlArea : public QTextBrowser
|
|||||||
void setNewContent( int method, QString str );
|
void setNewContent( int method, QString str );
|
||||||
QVariant loadResource(int type, const QUrl &name);
|
QVariant loadResource(int type, const QUrl &name);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
virtual void keyPressEvent(QKeyEvent *e);
|
||||||
|
|
||||||
public Q_SLOTS:
|
public Q_SLOTS:
|
||||||
void linking( const QUrl &txt );
|
void linking( const QUrl &txt );
|
||||||
void sourceChange( const QUrl &txt );
|
void sourceChange( const QUrl &txt );
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
** Meta object code from reading C++ file 'htmlarea.h'
|
** Meta object code from reading C++ file 'htmlarea.h'
|
||||||
**
|
**
|
||||||
** Created: Wed Apr 7 18:36:22 2010
|
** Created: Wed Apr 7 19:01:42 2010
|
||||||
** by: The Qt Meta Object Compiler version 61 (Qt 4.5.2)
|
** by: The Qt Meta Object Compiler version 61 (Qt 4.5.2)
|
||||||
**
|
**
|
||||||
** WARNING! All changes made in this file will be lost!
|
** WARNING! All changes made in this file will be lost!
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
** Meta object code from reading C++ file 'qmain.h'
|
** Meta object code from reading C++ file 'qmain.h'
|
||||||
**
|
**
|
||||||
** Created: Wed Apr 7 18:36:22 2010
|
** Created: Wed Apr 7 19:01:42 2010
|
||||||
** by: The Qt Meta Object Compiler version 61 (Qt 4.5.2)
|
** by: The Qt Meta Object Compiler version 61 (Qt 4.5.2)
|
||||||
**
|
**
|
||||||
** WARNING! All changes made in this file will be lost!
|
** WARNING! All changes made in this file will be lost!
|
||||||
|
15
qmain.cpp
15
qmain.cpp
@ -23,6 +23,10 @@
|
|||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
#include "qmain.h"
|
#include "qmain.h"
|
||||||
|
|
||||||
|
#include <cxxtools/log.h>
|
||||||
|
|
||||||
|
log_define("qvido.qmain");
|
||||||
|
|
||||||
QMain::QMain(std::string File)
|
QMain::QMain(std::string File)
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -39,7 +43,14 @@ QMain::QMain(std::string File)
|
|||||||
centralWidget,SLOT(linking(const QUrl&)));
|
centralWidget,SLOT(linking(const QUrl&)));
|
||||||
QObject::connect(centralWidget,SIGNAL(sourceChanged(const QUrl &)),
|
QObject::connect(centralWidget,SIGNAL(sourceChanged(const QUrl &)),
|
||||||
centralWidget,SLOT(sourceChange(const QUrl&)));
|
centralWidget,SLOT(sourceChange(const QUrl&)));
|
||||||
|
|
||||||
|
QCursor cursor;
|
||||||
|
|
||||||
|
if (qApp->overrideCursor() == false){
|
||||||
|
qApp->setOverrideCursor(cursor);
|
||||||
|
log_debug("no cursor");
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QMain::~QMain(){}
|
QMain::~QMain(){}
|
||||||
@ -84,7 +95,7 @@ void QMain::registerCommands()
|
|||||||
connect(goToTopAct, SIGNAL(triggered()), this->centralWidget, SLOT(goToTop()));
|
connect(goToTopAct, SIGNAL(triggered()), this->centralWidget, SLOT(goToTop()));
|
||||||
this->addAction(goToTopAct);
|
this->addAction(goToTopAct);
|
||||||
|
|
||||||
// quit qvid0
|
// quit qvido
|
||||||
quitAct = new QAction(tr("Quit QVido"), this);
|
quitAct = new QAction(tr("Quit QVido"), this);
|
||||||
quitAct->setShortcut(tr("Ctrl+Q"));
|
quitAct->setShortcut(tr("Ctrl+Q"));
|
||||||
quitAct->setStatusTip(tr("Quit"));
|
quitAct->setStatusTip(tr("Quit"));
|
||||||
|
Loading…
Reference in New Issue
Block a user