Created
April 13, 2016 05:45
-
-
Save manashmandal/60b6e80477052280a2db2a96f2f5be7e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef THEWIDGETITEM_H | |
#define THEWIDGETITEM_H | |
#include <QWidget> | |
#include <QLineEdit> | |
#include <QPushButton> | |
#include <QSlider> | |
#include <QProgressBar> | |
#include <QLabel> | |
namespace Ui { | |
class TheWidgetItem; | |
} | |
class TheWidgetItem : public QWidget | |
{ | |
Q_OBJECT | |
public: | |
explicit TheWidgetItem(QWidget *parent = 0); | |
~TheWidgetItem(); | |
private slots: | |
void on_pressThisBtn_clicked(); | |
void on_horizontalSlider_valueChanged(int value); | |
private: | |
Ui::TheWidgetItem *ui; | |
}; | |
#endif // THEWIDGETITEM_H |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment