// // 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(TQWidget* parent = 0, const char* name = 0); ~appPropPrg(); void addFile(const TQString& filename, const TQString& iconname, const TQString& execname, const TQString& name, bool notify); public slots: void accept(); void reject(); void cmdfile_clicked(); void cuserchk(); void terminalchk(); signals: void apply(); protected: void closeEvent(TQCloseEvent*); }; #endif