How to use the pyface.tasks.task_layout.PaneItem function in pyface

To help you get started, we’ve selected a few pyface examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github NMGRL / pychron / pychron / pipeline / tasks / browser_task.py View on Github external
def _default_layout_default(self):
        # return TaskLayout(left=PaneItem('pychron.browser.pane'))
        return TaskLayout(left=Tabbed(PaneItem('pychron.browser.pane'),
                                      PaneItem('pychron.browser.analysis_groups.pane')))
github NMGRL / pychron / pychron / processing / tasks / flux / flux_task.py View on Github external
def _default_layout_default(self):
        return TaskLayout(
            id='pychron.processing',
            left=HSplitter(
                VSplitter(
                    PaneItem('pychron.processing.irradiation'),
                    Tabbed(
                        PaneItem('pychron.processing.unknowns'),
                        PaneItem('pychron.processing.references'),
                        PaneItem('pychron.processing.analyses')),
                    PaneItem('pychron.processing.controls'))))
github NMGRL / pychron / pychron / processing / tasks / isotope_evolution / isotope_evolution_task.py View on Github external
def _default_layout_default(self):
        return TaskLayout(
            id='pychron.processing.isotope_evolution',
            left=HSplitter(
                browser_pane_item(),
                # Tabbed(PaneItem('pychron.browser'),
                #        PaneItem('pychron.search.query')
                # ),
                VSplitter(
                    Tabbed(
                        PaneItem('pychron.plot_editor'),
                        PaneItem('pychron.processing.unknowns')),
                    PaneItem('pychron.processing.controls'))))
github NMGRL / pychron / pychron / pipeline / tasks / task.py View on Github external
def _default_layout_default(self):
        return TaskLayout(left=Splitter(Splitter(PaneItem('pychron.pipeline.pane',
                                                          width=200),
                                                 PaneItem('pychron.pipeline.analyses',
                                                          width=200)),
                                        PaneItem('pychron.pipeline.repository'),
                                        orientation='vertical'))
github NMGRL / pychron / pychron / image / tasks / sample_image_task.py View on Github external
def _default_layout_default(self):
        return TaskLayout(left=PaneItem(id='pychron.image.browser'),
                          right=PaneItem(id='pychron.image.info'))
github NMGRL / pychron / pychron / image / tasks / upload_task.py View on Github external
def _default_layout_default(self):
        return TaskLayout(left=PaneItem(id='pychron.image.browser'))
github NMGRL / pychron / pychron / entry / tasks / sample_prep / task.py View on Github external
def _default_layout_default(self):
        return TaskLayout(left=VSplitter(PaneItem('pychron.entry.sample.session'),
                                         PaneItem('pychron.entry.sample.filter')))
github NMGRL / pychron / pychron / media_server / tasks / media_server_task.py View on Github external
def _default_layout_default(self):
        return TaskLayout(left=PaneItem('pychron.media_server.images'))
github NMGRL / pychron / pychron / lasers / tasks / laser_calibration_task.py View on Github external
def _default_layout_default(self):
        return TaskLayout(
            left=Splitter(
                PaneItem('pychron.laser_calibration.execute',
                         width=200
                ),
                PaneItem('pychron.laser_calibration.control',
                         width=200
                ),
                orientation='vertical'
            )
github NMGRL / pychron / pychron / image / tasks / video_task.py View on Github external
def _default_layout_default(self):
        return TaskLayout(
#                           top=PaneItem('pychron.extraction_line.gauges'),
                        left=Splitter(
                                      PaneItem('pychron.video.source'),
                                      PaneItem('pychron.video.controls'),
                                      orientation='vertical'
                                      ),