summaryrefslogtreecommitdiffstats
path: root/src/apppropprg.h
blob: cc8124f4b0ab35f99f24fc6c286803a49749f440 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// C++ Interface: apppropprg
//
// Description: 
//
//
// Author: KoolDock team <[email protected]>, (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