You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kooldock/src/apppropprg.h

46 lines
781 B

//
// C++ Interface: apppropprg
//
// Description:
//
//
// Author: KoolDock team <radix@kde.cl>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef APPPROPPRG_H
#define APPPROPPRG_H
#include <qwidget.h>
#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