import React, { Component, PropTypes } from 'react' import { connect } from 'react-redux' import { render } from 'react-dom'; import Button from '../common/Button'; import { setShowFullContent } from '../../ducks/ui/flow' ShowFullContentButton.propTypes = { setShowFullContent: PropTypes.func.isRequired, showFullContent: PropTypes.bool.isRequired } function ShowFullContentButton ( {setShowFullContent, showFullContent, visibleLines, contentLines} ){ return ( !showFullContent &&
{visibleLines}/{contentLines} are visible  
) } export default connect( state => ({ showFullContent: state.ui.flow.showFullContent, visibleLines: state.ui.flow.maxContentLines, contentLines: state.ui.flow.content.length }), { setShowFullContent } )(ShowFullContentButton) ght'>
aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1207/alphablender.vhdl
blob: 7d8cc946bc56aa6ba3cd6233e325dc7ff05dcb16 (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