Skip to Content.
Sympa Menu

notify-dpml - svn commit: r2500 - in development/main/depot: content content/src content/src/main content/src/main/net content/src/main/net/dpml content/src/main/net/dpml/depot content/src/main/net/dpml/depot/content station/src/main/net/dpml/depot/station

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell AT dpml.net
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r2500 - in development/main/depot: content content/src content/src/main content/src/main/net content/src/main/net/dpml content/src/main/net/dpml/depot content/src/main/net/dpml/depot/content station/src/main/net/dpml/depot/station
  • Date: Wed, 11 May 2005 08:11:29 +0000

Author: mcconnell AT dpml.net
Date: Wed May 11 08:11:28 2005
New Revision: 2500

Added:
development/main/depot/content/
development/main/depot/content/src/
development/main/depot/content/src/main/
development/main/depot/content/src/main/net/
development/main/depot/content/src/main/net/dpml/
development/main/depot/content/src/main/net/dpml/depot/
development/main/depot/content/src/main/net/dpml/depot/content/
Modified:

development/main/depot/station/src/main/net/dpml/depot/station/DepotContentHandlerRegistryControlPanel.java
Log:
get things ready to move the swing based prefs management out of transit

Modified:
development/main/depot/station/src/main/net/dpml/depot/station/DepotContentHandlerRegistryControlPanel.java
==============================================================================
---
development/main/depot/station/src/main/net/dpml/depot/station/DepotContentHandlerRegistryControlPanel.java
(original)
+++
development/main/depot/station/src/main/net/dpml/depot/station/DepotContentHandlerRegistryControlPanel.java
Wed May 11 08:11:28 2005
@@ -18,7 +18,12 @@
package net.dpml.depot.station;

import java.awt.Dialog;
+import java.awt.Dimension;
+import java.awt.BorderLayout;
+import java.awt.Color;
import javax.swing.JDialog;
+import javax.swing.border.EmptyBorder;
+import javax.swing.JPanel;

/**
* A registry of descriptions of plugable content handlers. This
implementation
@@ -29,5 +34,13 @@
public DepotContentHandlerRegistryControlPanel( Dialog parent )
{
super( parent );
+ setModal( true );
+ setSize( new Dimension( 400,400 ) );
+ JPanel frame = new JPanel();
+ frame.setLayout( new BorderLayout() );
+ frame.setBackground( Color.white );
+ frame.setBorder( new EmptyBorder( 10, 6, 0, 6 ) );
+ setContentPane( frame );
+ setTitle( "Content Handler Controller" );
}
}



  • svn commit: r2500 - in development/main/depot: content content/src content/src/main content/src/main/net content/src/main/net/dpml content/src/main/net/dpml/depot content/src/main/net/dpml/depot/content station/src/main/net/dpml/depot/station, mcconnell, 05/11/2005

Archive powered by MHonArc 2.6.24.

Top of Page