Skip to content

Instantly share code, notes, and snippets.

@manashmandal
Created April 13, 2016 05:45
Show Gist options
  • Save manashmandal/60b6e80477052280a2db2a96f2f5be7e to your computer and use it in GitHub Desktop.
Save manashmandal/60b6e80477052280a2db2a96f2f5be7e to your computer and use it in GitHub Desktop.
#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