home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / include / scribus-ng / tabexternaltoolswidget.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-12-25  |  3.4 KB  |  77 lines

  1. /*
  2. For general Scribus (>=1.3.2) copyright and licensing information please refer
  3. to the COPYING file provided with the program. Following this notice may exist
  4. a copyright and/or license notice that predates the release of Scribus 1.3.2
  5. for which a new license (GPL+exception) is in place.
  6. */
  7. /***************************************************************************
  8. *   Copyright (C) 2005 by Craig Bradney                                   *
  9. *   cbradney@zip.com.au                                                   *
  10. *                                                                         *
  11. *   This program is free software; you can redistribute it and/or modify  *
  12. *   it under the terms of the GNU General Public License as published by  *
  13. *   the Free Software Foundation; either version 2 of the License, or     *
  14. *   (at your option) any later version.                                   *
  15. *                                                                         *
  16. *   This program is distributed in the hope that it will be useful,       *
  17. *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
  18. *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
  19. *   GNU General Public License for more details.                          *
  20. *                                                                         *
  21. *   You should have received a copy of the GNU General Public License     *
  22. *   along with this program; if not, write to the                         *
  23. *   Free Software Foundation, Inc.,                                       *
  24. *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  25. ***************************************************************************/
  26.  
  27. #ifndef TABEXTERNALTOOLSWIDGET_H
  28. #define TABEXTERNALTOOLSWIDGET_H
  29.  
  30. #include "ui_tabexternaltoolswidget.h"
  31. #include "scribusapi.h"
  32.  
  33. struct ApplicationPrefs;
  34. class QListWidgetItem;
  35.  
  36. class SCRIBUS_API TabExternalToolsWidget : public QWidget, Ui::TabExternalToolsWidget
  37. {
  38.     Q_OBJECT
  39.  
  40.     public:
  41.         TabExternalToolsWidget(struct ApplicationPrefs *prefsData, QWidget* parent=0);
  42.         ~TabExternalToolsWidget();
  43.         void restoreDefaults(struct ApplicationPrefs *prefsData);
  44.         
  45.         const QString newPSTool() const;
  46.         const QString newImageTool() const;
  47.         const QString newExtBrowserTool() const;
  48.         const QString newLatexEditor() const;
  49.         const QStringList newLatexConfigs() const;
  50.         const QMap<QString, QString> newLatexCommands() const;
  51.         bool newAntialiasText() const { return psAntialiasTextCheckBox->isChecked();}
  52.         bool newAntialiasGraphics() const { return psAntialiasGraphicsCheckBox->isChecked();}
  53.         int newPSToolResolution() const { return psResolutionSpinBox->value();}
  54.         int newLatexToolResolution() const { return latexResolutionSpinBox->value();}
  55.         bool newLatexForceDpi() const { return latexForceDpiCheckBox->checkState() == Qt::Checked;}
  56.         bool newLatexStartWithEmptyFrames() const { return latexEmptyFrameCheckBox->checkState() == Qt::Checked;}
  57.         
  58.     protected:
  59.         bool fileInPath(QString file);
  60.         void insertConfigItem(QString config, int row = -1);
  61.         void setConfigItemText(QListWidgetItem *item);
  62.         QMap<QString, QString> commands;
  63.     public slots:
  64.         void changePostScriptTool();
  65.         void changeImageTool();
  66.         void changeExtBrowserTool();
  67.         void changeLatexEditor();
  68.         void rescanForTools();
  69.         void upButtonPressed();
  70.         void downButtonPressed();
  71.         void addConfig();
  72.         void deleteConfig();
  73.         void changePath();
  74. };
  75.  
  76. #endif
  77.