// // C++ Interface: apppropprg // // Description: // // // Author: KoolDock team , (C) 2004 // // Copyright: See COPYING file that comes with this distribution // // #ifndef APPPROPPRG_H #define APPPROPPRG_H #include #include "appProp.h" /** @author KoolDock team */ class appPropPrg : public appProp { Q_OBJECT public: appPropPrg(QWidget *parent = 0, const char *name = 0); ~appPropPrg(); void addFile(QString filename, QString iconname, QString execname, QString name, bool notify); public slots: void accept(); void reject(); void cmdfile_clicked(); void cuserchk(); void terminalchk(); signals: void apply(); protected: void closeEvent( QCloseEvent* ); }; #endif