diff --git a/pipelines/linux_build.sh b/pipelines/linux_build.sh index 7f7ecb97..538524d3 100755 --- a/pipelines/linux_build.sh +++ b/pipelines/linux_build.sh @@ -102,7 +102,7 @@ echo '**************************' mkdir -p $INSTALL_PREFIX/usr; echo "Num CPU: `nproc`"; -./scripts/unix_make_docs.sh +./scripts/unix_make_docs.sh; mkdir buildQT; cd buildQT; cmake \ diff --git a/scripts/unix_make_docs.sh b/scripts/unix_make_docs.sh new file mode 100755 index 00000000..e6002c32 --- /dev/null +++ b/scripts/unix_make_docs.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +PROJECT_ROOT=$( cd "$(dirname ${BASH_SOURCE[0]})"/.. && pwd ) + +echo $PROJECT_ROOT; +echo "Building for OS: $OSTYPE"; + +cd $PROJECT_ROOT/web; + +qhelpgenerator fceux.qhcp -o fceux.qhc + +cp -f fceux.qhc $PROJECT_ROOT/output +cp -f fceux.qch $PROJECT_ROOT/output +cp -f fceux.qhp $PROJECT_ROOT/output diff --git a/src/drivers/Qt/HelpPages.cpp b/src/drivers/Qt/HelpPages.cpp index 15cf6891..7172dabc 100644 --- a/src/drivers/Qt/HelpPages.cpp +++ b/src/drivers/Qt/HelpPages.cpp @@ -290,7 +290,7 @@ HelpDialog::HelpDialog( const char *helpFileName, QWidget *parent) //----------------------------------------------------------------------- backButton = act = new QAction(tr("&Backward"), this); - //act->setShortcut( QKeySequence(tr("Ctrl+A") )); + act->setShortcut( QKeySequence(tr("Alt+Left") )); act->setToolTip(tr("Navigate Backward")); act->setIcon( style()->standardIcon(QStyle::SP_ArrowBack) ); connect(act, SIGNAL(triggered(void)), textViewer, SLOT(backward(void)) ); @@ -298,7 +298,7 @@ HelpDialog::HelpDialog( const char *helpFileName, QWidget *parent) toolBar->addAction(act); forwardButton = act = new QAction(tr("&Forward"), this); - //act->setShortcut( QKeySequence(tr("Ctrl+A") )); + act->setShortcut( QKeySequence(tr("Alt+Right") )); act->setToolTip(tr("Navigate Forward")); act->setIcon( style()->standardIcon(QStyle::SP_ArrowForward) ); connect(act, SIGNAL(triggered(void)), textViewer, SLOT(forward(void)) ); diff --git a/web/fceux.qhp b/web/fceux.qhp index e6930812..eb2cc42f 100644 --- a/web/fceux.qhp +++ b/web/fceux.qhp @@ -11,12 +11,87 @@ 1.0
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- - help/*