mirror of
				https://github.com/arcan1s/awesome-widgets.git
				synced 2025-11-03 22:33:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			107 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			107 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/***************************************************************************
 | 
						|
 *   This file is part of awesome-widgets                                  *
 | 
						|
 *                                                                         *
 | 
						|
 *   awesome-widgets is free software: you can redistribute it and/or      *
 | 
						|
 *   modify it under the terms of the GNU General Public License as        *
 | 
						|
 *   published by the Free Software Foundation, either version 3 of the    *
 | 
						|
 *   License, or (at your option) any later version.                       *
 | 
						|
 *                                                                         *
 | 
						|
 *   awesome-widgets 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 General Public License for more details.                          *
 | 
						|
 *                                                                         *
 | 
						|
 *   You should have received a copy of the GNU General Public License     *
 | 
						|
 *   along with awesome-widgets. If not, see http://www.gnu.org/licenses/  *
 | 
						|
 ***************************************************************************/
 | 
						|
 | 
						|
#ifndef EXTSCRIPT_H
 | 
						|
#define EXTSCRIPT_H
 | 
						|
 | 
						|
#include <QDialog>
 | 
						|
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
class ExtScript;
 | 
						|
}
 | 
						|
 | 
						|
class ExtScript : public QDialog
 | 
						|
{
 | 
						|
    Q_OBJECT
 | 
						|
    Q_PROPERTY(int apiVersion READ apiVersion WRITE setApiVersion)
 | 
						|
    Q_PROPERTY(QString name READ name WRITE setName)
 | 
						|
    Q_PROPERTY(QString comment READ comment WRITE setComment)
 | 
						|
    Q_PROPERTY(QString executable READ executable WRITE setExecutable)
 | 
						|
    Q_PROPERTY(QString prefix READ prefix WRITE setPrefix)
 | 
						|
    Q_PROPERTY(bool active READ isActive WRITE setActive)
 | 
						|
    Q_PROPERTY(bool output READ hasOutput WRITE setHasOutput)
 | 
						|
    Q_PROPERTY(int interval READ interval WRITE setInterval)
 | 
						|
    Q_PROPERTY(Redirect redirect READ redirect WRITE setRedirect)
 | 
						|
 | 
						|
public:
 | 
						|
    enum Redirect {
 | 
						|
        stdout2stderr = 0,
 | 
						|
        nothing,
 | 
						|
        stderr2stdout
 | 
						|
    };
 | 
						|
    typedef struct {
 | 
						|
        bool active;
 | 
						|
        QString name;
 | 
						|
        QString output;
 | 
						|
        bool refresh;
 | 
						|
    } ScriptData;
 | 
						|
 | 
						|
    explicit ExtScript(QWidget *parent = 0, const QString scriptName = QString(),
 | 
						|
                       const QStringList directories = QStringList(), const bool debugCmd = false);
 | 
						|
    ~ExtScript();
 | 
						|
    // get methods
 | 
						|
    int apiVersion();
 | 
						|
    QString comment();
 | 
						|
    QString executable();
 | 
						|
    QString fileName();
 | 
						|
    int interval();
 | 
						|
    QString name();
 | 
						|
    QString prefix();
 | 
						|
    Redirect redirect();
 | 
						|
    QString strRedirect();
 | 
						|
    bool hasOutput();
 | 
						|
    bool isActive();
 | 
						|
    // set methods
 | 
						|
    void setApiVersion(const int _apiVersion = 0);
 | 
						|
    void setActive(const bool _state = true);
 | 
						|
    void setComment(const QString _comment = QString("empty"));
 | 
						|
    void setExecutable(const QString _executable = QString("/usr/bin/true"));
 | 
						|
    void setHasOutput(const bool _state = true);
 | 
						|
    void setInterval(const int _interval = 1);
 | 
						|
    void setName(const QString _name = QString("none"));
 | 
						|
    void setPrefix(const QString _prefix = QString(""));
 | 
						|
    void setRedirect(const Redirect _redirect = nothing);
 | 
						|
    void setStrRedirect(const QString _redirect = QString("nothing"));
 | 
						|
 | 
						|
public slots:
 | 
						|
    void readConfiguration();
 | 
						|
    ScriptData run(const int time);
 | 
						|
    void showConfiguration();
 | 
						|
    void tryDelete();
 | 
						|
    void writeConfiguration();
 | 
						|
 | 
						|
private:
 | 
						|
    QString m_fileName;
 | 
						|
    QStringList m_dirs;
 | 
						|
    bool debug;
 | 
						|
    Ui::ExtScript *ui;
 | 
						|
    // properties
 | 
						|
    int m_apiVersion = 0;
 | 
						|
    bool m_active = true;
 | 
						|
    QString m_comment = QString("empty");
 | 
						|
    QString m_executable = QString("/usr/bin/true");
 | 
						|
    int m_interval = 1;
 | 
						|
    QString m_name = QString("none");
 | 
						|
    bool m_output = true;
 | 
						|
    QString m_prefix = QString("");
 | 
						|
    Redirect m_redirect = nothing;
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
#endif /* EXTSCRIPT_H */
 |