/* * DBeaver - Universal Database Manager * Copyright (C) 2010-2017 Serge Rider (serge@jkiss.org) * * Licensed 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.jkiss.dbeaver.ui.editors.sql.log; import org.eclipse.swt.SWT; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; import org.jkiss.dbeaver.ui.controls.querylog.QueryLogViewer; import org.jkiss.dbeaver.ui.editors.sql.SQLEditor; /** * ResultSetViewer */ public class SQLLogPanel extends Composite { private QueryLogViewer queryLogViewer; public SQLLogPanel(Composite parent, SQLEditor editor) { super(parent, SWT.NONE); GridLayout gl = new GridLayout(1, true); gl.marginHeight = 0; gl.marginWidth = 0; gl.verticalSpacing = 0; gl.horizontalSpacing = 0; setLayout(gl); queryLogViewer = new QueryLogViewer(this, editor.getSite(), new SQLLogFilter(editor), false); } public QueryLogViewer getQueryLogViewer() { return queryLogViewer; } }