aboutsummaryrefslogtreecommitdiff
path: root/aobutton.h
blob: 049237554ab0aca21128f8e6e0829d37921d61ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef AOBUTTON_H
#define AOBUTTON_H

#include "aoapplication.h"

#include <QPushButton>

class AOButton : public QPushButton
{
  Q_OBJECT

public:
  AOButton(QWidget *parent, AOApplication *p_ao_app);
  ~AOButton();

  AOApplication *ao_app;

  void set_image(QString p_image);
};

#endif // AOBUTTON_H