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.
krusader/krusader/ActionMan/actionman.h

38 lines
599 B

//
// C++ Interface: actionman
//
// Description: This manages all useractions
//
//
// Author: Jonas B<>r (C) 2006
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef ACTIONMAN_H
#define ACTIONMAN_H
#include <kdialogbase.h>
class UserActionPage;
class ActionMan : public KDialogBase {
TQ_OBJECT
public:
ActionMan( TQWidget* parent=0 );
~ActionMan();
protected slots:
void slotClose();
void slotApply();
void slotEnableApplyButton();
void slotDisableApplyButton();
private:
UserActionPage* userActionPage;
};
#endif // ifndef ACTIONMAN_H