// Copyright (C) 2020 Jakub Melka // // This file is part of PdfForQt. // // PdfForQt is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // PdfForQt is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with PDFForQt. If not, see . #ifndef PDFTOOLAUDIOBOOK_H #define PDFTOOLAUDIOBOOK_H #include "pdftoolabstractapplication.h" #ifdef Q_OS_WIN struct ISpVoice; namespace pdftool { class PDFVoiceInfo { public: PDFVoiceInfo() = default; PDFVoiceInfo(std::map properties, ISpVoice* voice); PDFVoiceInfo(const PDFVoiceInfo&) = delete; PDFVoiceInfo(PDFVoiceInfo&&) = default; PDFVoiceInfo& operator=(const PDFVoiceInfo&) = delete; PDFVoiceInfo& operator=(PDFVoiceInfo&&) = default; ~PDFVoiceInfo(); QString getName() const { return getStringValue("Name"); } QString getGender() const { return getStringValue("Gender"); } QString getAge() const { return getStringValue("Age"); } QString getVendor() const { return getStringValue("Vendor"); } QString getLanguage() const { return getStringValue("Language"); } QString getVersion() const { return getStringValue("Version"); } QLocale getLocale() const; QString getStringValue(QString key) const; ISpVoice* getVoice() const { return m_voice; } private: std::map m_properties; ISpVoice* m_voice = nullptr; }; using PDFVoiceInfoList = std::vector; class PDFToolAudioBookBase : public PDFToolAbstractApplication { public: PDFToolAudioBookBase() = default; protected: int fillVoices(const PDFToolOptions& options, PDFVoiceInfoList& list, bool fillVoicePointers); int showVoiceList(const PDFToolOptions& options); }; class PDFToolAudioBookVoices : public PDFToolAudioBookBase { public: virtual QString getStandardString(StandardString standardString) const override; virtual int execute(const PDFToolOptions& options) override; virtual Options getOptionsFlags() const override; }; class PDFToolAudioBook : public PDFToolAudioBookBase { public: virtual QString getStandardString(StandardString standardString) const override; virtual int execute(const PDFToolOptions& options) override; virtual Options getOptionsFlags() const override; }; } // namespace pdftool #endif #endif // PDFTOOLAUDIOBOOK_H