/* * 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.controls.imageview; import org.eclipse.jface.action.ToolBarManager; import org.eclipse.swt.SWT; import org.eclipse.swt.SWTException; import org.eclipse.swt.graphics.Color; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Text; import java.io.InputStream; /** * Image editor, based on image viewer. */ public class ImageEditor extends ImageViewer { private Color redColor = Display.getCurrent().getSystemColor(SWT.COLOR_RED); private Color blackColor = Display.getCurrent().getSystemColor(SWT.COLOR_BLACK); private Text messageLabel; public ImageEditor(Composite parent, int style) { super(parent, style); //setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_LIST_BACKGROUND)); { // Status & toolbar Composite statusGroup = new Composite(this, SWT.NONE); GridData gd = new GridData(GridData.FILL_HORIZONTAL); statusGroup.setLayoutData(gd); GridLayout layout = new GridLayout(2, false); layout.verticalSpacing = 0; layout.horizontalSpacing = 0; statusGroup.setLayout(layout); messageLabel = new Text(statusGroup, SWT.READ_ONLY); messageLabel.setText(""); //$NON-NLS-1$ gd = new GridData(GridData.FILL_HORIZONTAL); messageLabel.setLayoutData(gd); { ToolBarManager toolBar = new ToolBarManager(SWT.NONE); // gd = new GridData(GridData.HORIZONTAL_ALIGN_END); // toolBar.setLayoutData(gd); fillToolBar(toolBar); toolBar.createControl(statusGroup); } } updateActions(); } @Override public boolean loadImage(InputStream inputStream) { super.loadImage(inputStream); try { SWTException lastError = getLastError(); if (lastError != null) { messageLabel.setText(lastError.getMessage()); messageLabel.setForeground(redColor); return false; } else { messageLabel.setText(getImageDescription()); messageLabel.setForeground(blackColor); return true; } } finally { updateActions(); } } }