-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use the same icon as target transfer.
- Loading branch information
1 parent
6b4e824
commit 694e9b5
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
...mplates.ui/src/net/openchrom/xxd/process/supplier/templates/ui/icon/TransferMenuIcon.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2025 Lablicate GmbH. | ||
* | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: | ||
* Matthias Mailänder - initial API and implementation | ||
*******************************************************************************/ | ||
package net.openchrom.xxd.process.supplier.templates.ui.icon; | ||
|
||
import org.eclipse.chemclipse.rcp.ui.icons.core.ApplicationImageFactory; | ||
import org.eclipse.chemclipse.rcp.ui.icons.core.IApplicationImage; | ||
import org.eclipse.chemclipse.rcp.ui.icons.core.IApplicationImageProvider; | ||
import org.eclipse.chemclipse.xxd.process.ui.menu.IMenuIcon; | ||
import org.eclipse.swt.graphics.Image; | ||
|
||
public class TransferMenuIcon implements IMenuIcon { | ||
|
||
@Override | ||
public Image getImage() { | ||
|
||
return ApplicationImageFactory.getInstance().getImage(IApplicationImage.IMAGE_TARGETS, IApplicationImageProvider.SIZE_16x16); | ||
} | ||
} |