Blame view

app/gui/oven_control/animatedimagebox.cpp 848 Bytes
99b8066f4   김태훈   V0.1.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  #include "animatedimagebox.h"
  
  AnimatedImageBox::AnimatedImageBox(QWidget *parent) :
      QLabel(parent),
      index(0)
  {
      timer = new QTimer(this);
      connect(timer, SIGNAL(timeout()), this, SLOT(step()));
  }
  
  AnimatedImageBox::~AnimatedImageBox()
  {
      images.clear();
  }
  
  void AnimatedImageBox::load(QString fileName)
  {
      QPixmap pixmap;
      pixmap.load(fileName);
  
      if (images.isEmpty())
          setPixmap(pixmap);
  
      images.append(pixmap);
6f96c947a   김태훈   GUI 0.1.4
25
  //    index = 0;
99b8066f4   김태훈   V0.1.1
26
27
28
29
30
  }
  
  void AnimatedImageBox::clear()
  {
      images.clear();
6f96c947a   김태훈   GUI 0.1.4
31
  //    index = 0;
99b8066f4   김태훈   V0.1.1
32
33
34
35
  }
  
  void AnimatedImageBox::start(int msec)
  {
61ba89b34   김태훈   GUI V0.1.6
36
      index = 0;
99b8066f4   김태훈   V0.1.1
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
      timer->start(msec);
  }
  
  void AnimatedImageBox::stop()
  {
      timer->stop();
  }
  
  void AnimatedImageBox::step()
  {
      if (images.isEmpty())
          return;
  
      if (index >= images.length())
          index = 0;
  
      setPixmap(images.at(index++));
  }