
Due to a countless number of changes made to the core that were not fully understood, tested, or documented, it was decided to roll everything back to the last known stable version (2.6.2). Changes dropped include: - Witness needed - Shake - Frame SFX - Multiple custom objections - Multithreaded thumbnail generation - Looping - Various translation additions - "Mirror IC" - Color in IC log - An invocation of clang-format Next time, work together and split your big fork into independently testable feature branches.
33 lines
618 B
C++
33 lines
618 B
C++
#ifndef AOEVIDENCEDISPLAY_H
|
|
#define AOEVIDENCEDISPLAY_H
|
|
|
|
#include "aoapplication.h"
|
|
#include "aosfxplayer.h"
|
|
|
|
#include <QLabel>
|
|
#include <QMovie>
|
|
#include <QDebug>
|
|
|
|
class AOEvidenceDisplay : public QLabel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
AOEvidenceDisplay(QWidget *p_parent, AOApplication *p_ao_app);
|
|
|
|
void show_evidence(QString p_evidence_image, bool is_left_side, int p_volume);
|
|
QLabel* get_evidence_icon();
|
|
void reset();
|
|
|
|
private:
|
|
AOApplication *ao_app;
|
|
QMovie *evidence_movie;
|
|
QLabel *evidence_icon;
|
|
AOSfxPlayer *sfx_player;
|
|
|
|
private slots:
|
|
void frame_change(int p_frame);
|
|
};
|
|
|
|
#endif // AOEVIDENCEDISPLAY_H
|