summaryrefslogtreecommitdiff
path: root/muse2/muse/widgets/bigtime.h
blob: 6d2557a47c86990bd04a9a52a2ec19e391cdd30d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
//=========================================================
//  MusE
//  Linux Music Editor
//  $Id: ./muse/widgets/bigtime.h $
//
//  Copyright (C) 1999-2011 by Werner Schweer and others
//
//  This program is free software; you can redistribute it and/or
//  modify it under the terms of the GNU General Public License
//  as published by the Free Software Foundation; version 2 of
//  the License, or (at your option) any later version.
//
//  This program is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//  GNU General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with this program; if not, write to the Free Software
//  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
//
//=========================================================
#ifndef __BIGTIME_H__
#define __BIGTIME_H__

#include <QWidget>
#include <QPaintEvent>
#include <QPainter>
#include <cmath>

class QCheckBox;
class QLabel;

namespace MusEGui {

class MusE;

class VerticalMetronomeWidget : public QWidget
{
   float metronomePosition;


protected:
    void paintEvent (QPaintEvent  *ev )
    {
      QRect rr(ev->rect());
      QPainter p(this);

      //p.fillRect(rr,Qt::yellow);
      int y = (rr.height() - (rr.height()*fabs(metronomePosition)))-1;
      if (metronomePosition > -0.05 and metronomePosition < 0.15) {
        p.setPen(Qt::red);
        p.drawLine(0,y-1,rr.width(),y-1);
      }
      else {
        p.setPen(Qt::yellow);
      }
      p.drawLine(0,y,rr.width(),y);
    }
public:
    VerticalMetronomeWidget(QWidget* parent) : QWidget(parent) {
      metronomePosition=0.0;
    }

    void setMetronome(float v)
    {
      metronomePosition = v;
      update();
    }
};


//---------------------------------------------------------
//   BigTime
//---------------------------------------------------------

class BigTime : public QWidget {
      Q_OBJECT
    
      bool tickmode;
      MusE* seq;
      
      bool setString(unsigned);

      VerticalMetronomeWidget *metronome;
      QWidget *dwin;
      QCheckBox *fmtButton;
      QLabel *absTickLabel;
      QLabel *absFrameLabel;
      QLabel *barLabel, *beatLabel, *tickLabel,
             //*hourLabel, *minLabel, *secLabel, *frameLabel,
             *minLabel, *secLabel, *frameLabel, *subFrameLabel, 
             *sep1, *sep2, *sep3, *sep4, *sep5;
      
      //int oldbar, oldbeat, oldhour, oldmin, oldsec, oldframe;
      int oldbar, oldbeat, oldmin, oldsec, oldframe, oldsubframe;
      unsigned oldtick;
      unsigned oldAbsTick, oldAbsFrame;
      void setFgColor(QColor c);
      void setBgColor(QColor c);

   protected:
      virtual void resizeEvent(QResizeEvent*);
      virtual void closeEvent(QCloseEvent*);
      //void paintEvent (QPaintEvent  *event );

   public slots:
      void setPos(int, unsigned, bool);
      void configChanged();
      void fmtButtonToggled(bool);
   signals:
      void closed();

   public:
      BigTime(QWidget* parent);
      };

} // namespace MusEGui

#endif