configuredialog.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
#ifndef KSYNC_CONFIGUREDIALOG_H
00024
#define KSYNC_CONFIGUREDIALOG_H
00025
00026
#include <kdialogbase.h>
00027
00028
namespace KSync {
00029
00038 class ConfigureDialog :
public KDialogBase
00039 {
00040 Q_OBJECT
00041
00042
public:
00049
ConfigureDialog(
QWidget *parent = 0,
const char *name = 0,
bool modal =
true );
00050 ~
ConfigureDialog();
00051
00052
virtual void show();
00053
00060
void addWidget(
QWidget *widget ,
const QString &name,
QPixmap *pixmap );
00061
00062 signals:
00066
void ok();
00067
00068
protected slots:
00069
virtual void slotOk();
00070
virtual void slotCancel();
00071
00072
protected:
00076
void apply(
bool );
00077
00078
private:
00082
void setup();
00083
00087
void unload();
00088 };
00089
00090 }
00091
00092
#endif
This file is part of the documentation for kitchensync Library Version 3.3.0.