exchangeprogress.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
#ifndef EXCHANGEPROGRESS_H
00021
#define EXCHANGEPROGRESS_H
00022
00023
#include <kprogress.h>
00024
00025
class QComboBox;
00026
00027
namespace KPIM {
00028
00029
class ExchangeProgress :
public KProgressDialog
00030 {
00031 Q_OBJECT
00032
00033
public:
00034 ExchangeProgress(
QWidget *parent=0);
00035
virtual ~ExchangeProgress();
00036
00037
public slots:
00038
void slotTransferStarted();
00039
void slotTransferFinished();
00040
00041 signals:
00042
void complete( ExchangeProgress* );
00043
00044
private:
00045
int m_total;
00046
int m_finished;
00047
00048
private:
00049
void updateLabel();
00050 };
00051
00052 }
00053
00054
#endif
This file is part of the documentation for libkpimexchange Library Version 3.3.0.