summaryrefslogtreecommitdiff
path: root/pdf-over-gui/src/main/java/at/asit/pdfover/gui/controls/MainBarEndButton.java
diff options
context:
space:
mode:
authortkellner <tkellner@174cde9d-5d70-4d2a-aa98-46368bc2aaf7>2013-04-10 18:57:07 +0000
committertkellner <tkellner@174cde9d-5d70-4d2a-aa98-46368bc2aaf7>2013-04-10 18:57:07 +0000
commita8222b9d16145d8b2f8803d13e5afe2b99d47fc0 (patch)
tree36637499e140a59d6e43f74eaceb3e23ec3e1f07 /pdf-over-gui/src/main/java/at/asit/pdfover/gui/controls/MainBarEndButton.java
parent9f07d0ac1f3d53d03a4f105b1b99dccd4ac2d473 (diff)
downloadpdf-over-a8222b9d16145d8b2f8803d13e5afe2b99d47fc0.tar.gz
pdf-over-a8222b9d16145d8b2f8803d13e5afe2b99d47fc0.tar.bz2
pdf-over-a8222b9d16145d8b2f8803d13e5afe2b99d47fc0.zip
Configuration and Main Bar Buttons
git-svn-id: https://joinup.ec.europa.eu/svn/pdf-over/trunk@53 174cde9d-5d70-4d2a-aa98-46368bc2aaf7
Diffstat (limited to 'pdf-over-gui/src/main/java/at/asit/pdfover/gui/controls/MainBarEndButton.java')
-rw-r--r--pdf-over-gui/src/main/java/at/asit/pdfover/gui/controls/MainBarEndButton.java97
1 files changed, 97 insertions, 0 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/controls/MainBarEndButton.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/controls/MainBarEndButton.java
new file mode 100644
index 00000000..b80b9645
--- /dev/null
+++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/controls/MainBarEndButton.java
@@ -0,0 +1,97 @@
+/*
+ * Copyright 2012 by A-SIT, Secure Information Technology Center Austria
+ *
+ * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by
+ * the European Commission - subsequent versions of the EUPL (the "Licence");
+ * You may not use this work except in compliance with the Licence.
+ * You may obtain a copy of the Licence at:
+ * http://joinup.ec.europa.eu/software/page/eupl
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the Licence is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the Licence for the specific language governing permissions and
+ * limitations under the Licence.
+ */
+package at.asit.pdfover.gui.controls;
+
+// Imports
+import org.eclipse.swt.events.PaintEvent;
+import org.eclipse.swt.graphics.Point;
+import org.eclipse.swt.graphics.Region;
+import org.eclipse.swt.widgets.Composite;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ *
+ */
+public class MainBarEndButton extends MainBarButton {
+ /**
+ * @param parent
+ * @param style
+ */
+ public MainBarEndButton(Composite parent, int style) {
+ super(parent, style);
+ }
+
+ /**
+ * SLF4J Logger instance
+ **/
+ private static final Logger log = LoggerFactory
+ .getLogger(MainBarEndButton.class);
+
+ /*
+ * (non-Javadoc)
+ *
+ * @see
+ * at.asit.pdfover.gui.controls.MainBarButton#paintButton(org.eclipse.swt
+ * .events.PaintEvent)
+ */
+ /*@Override
+ protected void paintButton(PaintEvent e) {
+ Point size = this.getSize();
+ int height = size.y - 2;
+
+ int split = 10;
+ int width = size.x;
+
+ int textlen = 0;
+
+ if(this.getText() != null) {
+ textlen = this.getText().length();
+ }
+
+ e.gc.drawLine(0, 0, width, 0);
+ e.gc.drawLine(width, 0, width+split, (height) / 2);
+ e.gc.drawLine(width, height, 0, height);
+ e.gc.drawLine(0, height, 0+split, (height) / 2);
+ e.gc.drawLine(0+split, (height) / 2, 0, 0);
+
+ int texty = (height - e.gc.getFontMetrics().getHeight()) / 2;
+ int textx = (width - e.gc.getFontMetrics().getAverageCharWidth() * textlen) / 2;
+ e.gc.drawText(this.getText(), textx, texty);
+ }*/
+
+ /*
+ * (non-Javadoc)
+ *
+ * @see at.asit.pdfover.gui.controls.MainBarButton#getCustomRegion()
+ */
+ @Override
+ protected Region getCustomRegion() {
+ Point size = this.getSize();
+
+ int height = size.y - 2;
+
+ int split = 10;
+
+ int width = size.x;
+
+ Region reg = new Region();
+ reg.add(new int[] { 0, 0, width, 0, width, height, 0, height,
+ 0 + split, (height) / 2, 0, 0 });
+ return reg;
+ }
+
+}