/elec/propeller-clock

To get this branch, use:
bzr branch http://bzr.ed.am/elec/propeller-clock

« back to all changes in this revision

Viewing changes to src/modes/settings_mode.h

  • Committer: Tim Marston
  • Date: 2012-05-17 22:49:11 UTC
  • Revision ID: tim@ed.am-20120517224911-dbd9dtcpl14xlhi0
rewrote/fixed button event triggering code

Show diffs side-by-side

added added

removed removed

1
1
/*
2
 
 * settings_major_mode.h
 
2
 * settings_mode.h
3
3
 *
4
4
 * Copyright (C) 2011 Tim Marston <tim@ed.am> and Dan Marston.
5
5
 *
20
20
 * You should have received a copy of the GNU Lesser General Public License
21
21
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
22
 */
23
 
#ifndef _SETTINGS_MAJOR_MODE_H_
24
 
#define _SETTINGS_MAJOR_MODE_H_
25
 
 
26
 
 
27
 
#include "major_mode.h"
28
 
#include "../button.h"
29
 
 
30
 
 
31
 
class SettingsMajorMode : public MajorMode
32
 
{
33
 
public:
34
 
 
35
 
        SettingsMajorMode( Button &button );
36
 
 
37
 
        /**
38
 
         * Called once per segment to draw a column of LEDs.
39
 
         * @param segment the segment number to draw
40
 
         */
41
 
        void draw( int segment );
42
 
 
43
 
        /**
44
 
         * Called at the start of a "frame", before any segments are drawn.
45
 
         */
46
 
        void draw_reset();
47
 
 
48
 
        /**
49
 
         * Called when the mode is becoming active.
50
 
         */
51
 
        void activate();
52
 
 
53
 
        /**
54
 
         * Called when the mode is becoming inactive.
55
 
         */
56
 
        void deactivate();
57
 
 
58
 
        /**
59
 
         * Called when the button has been pressed.
60
 
         */
61
 
        void press();
62
 
 
63
 
        /**
64
 
         * Called when the button haas been long-pressed.
65
 
         */
66
 
        void long_press();
67
 
 
68
 
private:
69
 
 
70
 
        /**
71
 
         * Set up message buffers.
72
 
         */
73
 
        void reset_messages();
74
 
 
75
 
        /** item we're setting */
76
 
        int _item;
77
 
        
78
 
        /** part of item that we're setting */
79
 
        int _part;
80
 
 
81
 
        /** the button */
82
 
        Button &_button;
83
 
};
84
 
 
85
 
 
86
 
#endif //_SETTINGS_MAJOR_MODE_H_
 
23
#ifndef _SETTINGS_MODE_H_
 
24
#define _SETTINGS_MODE_H_
 
25
 
 
26
 
 
27
/**
 
28
 * Called to inform the mode that there has been a (short) button press.
 
29
 */
 
30
extern void settings_mode_press();
 
31
 
 
32
/**
 
33
 * Called to inform the mode that there has been a long button press.
 
34
 */
 
35
extern void settings_mode_long_press();
 
36
 
 
37
/**
 
38
 * Draw an individual segment (column of pixels)
 
39
 *
 
40
 * @param segment the segment number
 
41
 */
 
42
extern void settings_mode_draw( int segment );
 
43
 
 
44
/**
 
45
 * Called before the first segment is drawn, once per "frame".
 
46
 */
 
47
extern void settings_mode_draw_reset();
 
48
 
 
49
/**
 
50
 * Called when this minor mode becomes active
 
51
 */
 
52
extern void settings_mode_activate();
 
53
 
 
54
 
 
55
#endif //_SETTINGS_MODE_H_