Repository URL to install this package:
| 
      
     
      
        
        
        Version: 
        
         
  
        
    
          
          5.2.1  ▾
        
         
  
      
        
      
  
      
  
     | 
# (C) Copyright 2005-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
"""
This demonstrates the resize tool.
"""
from enable.api import Component, Container
from enable.example_support import DemoFrame, demo_main
from enable.tools.resize_tool import ResizeTool
class Box(Component):
    resizable = ""
    def _draw_mainlayer(self, gc, view_bounds=None, mode="default"):
        with gc:
            dx, dy = self.bounds
            x, y = self.position
            gc.set_fill_color((1.0, 0.0, 0.0, 1.0))
            gc.rect(x, y, dx, dy)
            gc.fill_path()
class Demo(DemoFrame):
    def _create_component(self):
        box = Box(bounds=[100.0, 100.0], position=[50.0, 50.0])
        box.tools.append(
            ResizeTool(
                component=box,
                hotspots=set(
                    [
                        "top",
                        "left",
                        "right",
                        "bottom",
                        "top left",
                        "top right",
                        "bottom left",
                        "bottom right",
                    ]
                ),
            )
        )
        container = Container(bounds=[500, 500])
        container.add(box)
        return container
if __name__ == "__main__":
    # Save demo so that it doesn't get garbage collected when run within
    # existing event loop (i.e. from ipython).
    demo = demo_main(Demo)