#ifndef XPROGRESSBAR_H #define XPROGRESSBAR_H #include #include class XProgressBar : public QWidget { Q_OBJECT public: explicit XProgressBar(QWidget *parent = 0); ~XProgressBar(); void setProgress(int state,int value); signals: public slots: private: QHBoxLayout *m_layout; QProgressBar *m_progress; int *m_state; }; #endif // XPROGRESSBAR_H