mirror of
https://github.com/FAUSheppy/speech-server-client-qt
synced 2025-12-06 00:41:35 +01:00
implement server config remove button
This commit is contained in:
17
pushbuttonwithposition.h
Normal file
17
pushbuttonwithposition.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef PUSHBUTTONWITHPOSITION_H
|
||||
#define PUSHBUTTONWITHPOSITION_H
|
||||
|
||||
#include <QPushButton>
|
||||
|
||||
|
||||
|
||||
class PushButtonWithPosition : public QPushButton
|
||||
{
|
||||
public:
|
||||
PushButtonWithPosition(int row, QString text) : QPushButton(text){
|
||||
this->row = row;
|
||||
}
|
||||
int row;
|
||||
};
|
||||
|
||||
#endif // PUSHBUTTONWITHPOSITION_H
|
||||
Reference in New Issue
Block a user