From a9c8fd84a62b6e8d67ac0dd93235f094a481ee05 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Tue, 14 Nov 2017 10:25:43 -0500 Subject: Clean up the keyboard shortcut handling in lumina-pdf. Now the page changes can be controlled by arrows/page[up/down] whether a presentation is running or not. Also unify the page that is shown between the presentation window and the main viewer - makes it easier when giving a presentation on a screen that might be behind the presentor. --- src-qt5/desktop-utils/lumina-pdf/mainUI.cpp | 12 ++++++++---- src-qt5/desktop-utils/lumina-pdf/mainUI.h | 14 ++++---------- 2 files changed, 12 insertions(+), 14 deletions(-) (limited to 'src-qt5/desktop-utils/lumina-pdf') diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp index c2f31e01..5cfc5da9 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp @@ -82,6 +82,7 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI()){ //Now set the default state of the menu's and actions ui->menuStart_Presentation->setEnabled(false); ui->actionStop_Presentation->setEnabled(false); + this->grabKeyboard(); } MainUI::~MainUI(){ @@ -187,7 +188,7 @@ void MainUI::startPresentation(bool atStart){ QScreen *screen = getScreen(false, cancelled); //let the user select which screen to use (if multiples) if(cancelled){ return;} int page = 0; - if(!atStart){ page = CurrentPage; } + if(!atStart){ page = WIDGET->currentPage()-1; } //currentPage() starts at 1 rather than 0 //PDPI = QSize(SCALEFACTOR*screen->physicalDotsPerInchX(), SCALEFACTOR*screen->physicalDotsPerInchY()); //Now create the full-screen window on the selected screen if(presentationLabel == 0){ @@ -209,13 +210,15 @@ void MainUI::startPresentation(bool atStart){ } void MainUI::ShowPage(int page){ - if(presentationLabel == 0 || !presentationLabel->isVisible()){ return; } //Check for valid document/page - //qDebug() << "Load Page:" << page << "/" << numPages-1; - if(page<0 || page > numPages ){ + //qDebug() << "Load Page:" << page << "/" << numPages << "Index:" << page; + if(page<0 || page > numPages || (page==numPages && CurrentPage==page) ){ endPresentation(); return; //invalid - no document loaded or invalid page specified } + WIDGET->setCurrentPage(page+1); //page numbers start at 1 for this widget + //Stop here if no presentation currently running + if(presentationLabel == 0 || !presentationLabel->isVisible()){ return; } CurrentPage = page; QImage PAGEIMAGE; if(page0){ return; } //currently loaded[ing] //qDebug() << " - Start Loading Pages"; numPages = DOC->numPages(); + //qDebug() << "numPages:" << numPages; progress->setRange(0,numPages); progress->setValue(0); progAct->setVisible(true); diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.h b/src-qt5/desktop-utils/lumina-pdf/mainUI.h index c1fc7c7c..c43d0ada 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.h +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.h @@ -75,19 +75,16 @@ signals: protected: void keyPressEvent(QKeyEvent *event){ //See if this is one of the special hotkeys and act appropriately - // NOTE: Some of this is duplicated with the QShortcut definitions (for non-presentation mode) - // This routine does not always work for the main window viewer due to differing widget focus policies - if(presentationLabel!=0 && presentationLabel->isVisible()){ //qDebug() << "Got Key Press:"; if( event->key()==Qt::Key_Escape || event->key()==Qt::Key_Backspace){ //qDebug() << " - Escape/Backspace"; endPresentation(); - }else if(event->key()==Qt::Key_Right || event->key()==Qt::Key_Down || event->key()==Qt::Key_Space){ + }else if(event->key()==Qt::Key_Right || event->key()==Qt::Key_Down || event->key()==Qt::Key_Space || event->key()==Qt::Key_PageDown){ //qDebug() << " - Right/Down/Spacebar"; - ShowPage( CurrentPage+1 ); - }else if(event->key()==Qt::Key_Left || event->key()==Qt::Key_Up){ + ShowPage( WIDGET->currentPage() ); //currentPage() starts at 1 rather than 0 + }else if(event->key()==Qt::Key_Left || event->key()==Qt::Key_Up || event->key()==Qt::Key_PageUp){ //qDebug() << " - Left/Up"; - ShowPage( CurrentPage-1 ); + ShowPage( WIDGET->currentPage()-2 ); //currentPage() starts at 1 rather than 0 }else if(event->key()==Qt::Key_Home){ //qDebug() << " - Home"; ShowPage(0); //go to the first page @@ -100,9 +97,6 @@ protected: }else{ QMainWindow::keyPressEvent(event); } - }else{ - QMainWindow::keyPressEvent(event); - } } }; #endif -- cgit From 94589dd957bf5b7792d69a6825643e4cc2fa66c7 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Tue, 14 Nov 2017 11:41:20 -0500 Subject: Finish up a bit more cleanup of keyboard events in lumina-pdf --- src-qt5/desktop-utils/lumina-pdf/mainUI.cpp | 2 +- src-qt5/desktop-utils/lumina-pdf/mainUI.h | 18 +++++++++++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) (limited to 'src-qt5/desktop-utils/lumina-pdf') diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp index 5cfc5da9..07680dcf 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp @@ -131,7 +131,7 @@ void MainUI::loadFile(QString path){ Printer->setOrientation(QPrinter::Portrait); } delete PAGE; - qDebug() << " - Document Setup : start loading pages now"; + //qDebug() << " - Document Setup : start loading pages now"; QTimer::singleShot(10, WIDGET, SLOT(updatePreview())); //start loading the file preview } diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.h b/src-qt5/desktop-utils/lumina-pdf/mainUI.h index c43d0ada..3609db13 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.h +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.h @@ -15,6 +15,8 @@ #include #include #include +#include +#include #include @@ -76,11 +78,25 @@ protected: void keyPressEvent(QKeyEvent *event){ //See if this is one of the special hotkeys and act appropriately //qDebug() << "Got Key Press:"; + bool inPresentation = (presentationLabel!=0); + if(!inPresentation){ + //Alternate functionality when **not** in presentation mode + /*if(event->key()==Qt::Key_Down){ + qDebug() << "Send Wheel Event"; + QWheelEvent event( WIDGET->mapFromGlobal(QCursor::pos()), QCursor::pos(),QPoint(0,0), QPoint(0,30), 0, Qt::Vertical, Qt::LeftButton, Qt::NoModifier); + QApplication::sendEvent(WIDGET, &event); + //WIDGET->scrollDown(); + return; + }else if(event->key()==Qt::Key_Up){ + return; + }*/ + } + if( event->key()==Qt::Key_Escape || event->key()==Qt::Key_Backspace){ //qDebug() << " - Escape/Backspace"; endPresentation(); }else if(event->key()==Qt::Key_Right || event->key()==Qt::Key_Down || event->key()==Qt::Key_Space || event->key()==Qt::Key_PageDown){ - //qDebug() << " - Right/Down/Spacebar"; + //qDebug() << " - Right/Down/Spacebar" << inPresentation; ShowPage( WIDGET->currentPage() ); //currentPage() starts at 1 rather than 0 }else if(event->key()==Qt::Key_Left || event->key()==Qt::Key_Up || event->key()==Qt::Key_PageUp){ //qDebug() << " - Left/Up"; -- cgit From 7fd0fb0a3eb24d6da6dc69901a2de45642be58d5 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 20 Nov 2017 06:43:27 -0500 Subject: Resync translation files with latest sources. --- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_af.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ar.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_az.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bg.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bn.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bs.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ca.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cs.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cy.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_da.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_de.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_el.ts | 40 +++++++++++----------- .../desktop-utils/lumina-pdf/i18n/l-pdf_en_AU.ts | 40 +++++++++++----------- .../desktop-utils/lumina-pdf/i18n/l-pdf_en_GB.ts | 40 +++++++++++----------- .../desktop-utils/lumina-pdf/i18n/l-pdf_en_ZA.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_es.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_et.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_eu.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fa.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fi.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr.ts | 40 +++++++++++----------- .../desktop-utils/lumina-pdf/i18n/l-pdf_fr_CA.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_gl.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_he.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hi.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hr.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hu.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_id.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_is.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_it.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ja.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ka.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ko.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lt.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lv.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mk.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mn.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ms.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mt.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nb.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ne.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nl.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pa.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pl.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt.ts | 40 +++++++++++----------- .../desktop-utils/lumina-pdf/i18n/l-pdf_pt_BR.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ro.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ru.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sa.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sk.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sl.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sr.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sv.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sw.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ta.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tg.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_th.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tr.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uk.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ur.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uz.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_vi.ts | 40 +++++++++++----------- .../desktop-utils/lumina-pdf/i18n/l-pdf_zh_CN.ts | 40 +++++++++++----------- .../desktop-utils/lumina-pdf/i18n/l-pdf_zh_HK.ts | 40 +++++++++++----------- .../desktop-utils/lumina-pdf/i18n/l-pdf_zh_TW.ts | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zu.ts | 40 +++++++++++----------- 66 files changed, 1320 insertions(+), 1320 deletions(-) (limited to 'src-qt5/desktop-utils/lumina-pdf') diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_af.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_af.ts index 14281ae0..23786591 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_af.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_af.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ar.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ar.ts index 7900cb58..3a40829b 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ar.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ar.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_az.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_az.ts index 5e7d0d53..50565634 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_az.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_az.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bg.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bg.ts index 37b59d5f..c965a37c 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bg.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bg.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bn.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bn.ts index 58ec50b3..dd1ca1b5 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bn.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bn.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bs.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bs.ts index 85b5dec4..521e8075 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bs.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bs.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ca.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ca.ts index 70719193..ea91d197 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ca.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ca.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cs.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cs.ts index 85754bd4..f5fd3db5 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cs.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cs.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cy.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cy.ts index c8383f8a..3e83c8d2 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cy.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cy.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_da.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_da.ts index b02a9220..093757c4 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_da.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_da.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_de.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_de.ts index 87cb14b0..b21a2d69 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_de.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_de.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_el.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_el.ts index 5d0d3730..8f5ae32e 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_el.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_el.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_AU.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_AU.ts index 9b01ebbc..7d4fb176 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_AU.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_AU.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_GB.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_GB.ts index 7df4d774..b2b42a06 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_GB.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_ZA.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_ZA.ts index 91bcca6a..1569ff14 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_ZA.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_es.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_es.ts index f4859ed5..8056b730 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_es.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_es.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_et.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_et.ts index 2eb67231..b52a4a55 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_et.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_et.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_eu.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_eu.ts index 6c6774c5..ff52b0a1 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_eu.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_eu.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fa.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fa.ts index 31d272bf..957ddab9 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fa.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fa.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fi.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fi.ts index 910bba00..2f39d575 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fi.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fi.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr.ts index 86bb5047..170c3c66 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr_CA.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr_CA.ts index 57eab0dd..303d7a8d 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr_CA.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_gl.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_gl.ts index 326772ca..f0320950 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_gl.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_gl.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_he.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_he.ts index 8618406e..a7e893a6 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_he.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_he.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hi.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hi.ts index e43064ad..fc123b31 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hi.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hi.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hr.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hr.ts index af3be492..e3bdb660 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hr.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hr.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hu.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hu.ts index 33a50231..6d263f2a 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hu.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hu.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_id.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_id.ts index f5dcb4ad..072a7e87 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_id.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_id.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_is.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_is.ts index c1154866..e70dd974 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_is.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_is.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_it.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_it.ts index a211917a..af69dbab 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_it.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_it.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ja.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ja.ts index 413cecb2..65bd0260 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ja.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ja.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ka.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ka.ts index 6d6a4af9..74220a42 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ka.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ka.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ko.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ko.ts index 1ca34a93..3bebe109 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ko.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ko.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lt.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lt.ts index 1de4aa7e..7139153d 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lt.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lt.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lv.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lv.ts index 197586d2..1a9e9b10 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lv.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lv.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mk.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mk.ts index bdf028dd..02b22e68 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mk.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mk.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mn.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mn.ts index 97a55860..72b39381 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mn.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mn.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ms.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ms.ts index 19c7785a..6facf85a 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ms.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ms.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mt.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mt.ts index fa613161..c2ba6f0a 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mt.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mt.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nb.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nb.ts index 7ef9f50f..d97bef48 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nb.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nb.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ne.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ne.ts index 40e8c3f0..0ee4f6bc 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ne.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ne.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nl.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nl.ts index 0614dae0..87bf1965 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nl.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nl.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pa.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pa.ts index ceaaf0fa..29904b2a 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pa.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pa.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pl.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pl.ts index 70fbeada..7a04e51d 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pl.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pl.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt.ts index 270ce968..b7079696 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt_BR.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt_BR.ts index 270ce968..b7079696 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt_BR.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ro.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ro.ts index 5f4e3dcc..5d60e79f 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ro.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ro.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ru.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ru.ts index a54517c5..966216b6 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ru.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ru.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sa.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sa.ts index a09a3e35..693a07dc 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sa.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sa.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sk.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sk.ts index 02a5b0b3..ad150876 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sk.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sk.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sl.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sl.ts index 54fca079..ffcb84bf 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sl.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sl.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sr.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sr.ts index 7645e38f..f90edcbc 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sr.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sr.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sv.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sv.ts index 8d135f59..10c15830 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sv.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sv.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sw.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sw.ts index 257d39c5..461d154b 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sw.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sw.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ta.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ta.ts index 9768b0de..c5c74e20 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ta.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ta.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tg.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tg.ts index 72fe08db..9b456c7f 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tg.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tg.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_th.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_th.ts index a0148386..215a5cc8 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_th.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_th.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tr.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tr.ts index 70a39405..140eb00c 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tr.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tr.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uk.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uk.ts index 806fe5b5..724ab1e4 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uk.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uk.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ur.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ur.ts index 3a012813..82dfefbb 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ur.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ur.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uz.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uz.ts index 5c4f890f..d2cc02fd 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uz.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uz.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_vi.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_vi.ts index e5164c70..0b3cab91 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_vi.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_vi.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_CN.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_CN.ts index 0c621541..7f5ccd68 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_CN.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_HK.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_HK.ts index 3300103b..f68078d0 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_HK.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_TW.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_TW.ts index c687d029..53b36b9d 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_TW.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zu.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zu.ts index 873d25c1..8b76c2c0 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zu.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zu.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted -- cgit From dd4c337edb937b9ff959ec6348e096cab08c34ca Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 20 Nov 2017 09:49:22 -0500 Subject: Add a clock to the main window top-panel when in presentation mode. --- src-qt5/desktop-utils/lumina-pdf/mainUI.cpp | 30 ++++++++++++++++++++++++++++- src-qt5/desktop-utils/lumina-pdf/mainUI.h | 7 +++++++ 2 files changed, 36 insertions(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils/lumina-pdf') diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp index 07680dcf..a240dc46 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp @@ -29,7 +29,16 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI()){ CurrentPage = 0; lastdir = QDir::homePath(); Printer = new QPrinter(); + //Create the interface widgets WIDGET = new QPrintPreviewWidget(Printer,this); + clockTimer = new QTimer(this); + clockTimer->setInterval(1000); //1-second updates to clock + connect(clockTimer, SIGNAL(timeout()), this, SLOT(updateClock()) ); + //frame_presenter = new QFrame(this); + label_clock = new QLabel(this); + label_clock->setAlignment(Qt::AlignVCenter | Qt::AlignRight); + label_clock->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); + //Now put the widgets into the UI this->setCentralWidget(WIDGET); connect(WIDGET, SIGNAL(paintRequested(QPrinter*)), this, SLOT(paintOnWidget(QPrinter*)) ); DOC = 0; @@ -44,7 +53,9 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI()){ progress->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); progress->setFormat("%v/%m (%p%)"); // [current]/[total] progAct = ui->toolBar->addWidget(progress); - progAct->setVisible(false); + progAct->setVisible(false); + clockAct = ui->toolBar->addWidget(label_clock); + clockAct->setVisible(false); //Put the various actions into logical groups QActionGroup *tmp = new QActionGroup(this); tmp->setExclusive(true); @@ -143,6 +154,14 @@ void MainUI::loadPage(int num, Poppler::Document *doc, MainUI *obj, QSize dpi, Q if(PAGE!=0){ //qDebug() << "DPI:" << 4*dpi; loadingHash.insert(num, PAGE->renderToImage(2.5*dpi.width(), 2.5*dpi.height()).scaled(2*page.width(), 2*page.height(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation) ); + /* + QList anno = PAGE->annotations(Annotations::AText ); + QStringList annoS; + for(int i=0; i(anno[i])->??? + } + annotateHash.insert(num, PAGE-> + */ }else{ loadingHash.insert(num, QImage()); } @@ -203,6 +222,9 @@ void MainUI::startPresentation(bool atStart){ ui->actionStop_Presentation->setEnabled(true); ui->menuStart_Presentation->setEnabled(false); + updateClock(); + clockAct->setVisible(true); + clockTimer->start(); QApplication::processEvents(); //Now start at the proper page ShowPage(page); @@ -240,6 +262,8 @@ void MainUI::endPresentation(){ presentationLabel->hide(); //just hide this (no need to re-create the label for future presentations) ui->actionStop_Presentation->setEnabled(false); ui->menuStart_Presentation->setEnabled(true); + clockTimer->stop(); + clockAct->setVisible(false); this->releaseKeyboard(); } @@ -355,3 +379,7 @@ void MainUI::OpenNewFile(){ //Now Open it if(!path.isEmpty()){ loadFile(path); } } + +void MainUI::updateClock(){ + label_clock->setText( QDateTime::currentDateTime().toString("hh:mm:ss") ); +} diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.h b/src-qt5/desktop-utils/lumina-pdf/mainUI.h index 3609db13..87d2a4e4 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.h +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.h @@ -45,6 +45,10 @@ private: //Other Interface elements QProgressBar *progress; QAction *progAct; //action associated with the progressbar + QTimer *clockTimer; + //QFrame *frame_presenter; + QLabel *label_clock; + QAction *clockAct; //PDF Page Loading cache variables QHash loadingHash; @@ -71,6 +75,9 @@ private slots: //Button Slots void OpenNewFile(); + //Other interface slots + void updateClock(); + signals: void PageLoaded(int); -- cgit From a0a359685fac01e867a369f7bc031b1d7f38c48b Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 20 Nov 2017 10:06:25 -0500 Subject: Change the styling of the presentation clock. use the highlight color/text so it gets a bit more attention. --- src-qt5/desktop-utils/lumina-pdf/mainUI.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils/lumina-pdf') diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp index a240dc46..39402622 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp @@ -36,8 +36,9 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI()){ connect(clockTimer, SIGNAL(timeout()), this, SLOT(updateClock()) ); //frame_presenter = new QFrame(this); label_clock = new QLabel(this); - label_clock->setAlignment(Qt::AlignVCenter | Qt::AlignRight); + label_clock->setAlignment(Qt::AlignCenter ); label_clock->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); + label_clock->setStyleSheet("QLabel{color: palette(highlight-text); background-color: palette(highlight); border-radius: 5px; }"); //Now put the widgets into the UI this->setCentralWidget(WIDGET); connect(WIDGET, SIGNAL(paintRequested(QPrinter*)), this, SLOT(paintOnWidget(QPrinter*)) ); -- cgit From 7de410fca082c16f4e725d86b3558e441c619590 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Tue, 21 Nov 2017 10:20:06 -0500 Subject: Do not have the main lumina-pdf window grab the keyboard. This breaks the consistency of keyboard shortcuts between presentation mode and normal viewing, but the up/down arrows will properly scroll the window now if a partial-page view mode is selected. --- src-qt5/desktop-utils/lumina-pdf/mainUI.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src-qt5/desktop-utils/lumina-pdf') diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp index 39402622..7a310e85 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp @@ -94,7 +94,6 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI()){ //Now set the default state of the menu's and actions ui->menuStart_Presentation->setEnabled(false); ui->actionStop_Presentation->setEnabled(false); - this->grabKeyboard(); } MainUI::~MainUI(){ -- cgit From 8cb0a016aa237866767bef2b559c3e8d13177931 Mon Sep 17 00:00:00 2001 From: q5sys Date: Fri, 24 Nov 2017 15:11:29 -0500 Subject: add file menu shortcuts into lumina-pdf --- src-qt5/desktop-utils/lumina-pdf/mainUI.ui | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src-qt5/desktop-utils/lumina-pdf') diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.ui b/src-qt5/desktop-utils/lumina-pdf/mainUI.ui index bbc76bab..7f555d01 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.ui +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.ui @@ -20,12 +20,12 @@ 0 0 659 - 24 + 28 - File + &File @@ -35,7 +35,7 @@ - Presentation + &Presentation -- cgit