Package de.sciss.app

Examples of de.sciss.app.DynamicPrefChangeManager


    new DynamicAncestorAdapter( this ).addTo( this );
        this.addAdjustmentListener( this );

//        new DynamicAncestorAdapter( new DynamicPreferenceChangeManager( Main.prefs.node( PrefsUtil.NODE_SHARED ),
//      new String[] { PrefsUtil.KEY_CATCH }, this )).addTo( this );
        new DynamicAncestorAdapter( new DynamicPrefChangeManager( AbstractApplication.getApplication().getUserPrefs(),
      new String[] { PrefsUtil.KEY_CATCH }, this )).addTo( this );
       
    setFocusable( false );
   
//        HelpGlassPane.setHelp( this, "TimelineScroll" );
View Full Code Here


    this.setCursor( new Cursor( Cursor.HAND_CURSOR ));

    grass.getActionMap().put( HELP_PROPERTY, helpAction );

    // --- Listener ---
        new DynamicAncestorAdapter( new DynamicPrefChangeManager( GUIUtil.getUserPrefs(),
      new String[] { KEY_KEYSTROKE_HELP }, this )).addTo( grass );
  }
View Full Code Here

//    init();
  }
 
  public void init()
  {
        addDynamicListening( new DynamicPrefChangeManager(
            classPrefs, new String[] { KEY_PLUGIN, KEY_SELECTIONONLY }, this ));
        super.init();
  }
View Full Code Here

       
        this.doc    = doc;
   
    // --- Listener ---
        new DynamicAncestorAdapter( this ).addTo( this );
        new DynamicAncestorAdapter( new DynamicPrefChangeManager(
      AbstractApplication.getApplication().getUserPrefs(), new String[] { PrefsUtil.KEY_TIMEUNITS }, this
    )).addTo( this );
    this.addMouseListener( this );
    this.addMouseMotionListener( this );
View Full Code Here

                PrefsUtil.NODE_SESSION ).node(
                  className.substring( className.lastIndexOf( '.' ) + 1 ));
    createSettingsView();

    // --- Listener ---
        new DynamicAncestorAdapter( new DynamicPrefChangeManager( classPrefs, KEYS, this )).addTo( this );
  }
View Full Code Here

    classPrefs  = app.getUserPrefs().node( PrefsUtil.NODE_SESSION ).node(
            className.substring( className.lastIndexOf( '.' ) + 1 ));
    createSettingsView();

    // --- Listener ---
        new DynamicAncestorAdapter( new DynamicPrefChangeManager( app.getUserPrefs().node(
      PrefsUtil.NODE_PLUGINS ), new String[] { getSourceListKey() }, this )).addTo( this );
        new DynamicAncestorAdapter( new DynamicPrefChangeManager( classPrefs,
      new String[] { KEY_LISPSOURCE }, this )).addTo( this );
  }
View Full Code Here

    tools.put( new Integer( ToolAction.FORK ),    new SurfacePencilTool( true ));

    // --- Listener ---
   
        new DynamicAncestorAdapter( this ).addTo( this );
        new DynamicAncestorAdapter( new DynamicPrefChangeManager(
      AbstractApplication.getApplication().getUserPrefs().node( PrefsUtil.NODE_SHARED ),
      new String[] { PrefsUtil.KEY_SNAP, PrefsUtil.KEY_VIEWRCVSENSE, PrefsUtil.KEY_VIEWEQPRECEIVER,
               PrefsUtil.KEY_VIEWTRNSTRAJ, PrefsUtil.KEY_VIEWUSERIMAGES }, this )).addTo( this );
 
//    this.addMouseListener( new MouseAdapter() {
View Full Code Here

  {
    super();
    this.prefs  = prefs;
    b      = new JToggleButton( this );
    GraphicsUtil.setToolIcons( b, GraphicsUtil.createToolIcons( GraphicsUtil.ICON_CATCH ));
    new DynamicAncestorAdapter( new DynamicPrefChangeManager( prefs,
      new String[] { PrefsUtil.KEY_CATCH }, this )).addTo( b );
  }
View Full Code Here

TOP

Related Classes of de.sciss.app.DynamicPrefChangeManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.