public SoundInspectorView()
    {
        //AddStyle("soundInspector");
        height = 300;//GetStyle("soundInspector").fixedHeight;

        soundSourceInspectorLayout = new SoundSourceInspectorLayout();

        instance = this;
    }
    public void RebuildGUI()
    {
        categoryView = new SoundCategoryView();
        inspectorView = new SoundInspectorView();
        categoryMenuView = new SoundCategoryMenuView();

        this.Repaint();
    }