diff --git a/ivette/src/frama-c/labviews.js b/ivette/src/frama-c/labviews.js index 644978de9ebef752e4d2595a05578115e69ade21..1e8e5bf830c54ba801b9e780ad666fbf852e5f25 100644 --- a/ivette/src/frama-c/labviews.js +++ b/ivette/src/frama-c/labviews.js @@ -16,7 +16,8 @@ import { Hbox, Hfill, Vfill, Filler } from 'dome/layout/boxes' ; import { IconButton, Field } from 'dome/controls/buttons' ; import { Label } from 'dome/controls/labels' ; import { Icon } from 'dome/controls/icons' ; -import { Item as RenderItem, Render } from 'dome/layout/dispatch' ; +import { Item as ItemToRender, + Render as RenderItem } from 'dome/layout/dispatch' ; import './labviews.css' ; // -------------------------------------------------------------------------- @@ -225,15 +226,15 @@ const TitleContext = React.createContext(); If specified, the icon, label and title properties are rendered in an `<Label/>` component. By default, the component title bar is labelled according to the component properties. */ -export const Title = ({icon,label,title,children}) => { +export const TitleBar = ({icon,label,title,children}) => { let context = React.useContext(TitleContext); return ( - <RenderItem id={'labview.title.'+context.id}> + <ItemToRender id={'labview.title.'+context.id}> <Label className='labview-handle' icon={icon} label={label || context.label} title={title || context.title}/> {children} - </RenderItem> + </ItemToRender> ); }; @@ -292,10 +293,10 @@ const makeGridItem = (customize,onClose) => comp => { <Hbox className='labview-titlebar'> <Hfill> <Catch title={id}> - <Render id={ 'labview.title.' + id }> + <RenderItem id={ 'labview.title.' + id }> <Label className='labview-handle' label={label} title={title} /> - </Render> + </RenderItem> </Catch> </Hfill> { CLOSING } @@ -603,6 +604,6 @@ export function LabView(props) // -------------------------------------------------------------------------- -export default { LabView, View, Group, Component, Title } ; +export default { LabView, View, Group, Component, TitleBar } ; // -------------------------------------------------------------------------- diff --git a/ivette/src/renderer/Application.js b/ivette/src/renderer/Application.js index 381b77ec6bc90bb4261871cc524df29e295b55c2..61bb9744fe8e87a94022c9e26ed83d77ea4df89b 100644 --- a/ivette/src/renderer/Application.js +++ b/ivette/src/renderer/Application.js @@ -55,12 +55,8 @@ export default (function() { <GridItem id='frama-c.console'/> </View> <Group id='frama-c' label='Frama-C' title='Frama-C Kernel Components'> - <Component id='frama-c.console' label='Console' > - <Controller.Console/> - </Component> - <Component id='frama-c.properties' label='Properties' > - <Properties.PropTable/> - </Component> + <Controller.Console/> + <Properties.PropTable/> </Group> </LabView> </Splitter> diff --git a/ivette/src/renderer/Controller.js b/ivette/src/renderer/Controller.js index 11fa7a9e781f259d85d10cf5e5098f0e14926dbb..ee41351df46a2464356288347fa6aba5d3e78b10 100644 --- a/ivette/src/renderer/Controller.js +++ b/ivette/src/renderer/Controller.js @@ -8,7 +8,7 @@ import Server from 'frama-c/server' ; import States from 'frama-c/states' ; import { Vfill } from 'dome/layout/boxes' ; -import { Title } from 'frama-c/labviews' ; +import { Component, TitleBar } from 'frama-c/labviews' ; import { Button as ToolButton, ButtonGroup, Filler } from 'dome/layout/toolbars' ; import { LED, IconButton } from 'dome/controls/buttons' ; import { Label, Code } from 'dome/controls/labels' ; @@ -120,27 +120,35 @@ function execCmdLine() { Server.restart(); } -export const Console = () => { +const RenderConsole = () => { const [ cmd , switchCmd ] = Dome.useSwitch(); const doExec = () => { switchCmd(); execCmdLine(); }; return ( - <Vfill> - <Title> + <React.Fragment> + <TitleBar label={cmd ? 'Command Line' : 'Console'}> <IconButton icon='RELOAD' display={cmd} onClick={resetCmdLine} title='Reset Command Line'/> <IconButton icon='MEDIA.PLAY' display={cmd} onClick={doExec} title='Execute Command Line'/> <IconButton icon='EDIT' selected={cmd} onClick={switchCmd} title='Edit Command Line'/> - </Title> + </TitleBar> <Text buffer={cmd ? cmdLine : Server.buffer} mode='text' readOnly={!cmd} theme='ambiance' /> - </Vfill> + </React.Fragment> ); }; +export const Console = () => ( + <Component id='frama-c.console' + label='Console' + title='Frama-C Server Output & Command Line'> + <RenderConsole/> + </Component> +); + // -------------------------------------------------------------------------- // --- Status // -------------------------------------------------------------------------- diff --git a/ivette/src/renderer/Properties.js b/ivette/src/renderer/Properties.js index dcc88232172b28aac50783f761408f1cf923d55b..80f2fa3ff1cbb6aa69d3c31495830119d136e456 100644 --- a/ivette/src/renderer/Properties.js +++ b/ivette/src/renderer/Properties.js @@ -6,14 +6,22 @@ import _ from 'lodash' ; import React from 'react' ; import Dome from 'dome' ; import States from 'frama-c/states' ; +import { Code } from 'dome/controls/labels' ; import { ArrayModel } from 'dome/table/arrays' ; import { Table, Column, DefineColumn } from 'dome/table/views' ; +import { Component } from 'frama-c/labviews' ; // -------------------------------------------------------------------------- // --- Properties Array // -------------------------------------------------------------------------- -const PropTable = () => { +const ColumnCode = DefineColumn({ renderValue: (text) => <Code>{text}</Code> }); + +// -------------------------------------------------------------------------- +// --- Columns +// ------------------------------------------------------------------------- + +const RenderTable = () => { const model = React.useMemo( () => new ArrayModel() , [] ); const items = States.useSyncArray('kernel.properties'); model.setData( _.toArray( items ) ); @@ -25,6 +33,14 @@ const PropTable = () => { ); }; +const PropTable = () => ( + <Component id='frama-c.properties' + label='Properties' + title='Registered Frama-C Property Status' > + <RenderTable/> + </Component> +); + // -------------------------------------------------------------------------- // --- Exports // --------------------------------------------------------------------------