This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
//
|
||||
// C++ Interface: mycardspixmaplabel
|
||||
//
|
||||
// Description:
|
||||
//
|
||||
//
|
||||
// Author: FThauer FHammer <f.thauer@web.de>, (C) 2007
|
||||
//
|
||||
// Copyright: See COPYING file that comes with this distribution
|
||||
//
|
||||
//
|
||||
#ifndef MYAVATARBUTTON_H
|
||||
#define MYAVATARBUTTON_H
|
||||
|
||||
#include <QtGui>
|
||||
#include <QtCore>
|
||||
|
||||
#include <iostream>
|
||||
|
||||
class MyAvatarButton : public QPushButton
|
||||
{
|
||||
public:
|
||||
MyAvatarButton(QGroupBox*);
|
||||
|
||||
~MyAvatarButton();
|
||||
|
||||
void setMyLink(QString theValue){ myLink = theValue;}
|
||||
QString getMyLink() const{ return myLink;}
|
||||
|
||||
|
||||
|
||||
private:
|
||||
|
||||
QString myLink;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user