/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * */ package org.apache.directory.studio.openldap.config.editor.overlays; import org.eclipse.jface.viewers.ISelection; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.swt.SWT; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Text; import org.eclipse.ui.forms.IDetailsPage; import org.eclipse.ui.forms.IFormPart; import org.eclipse.ui.forms.IManagedForm; import org.eclipse.ui.forms.widgets.FormToolkit; import org.eclipse.ui.forms.widgets.Section; import org.eclipse.ui.forms.widgets.TableWrapData; import org.eclipse.ui.forms.widgets.TableWrapLayout; import org.apache.directory.studio.openldap.config.model.overlay.OlcAccessLogConfig; /** * This class represents the Details Page of the Server Configuration Editor for the Audit Log Overlay type * * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a> */ public class AuditLogOverlayDetailsPage implements IDetailsPage { /** The associated Master Details Block */ private OverlaysMasterDetailsBlock masterDetailsBlock; /** The Managed Form */ private IManagedForm mform; /** The dirty flag */ private boolean dirty = false; /** The overlay */ private OlcAccessLogConfig overlay; // UI fields private FormToolkit toolkit; private Text fileText; /** * Creates a new instance of PartitionDetailsPage. * * @param master * the associated Master Details Block */ public AuditLogOverlayDetailsPage( OverlaysMasterDetailsBlock master ) { masterDetailsBlock = master; } /* (non-Javadoc) * @see org.eclipse.ui.forms.IDetailsPage#createContents(org.eclipse.swt.widgets.Composite) */ public void createContents( Composite parent ) { toolkit = mform.getToolkit(); TableWrapLayout layout = new TableWrapLayout(); layout.topMargin = 5; layout.leftMargin = 5; layout.rightMargin = 2; layout.bottomMargin = 2; parent.setLayout( layout ); createGeneralSettingsSection( parent, toolkit ); } /** * Creates the General Settings Section * * @param parent * the parent composite * @param toolkit * the toolkit to use */ private void createGeneralSettingsSection( Composite parent, FormToolkit toolkit ) { Section section = toolkit.createSection( parent, Section.TITLE_BAR ); section.marginWidth = 10; section.setText( "Audit Log General Settings" ); TableWrapData td = new TableWrapData( TableWrapData.FILL, TableWrapData.TOP ); td.grabHorizontal = true; section.setLayoutData( td ); Composite composite = toolkit.createComposite( section ); toolkit.paintBordersFor( composite ); GridLayout glayout = new GridLayout( 2, false ); composite.setLayout( glayout ); section.setClient( composite ); // ID toolkit.createLabel( composite, "File:" ); fileText = toolkit.createText( composite, "" ); fileText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) ); } /** * {@inheritDoc} */ public void selectionChanged( IFormPart part, ISelection selection ) { IStructuredSelection ssel = ( IStructuredSelection ) selection; if ( ssel.size() == 1 ) { overlay = ( OlcAccessLogConfig ) ssel.getFirstElement(); } else { overlay = null; } refresh(); } /** * {@inheritDoc} */ public void commit( boolean onSave ) { } /** * {@inheritDoc} */ public void dispose() { } /** * {@inheritDoc} */ public void initialize( IManagedForm form ) { this.mform = form; } /** * {@inheritDoc} */ public boolean isDirty() { return dirty; } /** * {@inheritDoc} */ public boolean isStale() { return false; } /** * {@inheritDoc} */ public void setFocus() { // idText.setFocus(); // TODO } /** * {@inheritDoc} */ public boolean setFormInput( Object input ) { return false; } /** * {@inheritDoc} */ public void refresh() { if ( overlay == null ) { // Blank out all fields // TODO } else { } } }