blob: 1aaeda0897eb59a0d5b1250981cf81a126212d86 (
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
46
47
48
49
|
//
// 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 <tqwidget.h>
#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
|