import React, { Component, PropTypes } from 'react' import { connect } from 'react-redux' import { onKeyDown } from '../ducks/ui/keyboard' import MainView from './MainView' import Header from './Header' import EventLog from './EventLog' import Footer from './Footer' class ProxyAppMain extends Component { componentWillMount() { window.addEventListener('keydown', this.props.onKeyDown); } componentWillUnmount() { window.removeEventListener('keydown', this.props.onKeyDown); } render() { const { showEventLog, location, filter, highlight } = this.props return (
{showEventLog && ( )}
) } } export default connect( state => ({ showEventLog: state.eventLog.visible, }), { onKeyDown, } )(ProxyAppMain) ='this.form.submit();'> clone of git://git.panaceas.org/iCE40/nextpnr
aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/QtPropertyBrowser/cmake/InstallProjectConfig.cmake
blob: d93b3ff05cf43ac7e121390b87aaac6f85a6a73e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18