Qt 5.10 Book Examples
main.cpp
Go to the documentation of this file.
1 // ======================================================================
2 // main.cpp
3 // ======================================================================
4 // This file is a part of the book
5 // "Qt 5.10 Professional programming with C++"
6 // http://qt-book.com
7 // ======================================================================
8 // Copyright (c) 2017 by Max Schlee
9 // ======================================================================
10 
11 #include <QtWidgets>
12 
13 // ======================================================================
14 class BlinkLabel : public QLabel {
15 private:
16  bool m_bBlink;
17  QString m_strText;
18 
19 protected:
20  virtual void timerEvent(QTimerEvent*)
21  {
22  m_bBlink = !m_bBlink;
23  setText(m_bBlink ? m_strText : "");
24  }
25 
26 public:
27  BlinkLabel(const QString& strText,
28  int nInterval = 200,
29  QWidget* pwgt = 0
30  )
31  : QLabel(strText, pwgt)
32  , m_bBlink(true)
33  , m_strText(strText)
34  {
35  startTimer(nInterval);
36  }
37 };
38 
39 // ----------------------------------------------------------------------
40 int main (int argc, char** argv)
41 {
42  QApplication app (argc, argv);
43  BlinkLabel lbl("<FONT COLOR = RED><CENTER>Blink</CENTER></FONT>");
44 
45  lbl.resize(80, 25);
46  lbl.show();
47 
48  return app.exec();
49 }
QLabel * lbl(const QPainter::CompositionMode &mode)
Definition: main.cpp:14
int main(int argc, char **argv)
Definition: main.cpp:15