File: channelview.h.old

package info (click to toggle)
mixviews 1.20-10.1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 2,928 kB
  • ctags: 5,960
  • sloc: cpp: 32,879; ansic: 2,110; makefile: 445; sh: 17
file content (111 lines) | stat: -rw-r--r-- 3,630 bytes parent folder | download | duplicates (2)
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
// channelview.h

/******************************************************************************
 *
 *  MiXViews - an X window system based sound & data editor/processor
 *
 *  Copyright (c) 1993, 1994 Regents of the University of California
 *
 *  Author:     Douglas Scott
 *  Date:       December 13, 1994
 *
 *  Permission to use, copy and modify this software and its documentation
 *  for research and/or educational purposes and without fee is hereby granted,
 *  provided that the above copyright notice appear in all copies and that
 *  both that copyright notice and this permission notice appear in
 *  supporting documentation. The author reserves the right to distribute this
 *  software and its documentation.  The University of California and the author
 *  make no representations about the suitability of this software for any 
 *  purpose, and in no event shall University of California be liable for any
 *  damage, loss of data, or profits resulting from its use.
 *  It is provided "as is" without express or implied warranty.
 *
 ******************************************************************************/


// A ChannelView object controls the visual display of a Data object when it is
// being displayed as a set of graphs representing the information in each
// channel.  It contains a minimum of one ChannelGraph object.  The DataView
// base class implements the Graph subclass coordination.

#ifndef CHANNELVIEW_H
#ifdef __GNUG__
#pragma interface
#endif
#define CHANNELVIEW_H

#include "dataview.h"

class HScale;
class VBox;
class Panner;
class Event;
class Perspective;
class Data;
class Range;
class Controller;
class ChannelGraph;
class EditStatusDelegate;

class ChannelView : public DataView {
	typedef DataView Super;
public:
	ChannelView(Controller *, ViewInfo &);
	virtual ~ChannelView();

	// methods invoked by menu items

	redefined void setChannelRange();
	redefined void shiftChannelViewUp();
	redefined void shiftChannelViewDown();
	redefined void toggleGraphMode();

	// redefined to avoid hiding

	redefined void setVisibleFrameRange() { DataView::setVisibleFrameRange(); }
	redefined void setInsertPoint() { DataView::setInsertPoint(); }
	redefined void setEditRegion() { DataView::setEditRegion(); }
	redefined void setInsertPoint(int, const Range&, boolean scroll=true);
	redefined void setEditRegion(const Range&, const Range&, boolean scroll=true);
	redefined Range getHorizScaleRange();
	redefined Range getVisibleFrameRange();
	redefined void resetHorizontalScale();
	redefined void setVisibleFrameRange(const Range &);
	redefined Range getChannelRange();
	redefined void setChannelRange(const Range &);
	redefined boolean keyCommand(unsigned INT32 cmd);
	redefined boolean frameScaleInFrames() { return horizScaleInFrames(); }

	// methods new to this subclass
	virtual void addChannel();
	virtual void removeChannel();
	void setScaleOptions();
protected:
	redefined int graphsVisible();
	redefined void addGraph(Graph *);
	
	// methods new to this subclass
	void addChannel(int chan);
	void addChannel(int chan, Range &);
private:
	friend Controller;
	friend EditStatusDelegate;

	void Init(ViewInfo &);
	redefined const char* plotWidthAttribute() { return "ChannelPlotSize"; }
	redefined void initPerspective();
	redefined void checkPerspective();
	redefined void constrainVerticalView(Perspective &);
	redefined void incrementGraphsVisible();
	redefined void decrementGraphsVisible();
	int lowestChannel();
	void setLowestChannel(int chan);
	int highestChannel();
	int nchans();
	void setNChans(int chans);
	int maxChans();
	
	Perspective *channelsShown;
};

#endif