summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnatoly Spektor <aspektor@redhat.com>2013-06-20 12:24:12 -0400
committeraspektor <aspektor@redhat.com>2013-07-11 11:35:16 -0400
commit4e931b46c70d76cd0044f8c79bc9decd4da7982d (patch)
treec21d558e06e428f84868de79932e67485b22775a
parent48182d20aa1f64b7236dd904a9fb69ad577aead7 (diff)
downloadeclipse.platform.swt-datetime_on_spinner_v2.tar.gz
eclipse.platform.swt-datetime_on_spinner_v2.tar.xz
eclipse.platform.swt-datetime_on_spinner_v2.zip
DateTime widget on top of Spinner (error sound issue resolved)datetime_on_spinner_v2
Get rid of up button
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.c18
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.h1
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_stats.c1
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_stats.h1
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java13
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DateTime.java679
6 files changed, 457 insertions, 256 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.c b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.c
index 9905801d97..81e7f37fbd 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.c
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.c
@@ -14815,6 +14815,24 @@ JNIEXPORT void JNICALL OS_NATIVE(_1gtk_1spin_1button_1set_1increments)
}
#endif
+#ifndef NO__1gtk_1spin_1button_1set_1numeric
+JNIEXPORT void JNICALL OS_NATIVE(_1gtk_1spin_1button_1set_1numeric)
+ (JNIEnv *env, jclass that, jintLong arg0, jboolean arg1)
+{
+ OS_NATIVE_ENTER(env, that, _1gtk_1spin_1button_1set_1numeric_FUNC);
+/*
+ gtk_spin_button_set_numeric((GtkSpinButton*)arg0, arg1);
+*/
+ {
+ OS_LOAD_FUNCTION(fp, gtk_spin_button_set_numeric)
+ if (fp) {
+ ((void (CALLING_CONVENTION*)(GtkSpinButton*, jboolean))fp)((GtkSpinButton*)arg0, arg1);
+ }
+ }
+ OS_NATIVE_EXIT(env, that, _1gtk_1spin_1button_1set_1numeric_FUNC);
+}
+#endif
+
#ifndef NO__1gtk_1spin_1button_1set_1range
JNIEXPORT void JNICALL OS_NATIVE(_1gtk_1spin_1button_1set_1range)
(JNIEnv *env, jclass that, jintLong arg0, jdouble arg1, jdouble arg2)
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.h b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.h
index e01da94898..6970c3f655 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.h
@@ -280,6 +280,7 @@
#define gdk_pixbuf_render_to_drawable_LIB LIB_GDK
#define gdk_visual_get_depth_LIB LIB_GDK
#define gtk_scrolled_window_get_hscrollbar_LIB LIB_GTK
+#define gtk_spin_button_set_numeric_LIB LIB_GTK
#define gtk_scrolled_window_get_vscrollbar_LIB LIB_GTK
#define gtk_scale_new_LIB LIB_GTK
#define gtk_style_context_add_provider_for_screen_LIB LIB_GTK
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_stats.c b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_stats.c
index 392de0a764..015550f15d 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_stats.c
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_stats.c
@@ -1055,6 +1055,7 @@ char * OS_nativeFunctionNames[] = {
"_1gtk_1spin_1button_1new",
"_1gtk_1spin_1button_1set_1digits",
"_1gtk_1spin_1button_1set_1increments",
+ "_1gtk_1spin_1button_1set_1numeric",
"_1gtk_1spin_1button_1set_1range",
"_1gtk_1spin_1button_1set_1value",
"_1gtk_1spin_1button_1set_1wrap",
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_stats.h b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_stats.h
index 5c149e203b..a184c274ab 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_stats.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_stats.h
@@ -1065,6 +1065,7 @@ typedef enum {
_1gtk_1spin_1button_1new_FUNC,
_1gtk_1spin_1button_1set_1digits_FUNC,
_1gtk_1spin_1button_1set_1increments_FUNC,
+ _1gtk_1spin_1button_1set_1numeric_FUNC,
_1gtk_1spin_1button_1set_1range_FUNC,
_1gtk_1spin_1button_1set_1value_FUNC,
_1gtk_1spin_1button_1set_1wrap_FUNC,
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
index c5cba55a2d..d7475729e6 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
@@ -10714,6 +10714,19 @@ public static final long /*int*/ gtk_spin_button_new(long /*int*/ adjustment, do
}
}
/**
+ * @method flags=dynamic
+ * @param spin_button cast=(GtkSpinButton*)
+ **/
+public static final native void _gtk_spin_button_set_numeric(long /*int*/ spin_button, boolean numeric);
+public static final void gtk_spin_button_set_numeric(long /*int*/ spin_button, boolean numeric) {
+ lock.lock();
+ try {
+ _gtk_spin_button_set_numeric(spin_button, numeric);
+ } finally {
+ lock.unlock();
+ }
+}
+/**
* @param spin_button cast=(GtkSpinButton*)
* @param adjustment cast=(GtkAdjustment *)
**/
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DateTime.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DateTime.java
index c8ecb1ae09..724d0ccffc 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DateTime.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DateTime.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2013 IBM Corporation and others.
+ * Copyright (c) 2000, 2012 IBM Corporation and others.
* 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
@@ -17,6 +17,7 @@ import org.eclipse.swt.*;
import org.eclipse.swt.events.*;
import org.eclipse.swt.graphics.*;
import org.eclipse.swt.accessibility.*;
+import org.eclipse.swt.internal.Converter;
import org.eclipse.swt.internal.gtk.*;
/**
@@ -54,14 +55,14 @@ public class DateTime extends Composite {
/* Emulated DATE and TIME fields */
Calendar calendar;
DateFormatSymbols formatSymbols;
- Button down, up;
- Text text;
+ Button down;
String format;
Point[] fieldIndices;
int[] fieldNames;
int fieldCount, currentField = 0, characterCount = 0;
boolean ignoreVerify = false;
-
+ String dateTimeString;
+ boolean firstTime = true;
/* DROP_DOWN calendar fields for DATE */
Color fg, bg;
boolean hasFocus, monthChanged, calendarDisplayed;
@@ -78,6 +79,7 @@ public class DateTime extends Composite {
static final String DEFAULT_LONG_TIME_FORMAT = "HH:MM:SS AM";
static final int MIN_YEAR = 1752; // Gregorian switchover in North America: September 19, 1752
static final int MAX_YEAR = 9999;
+ static final int SPACE_FOR_CURSOR = 1;
/**
* Constructs a new instance of this class given its parent
@@ -125,61 +127,24 @@ public DateTime (Composite parent, int style) {
void createText(boolean dropDown) {
calendar = Calendar.getInstance();
formatSymbols = new DateFormatSymbols();
- text = new Text(this, SWT.SINGLE);
- /* disable the native drag and drop for the date/time text field */
- OS.gtk_drag_dest_unset(text.handle);
if ((style & SWT.DATE) != 0) {
setFormat((style & SWT.SHORT) != 0 ? DEFAULT_SHORT_DATE_FORMAT : (style & SWT.LONG) != 0 ? DEFAULT_LONG_DATE_FORMAT : DEFAULT_MEDIUM_DATE_FORMAT);
} else { /* SWT.TIME */
setFormat((style & SWT.SHORT) != 0 ? DEFAULT_SHORT_TIME_FORMAT : (style & SWT.LONG) != 0 ? DEFAULT_LONG_TIME_FORMAT : DEFAULT_MEDIUM_TIME_FORMAT);
}
- text.setText(getFormattedString(style));
-
- addListener(SWT.Resize, new Listener() {
- public void handleEvent(Event event) {
- onResize(event);
- }
- });
- Listener listener = new Listener() {
- public void handleEvent(Event event) {
- switch(event.type) {
- case SWT.KeyDown: onTextKeyDown(event); break;
- case SWT.FocusIn: onTextFocusIn(event); break;
- case SWT.FocusOut: onTextFocusOut(event); break;
- case SWT.MouseDown: // Fall through
- case SWT.MouseUp: onTextMouseClick(event); break;
- case SWT.MenuDetect: notifyListeners(SWT.MenuDetect, event); break;
- case SWT.Verify: onTextVerify(event); break;
- }
- }
- };
- int [] listeners = new int [] {SWT.KeyDown, SWT.FocusIn, SWT.FocusOut, SWT.MouseDown, SWT.MouseUp, SWT.MenuDetect, SWT.Verify};
- for (int i = 0; i < listeners.length; i++) {
- text.addListener(listeners [i], listener);
- }
-
- if ((style & SWT.DATE) != 0 && dropDown) {
- createDropDownButton();
- createPopupShell(-1, -1, -1);
- } else {
- up = new Button(this, SWT.ARROW | SWT.UP);
- gtk_widget_set_can_focus (up.handle, false);
- //up.setToolTipText(SWT.getMessage ("SWT_Up")); //$NON-NLS-1$
- down = new Button(this, SWT.ARROW | SWT.DOWN);
- gtk_widget_set_can_focus (down.handle, false);
- //down.setToolTipText(SWT.getMessage ("SWT_Down")); //$NON-NLS-1$
- up.addListener(SWT.Selection, new Listener() {
+ dateTimeString = getFormattedString(style);
+ OS.gtk_widget_realize(handle);
+ if ((style & SWT.DATE) != 0 && dropDown) { /* SWT.DROP_DOWN */
+ addListener(SWT.Resize, new Listener() {
public void handleEvent(Event event) {
- incrementField(+1);
- text.setFocus();
- }
- });
- down.addListener(SWT.Selection, new Listener() {
- public void handleEvent(Event event) {
- incrementField(-1);
- text.setFocus();
+ onResize(event);
}
});
+ createDropDownButton();
+ createPopupShell(-1, -1, -1);
+ }
+ if (dateTimeString != null) {
+ setText(dateTimeString);
}
}
@@ -316,14 +281,18 @@ public Point computeSize (int wHint, int hHint, boolean changed) {
Point size = computeNativeSize(handle, wHint, hHint, changed);
width = size.x;
height = size.y;
- } else { /* SWT.DATE and SWT.TIME */
- GC gc = new GC(text);
- Point textSize = gc.stringExtent(getComputeSizeString(style));
- gc.dispose();
- Rectangle trim = text.computeTrim(0, 0, textSize.x, textSize.y);
- Point buttonSize = down.computeSize(SWT.DEFAULT, SWT.DEFAULT, changed);
- width = trim.width + buttonSize.x;
- height = Math.max(trim.height, buttonSize.y);
+ } else { /* SWT.DROP_DOWN */
+ if ((style & SWT.DROP_DOWN) != 0) {
+ Point textSize = computeNativeSize(handle, wHint, hHint, changed);
+ Rectangle trim = computeTrim(0,0, textSize.x,textSize.y);
+ Point buttonSize = down.computeSize(SWT.DEFAULT, SWT.DEFAULT, changed);
+ width = trim.width + buttonSize.x;
+ height = Math.max(trim.height, buttonSize.y);
+ } else { /* SWT.DATE and SWT.TIME */
+ Point size = computeNativeSize(handle, wHint, hHint, changed);
+ width = size.x;
+ height = size.y;
+ }
}
}
if (width == 0) width = DEFAULT_WIDTH;
@@ -334,6 +303,51 @@ public Point computeSize (int wHint, int hHint, boolean changed) {
return new Point (width + 2*borderWidth, height+ 2*borderWidth);
}
+public Rectangle computeTrim (int x, int y, int width, int height) {
+ checkWidget ();
+ Rectangle trim = super.computeTrim (x, y, width, height);
+ int xborder = 0, yborder = 0;
+ if (OS.GTK3) {
+ GtkBorder tmp = new GtkBorder();
+ long /*int*/ context = OS.gtk_widget_get_style_context (handle);
+ OS.gtk_style_context_get_padding (context, OS.GTK_STATE_FLAG_NORMAL, tmp);
+ trim.x -= tmp.left;
+ trim.y -= tmp.top;
+ trim.width += tmp.left + tmp.right;
+ trim.height += tmp.top + tmp.bottom;
+ if ((style & SWT.BORDER) != 0) {
+ OS.gtk_style_context_get_border (context, OS.GTK_STATE_FLAG_NORMAL, tmp);
+ trim.x -= tmp.left;
+ trim.y -= tmp.top;
+ trim.width += tmp.left + tmp.right;
+ trim.height += tmp.top + tmp.bottom;
+ }
+ GdkRectangle icon_area = new GdkRectangle();
+ OS.gtk_entry_get_icon_area(handle, OS.GTK_ENTRY_ICON_PRIMARY, icon_area);
+ trim.x -= icon_area.width;
+ trim.width += icon_area.width;
+ OS.gtk_entry_get_icon_area(handle, OS.GTK_ENTRY_ICON_SECONDARY, icon_area);
+ trim.width += icon_area.width;
+ }else {
+ if ((style & SWT.BORDER) != 0) {
+ Point thickness = getThickness (handle);
+ xborder += thickness.x;
+ yborder += thickness.y;
+ }
+ GtkBorder innerBorder = Display.getEntryInnerBorder (handle);
+ trim.x -= innerBorder.left;
+ trim.y -= innerBorder.top;
+ trim.width += innerBorder.left + innerBorder.right;
+ trim.height += innerBorder.top + innerBorder.bottom;
+ }
+ trim.x -= xborder;
+ trim.y -= yborder;
+ trim.width += 2 * xborder;
+ trim.height += 2 * yborder;
+ trim.width += SPACE_FOR_CURSOR;
+ return new Rectangle (trim.x, trim.y, trim.width, trim.height);
+}
+
void createHandle (int index) {
if ((style & SWT.CALENDAR) != 0) {
state |= HANDLE;
@@ -345,7 +359,24 @@ void createHandle (int index) {
OS.gtk_container_add (fixedHandle, handle);
OS.gtk_calendar_set_display_options(handle, OS.GTK_CALENDAR_SHOW_HEADING | OS.GTK_CALENDAR_SHOW_DAY_NAMES);
} else {
- super.createHandle(index);
+ fixedHandle = OS.g_object_new (display.gtk_fixed_get_type (), 0);
+ if (fixedHandle == 0) error (SWT.ERROR_NO_HANDLES);
+ gtk_widget_set_has_window (fixedHandle, true);
+ if ((style & SWT.DROP_DOWN) != 0 && (style & SWT.DATE) != 0) {
+ handle = OS.gtk_entry_new();
+ OS.gtk_container_add(fixedHandle, handle);
+ if (handle == 0) error (SWT.ERROR_NO_HANDLES);
+ } else {
+ long /*int*/ adjusment = OS.gtk_adjustment_new(0, -9999, 9999, 1, 0, 0);
+ handle = OS.gtk_spin_button_new(adjusment, 1, 0);
+ if (handle == 0) error (SWT.ERROR_NO_HANDLES);
+ OS.gtk_spin_button_set_numeric (handle, false);
+ OS.gtk_container_add(fixedHandle, handle);
+ OS.gtk_spin_button_set_wrap (handle, (style & SWT.WRAP) != 0);
+ }
+ OS.gtk_editable_set_editable (handle, (style & SWT.READ_ONLY) == 0);
+ OS.gtk_entry_set_has_frame (handle, (style & SWT.BORDER) != 0);
+
}
}
@@ -360,20 +391,6 @@ void createWidget (int index) {
}
}
-void commitCurrentField() {
- if (characterCount > 0) {
- characterCount = 0;
- int fieldName = fieldNames[currentField];
- int start = fieldIndices[currentField].x;
- int end = fieldIndices[currentField].y;
- String value = text.getText(start, end - 1);
- int s = value.lastIndexOf(' ');
- if (s != -1) value = value.substring(s + 1);
- int newValue = unformattedIntValue(fieldName, value, characterCount == 0, calendar.getActualMaximum(fieldName));
- if (newValue != -1) setTextField(fieldName, newValue, true, true);
- }
-}
-
void onDispose (Event event) {
if (popupShell != null && !popupShell.isDisposed ()) {
popupCalendar.removeListener (SWT.Dispose, popupListener);
@@ -384,10 +401,9 @@ void onDispose (Event event) {
Display display = getDisplay ();
display.removeFilter (SWT.FocusIn, popupFilter);
popupShell = null;
- text = null;
popupCalendar = null;
down = null;
- up = null;
+ dateTimeString = null;
}
void dropDownCalendar(boolean drop) {
@@ -436,7 +452,7 @@ void dropDownCalendar(boolean drop) {
}
long /*int*/ focusHandle () {
- if (text != null) return text.handle;
+ if (handle != 0) return handle;
return super.focusHandle ();
}
@@ -713,19 +729,22 @@ long /*int*/ gtk_month_changed (long /*int*/ widget) {
return 0;
}
-boolean hasFocus () {
- if (super.hasFocus ()) return true;
- Control focusControl = display.getFocusControl();
- if (focusControl != null && focusControl == text) return true;
- return false;
-}
-
void hookEvents () {
super.hookEvents();
if ((style & SWT.CALENDAR) != 0) {
OS.g_signal_connect_closure (handle, OS.day_selected, display.closures [DAY_SELECTED], false);
OS.g_signal_connect_closure (handle, OS.day_selected_double_click, display.closures [DAY_SELECTED_DOUBLE_CLICK], false);
OS.g_signal_connect_closure (handle, OS.month_changed, display.closures [MONTH_CHANGED], false);
+ } else { // FOR SPINNER
+ int eventMask = OS.GDK_POINTER_MOTION_MASK | OS.GDK_BUTTON_PRESS_MASK | OS.GDK_BUTTON_RELEASE_MASK;
+ OS.gtk_widget_add_events (handle, eventMask);
+ if ((style & SWT.DROP_DOWN) == 0 ) {
+ OS.g_signal_connect_closure (handle, OS.output, display.closures [OUTPUT], true);
+ OS.g_signal_connect_closure (handle, OS.focus_in_event, display.closures [FOCUS_IN_EVENT], true);
+ }
+ if (OS.G_OBJECT_TYPE (handle) == OS.GTK_TYPE_MENU ()) {
+ OS.g_signal_connect_closure(handle, OS.selection_done, display.closures[SELECTION_DONE], true);
+ }
}
}
@@ -749,14 +768,6 @@ boolean isDropped () {
return popupShell.getVisible ();
}
-public boolean isFocusControl () {
- checkWidget();
- if ((style & SWT.DROP_DOWN) != 0 && (text.isFocusControl () || popupShell.isFocusControl () || popupCalendar.isFocusControl())) {
- return true;
- }
- return super.isFocusControl ();
-}
-
void initAccessible() {
Accessible accessible = getAccessible ();
accessible.addAccessibleListener (new AccessibleAdapter () {
@@ -891,7 +902,7 @@ void popupCalendarEvent (Event event) {
break;
case SWT.TRAVERSE_TAB_NEXT:
case SWT.TRAVERSE_TAB_PREVIOUS:
- event.doit = text.traverse(event.detail);
+// event.doit = text.traverse(event.detail);
event.detail = SWT.TRAVERSE_NONE;
if (event.doit) dropDownCalendar (false);
return;
@@ -952,7 +963,7 @@ void handleFocus (int type) {
switch (type) {
case SWT.FocusIn: {
if (hasFocus) return;
- text.selectAll ();
+ selectAll ();
hasFocus = true;
Shell shell = getShell ();
shell.removeListener (SWT.Deactivate, popupListener);
@@ -967,7 +978,7 @@ void handleFocus (int type) {
case SWT.FocusOut: {
if (!hasFocus) return;
Control focusControl = getDisplay ().getFocusControl ();
- if (focusControl == down || focusControl == popupCalendar || focusControl == text) return;
+ if (focusControl == down || focusControl == popupCalendar ) return;
hasFocus = false;
Shell shell = getShell ();
shell.removeListener(SWT.Deactivate, popupListener);
@@ -1031,17 +1042,17 @@ void selectField(int index) {
}
final int start = fieldIndices[index].x;
final int end = fieldIndices[index].y;
- Point pt = text.getSelection();
+ Point pt = getSelection();
if (index == currentField && start == pt.x && end == pt.y) return;
currentField = index;
display.asyncExec(new Runnable() {
public void run() {
- if (!text.isDisposed()) {
- String value = text.getText(start, end - 1);
+ if (handle != 0) {
+ String value = getText(getText(),start, end - 1);
int s = value.lastIndexOf(' ');
if (s == -1) s = start;
else s = start + s + 1;
- text.setSelection(s, end);
+ setSelection(s, end);
}
}
});
@@ -1071,7 +1082,6 @@ public void setBackground(Color color) {
}
}
bg = color;
- if (text != null) text.setBackground(color);
if (popupCalendar != null) popupCalendar.setBackground(color);
}
@@ -1085,17 +1095,13 @@ void setBackgroundColor (GdkColor color) {
public void setEnabled (boolean enabled){
super.setEnabled(enabled);
- if ((style & SWT.CALENDAR) == 0) {
- text.setEnabled(enabled);
+ if ((style & SWT.DROP_DOWN) != 0)
down.setEnabled(enabled);
- if (up != null) up.setEnabled(enabled);
- }
}
public void setFont(Font font) {
super.setFont(font);
this.font = font;
- if (text != null) text.setFont(font);
if (popupCalendar != null) popupCalendar.setFont(font);
redraw();
}
@@ -1107,7 +1113,6 @@ void setForegroundColor (GdkColor color) {
public void setForeground(Color color) {
super.setForeground(color);
fg = color;
- if (text != null) text.setForeground(color);
if (popupCalendar != null) popupCalendar.setForeground(color);
}
@@ -1154,48 +1159,6 @@ void setField(int fieldName, int value) {
sendSelectionEvent (SWT.Selection);
}
-void setTextField(int fieldName, int value, boolean commit, boolean adjust) {
- if (commit) {
- int max = calendar.getActualMaximum(fieldName);
- int min = calendar.getActualMinimum(fieldName);
- if (fieldName == Calendar.YEAR) {
- max = MAX_YEAR;
- min = MIN_YEAR;
- /* Special case: convert 1 or 2-digit years into reasonable 4-digit years. */
- int currentYear = Calendar.getInstance().get(Calendar.YEAR);
- int currentCentury = (currentYear / 100) * 100;
- if (value < (currentYear + 30) % 100) value += currentCentury;
- else if (value < 100) value += currentCentury - 100;
- }
- if (value > max) value = min; // wrap
- if (value < min) value = max; // wrap
- }
- int start = fieldIndices[currentField].x;
- int end = fieldIndices[currentField].y;
- text.setSelection(start, end);
- String newValue = formattedStringValue(fieldName, value, adjust);
- StringBuffer buffer = new StringBuffer(newValue);
- /* Convert leading 0's into spaces. */
- int prependCount = end - start - buffer.length();
- for (int i = 0; i < prependCount; i++) {
- switch (fieldName) {
- case Calendar.MINUTE:
- case Calendar.SECOND:
- buffer.insert(0, 0);
- break;
- default:
- buffer.insert(0, ' ');
- break;
- }
- }
- newValue = buffer.toString();
- ignoreVerify = true;
- text.insert(newValue);
- ignoreVerify = false;
- selectField(currentField);
- if (commit) setField(fieldName, value);
-}
-
/**
* Sets the receiver's year, month, and day in a single operation.
* <p>
@@ -1283,9 +1246,7 @@ public void setHours (int hours) {
public void setMenu (Menu menu) {
super.setMenu(menu);
- if (up != null) up.setMenu(menu);
if (down != null) down.setMenu(menu);
- if (text != null) text.setMenu(menu);
}
/**
@@ -1423,123 +1384,27 @@ public void setYear (int year) {
}
}
-void onTextFocusIn(Event event) {
- selectField(currentField);
- if ((style & SWT.DROP_DOWN) == 0) {
- sendFocusEvent(SWT.FocusIn);
- } else {
- handleFocus(SWT.FocusIn);
- }
-}
-
-void onTextFocusOut(Event event) {
- commitCurrentField();
- if ((style & SWT.DROP_DOWN) == 0) {
- sendFocusEvent(SWT.FocusOut);
- } else {
- handleFocus(SWT.FocusOut);
- }
-}
-
-void onTextKeyDown(Event event) {
- if ((style & SWT.DROP_DOWN) != 0 && (event.stateMask & SWT.ALT) != 0 && (event.keyCode == SWT.ARROW_UP || event.keyCode == SWT.ARROW_DOWN)) {
- boolean dropped = isDropped ();
- if (!dropped) {
- popupCalendar.calendarDisplayed = true;
- setFocus ();
- }
- dropDownCalendar(!dropped);
- return;
- }
- int fieldName;
- switch (event.keyCode) {
- case SWT.ARROW_RIGHT:
- case SWT.KEYPAD_DIVIDE:
- /* A right arrow or a valid separator navigates to the field on the right, with wraping */
- selectField((currentField + 1) % fieldCount);
- sendEvent(SWT.Traverse);
- break;
- case SWT.ARROW_LEFT:
- /* Navigate to the field on the left, with wrapping */
- int index = currentField - 1;
- selectField(index < 0 ? fieldCount - 1 : index);
- sendEvent(SWT.Traverse);
- break;
- case SWT.ARROW_UP:
- case SWT.KEYPAD_ADD:
- /* Set the value of the current field to value + 1, with wrapping */
- commitCurrentField();
- incrementField(+1);
- break;
- case SWT.ARROW_DOWN:
- case SWT.KEYPAD_SUBTRACT:
- /* Set the value of the current field to value - 1, with wrapping */
- commitCurrentField();
- incrementField(-1);
- break;
- case SWT.HOME:
- /* Set the value of the current field to its minimum */
- fieldName = fieldNames[currentField];
- setTextField(fieldName, calendar.getActualMinimum(fieldName), true, true);
- break;
- case SWT.END:
- /* Set the value of the current field to its maximum */
- fieldName = fieldNames[currentField];
- setTextField(fieldName, calendar.getActualMaximum(fieldName), true, true);
- break;
- default:
- switch (event.character) {
- case '/':
- case ':':
- case '-':
- case '.':
- /* A valid separator navigates to the field on the right, with wraping */
- selectField((currentField + 1) % fieldCount);
- sendEvent(SWT.Traverse);
- break;
- case SWT.CR:
- /* Enter causes default selection */
- postEvent (SWT.DefaultSelection);
- break;
- }
- }
-}
-
-void onTextMouseClick(Event event) {
- if (event.button != 1) return;
- Point sel = text.getSelection();
- for (int i = 0; i < fieldCount; i++) {
- if (sel.x >= fieldIndices[i].x && sel.x <= fieldIndices[i].y) {
- currentField = i;
- break;
- }
- }
- selectField(currentField);
-}
-
void onResize(Event event) {
Rectangle rect = getClientArea ();
int width = rect.width;
int height = rect.height;
Point buttonSize = down.computeSize(SWT.DEFAULT, height);
- text.setBounds(0, 0, width - buttonSize.x, height);
if ((style & SWT.DROP_DOWN) != 0) {
down.setBounds(width - buttonSize.x, 0, buttonSize.x, height);
} else {
int buttonHeight = height / 2;
- up.setBounds(width - buttonSize.x, 0, buttonSize.x, buttonHeight);
down.setBounds(width - buttonSize.x, buttonHeight, buttonSize.x, buttonHeight);
}
}
-void onTextVerify(Event event) {
- if (ignoreVerify) return;
- event.doit = false;
+boolean onTextVerify(int key) {
+ if (ignoreVerify) return true;
int fieldName = fieldNames[currentField];
int start = fieldIndices[currentField].x;
int end = fieldIndices[currentField].y;
int length = end - start;
- String newText = event.text;
+ char keyChar = (char) key;
+ String newText =""+ keyChar;
if (fieldName == Calendar.AM_PM) {
String[] ampm = formatSymbols.getAmPmStrings();
if (newText.equalsIgnoreCase(ampm[Calendar.AM].substring(0, 1)) || newText.equalsIgnoreCase(ampm[Calendar.AM])) {
@@ -1547,15 +1412,15 @@ void onTextVerify(Event event) {
} else if (newText.equalsIgnoreCase(ampm[Calendar.PM].substring(0, 1)) || newText.equalsIgnoreCase(ampm[Calendar.PM])) {
setTextField(fieldName, Calendar.PM, true, false);
}
- return;
+ return false;
}
if (characterCount > 0) {
try {
Integer.parseInt(newText);
} catch (NumberFormatException ex) {
- return;
+ return false;
}
- String value = text.getText(start, end - 1);
+ String value = getText(start, end - 1);
int s = value.lastIndexOf(' ');
if (s != -1) value = value.substring(s + 1);
newText = "" + value + newText;
@@ -1568,7 +1433,7 @@ void onTextVerify(Event event) {
int newValue = unformattedIntValue(fieldName, newText, characterCount == 0, max);
if (newValue == -1) {
characterCount = 0;
- return;
+ return false;
}
if (first && newValue == 0 && length > 1) {
setTextField(fieldName, newValue, false, false);
@@ -1586,6 +1451,7 @@ void onTextVerify(Event event) {
}
}
}
+ return false;
}
int unformattedIntValue(int fieldName, String newText, boolean adjust, int max) {
@@ -1606,12 +1472,313 @@ int unformattedIntValue(int fieldName, String newText, boolean adjust, int max)
}
void updateControl() {
- if (text != null) {
+ if (((style & SWT.CALENDAR) == 0) && handle != 0) {
String string = getFormattedString(style);
ignoreVerify = true;
- text.setText(string);
+ setText(string);
ignoreVerify = false;
}
redraw();
}
+void deregister () {
+ super.deregister ();
+ if (handle != 0) display.removeWidget (handle);
+ if (fixedHandle != 0) display.removeWidget (fixedHandle);
+}
+
+void register () {
+ super.register ();
+ if (handle != 0) display.addWidget (handle, this);
+}
+
+int getArrow (long /*int*/ widget) {
+ int adj_value = (int) OS.gtk_adjustment_get_value(OS.gtk_spin_button_get_adjustment(widget));
+ int new_value = 0;
+ if ((style & SWT.DATE) != 0) {
+ // getMonth() return 0 as first month and 11 as last one, whereas adjusment does not, so adding one makes them comaprable
+ new_value = getMonth()+1;
+ } else if ((style & SWT.TIME) != 0) {
+ // as getHours() has 24h format but spinner 12h format, new_value needs to be converted to 12h format
+ if (getHours() > 12 ){
+ new_value = getHours() - 12;
+ } else {
+ new_value = getHours();
+ // This fix does not compares adj_value to new_value when getArrow is called on widget creation
+
+ }
+ if (new_value == 0) new_value = 12;
+ }
+ if (adj_value == 0 && firstTime)
+ return 0;
+ firstTime = false;
+ if ( adj_value == new_value) return 0;
+ return adj_value > new_value ? SWT.ARROW_UP : SWT.ARROW_DOWN;
+}
+
+/**
+ * Calculates appropriate width of GtkEntry and
+ * adds Date/Time string to the Date/Time Spinner
+ */
+void setText (String text) {
+ if (text != null){
+ byte [] dateTimeString = Converter.wcsToMbcs (null, text , true);
+ OS.gtk_entry_set_width_chars(handle, dateTimeString.length);
+ OS.gtk_entry_set_text(handle, dateTimeString);
+ }
+}
+
+long /*int*/ gtk_key_press_event (long /*int*/ widget, long /*int*/ event) {
+ int fieldName;
+ if ((style & SWT.READ_ONLY) == 0 && (style & SWT.CALENDAR) == 0) {
+ GdkEventKey keyEvent = new GdkEventKey ();
+ OS.memmove (keyEvent, event, GdkEventKey.sizeof);
+ int key = keyEvent.keyval;
+ switch (key) {
+ case OS.GDK_Up:
+ incrementField(+1);
+ commitCurrentField();
+ break;
+ case OS.GDK_Down:
+ incrementField(-1);
+ commitCurrentField();
+ break;
+ case OS.GDK_Right:
+ selectField((currentField + 1) % fieldCount);
+ sendEvent(SWT.Traverse);
+ break;
+ case OS.GDK_Left:
+ int index = currentField - 1;
+ selectField(index < 0 ? fieldCount - 1 : index);
+ sendEvent(SWT.Traverse);
+ break;
+ case OS.GDK_Home:
+ /* Set the value of the current field to its minimum */
+ fieldName = fieldNames[currentField];
+ setTextField(fieldName, calendar.getActualMinimum(fieldName), true, true);
+ break;
+ case OS.GDK_End:
+ /* Set the value of the current field to its maximum */
+ fieldName = fieldNames[currentField];
+ setTextField(fieldName, calendar.getActualMaximum(fieldName), true, true);
+ break;
+ default:
+ if (!onTextVerify(key))
+ return 1;
+
+ }
+ }
+ return 1;
+}
+
+void commitCurrentField() {
+ if (characterCount > 0) {
+ characterCount = 0;
+ int fieldName = fieldNames[currentField];
+ int start = fieldIndices[currentField].x;
+ int end = fieldIndices[currentField].y;
+ String value = getText(getText(),start, end - 1);
+ int s = value.lastIndexOf(' ');
+ if (s != -1) value = value.substring(s + 1);
+ int newValue = unformattedIntValue(fieldName, value, characterCount == 0, calendar.getActualMaximum(fieldName));
+ if (newValue != -1) setTextField(fieldName, newValue, true, true);
+ }
+}
+/** returns selected text **/
+Point getSelection () {
+ checkWidget ();
+ Point selection;
+ int [] start = new int [1];
+ int [] end = new int [1];
+ OS.gtk_editable_get_selection_bounds (handle, start, end);
+ long /*int*/ ptr = OS.gtk_entry_get_text (handle);
+ start[0] = (int)/*64*/OS.g_utf8_offset_to_utf16_offset (ptr, start[0]);
+ end[0] = (int)/*64*/OS.g_utf8_offset_to_utf16_offset (ptr, end[0]);
+ selection = new Point (start [0], end [0]);
+ return selection;
+
+}
+
+/**
+ * Returns a string containing a copy of the contents of the
+ * receiver's text field, or an empty string if there are no
+ * contents.
+ *
+ * @return Spinner's text
+ *
+ * @exception SWTException <ul>
+ * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
+ * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
+ * </ul>
+ */
+String getText () {
+ checkWidget();
+ if (handle != 0) {
+ long /*int*/ str = OS.gtk_entry_get_text (handle);
+ if (str == 0) return "";
+ int length = OS.strlen (str);
+ byte [] buffer = new byte [length];
+ OS.memmove (buffer, str, length);
+ return new String (Converter.mbcsToWcs (null, buffer));
+ }
+ return "";
+}
+
+/**
+ * returns GtkEntry starting from index and ending with index
+ * provided by the user
+ */
+String getText (String str,int start, int end) {
+ checkWidget ();
+ if (!(start <= end && 0 <= end)) return "";
+ int length = str.length ();
+ end = Math.min (end, length - 1);
+ if (start > end) return "";
+ start = Math.max (0, start);
+ /*
+ * NOTE: The current implementation uses substring ()
+ * which can reference a potentially large character
+ * array.
+ */
+ return str.substring (start, end + 1);
+}
+
+void setSelection (int start, int end) {
+ checkWidget ();
+ long /*int*/ ptr = OS.gtk_entry_get_text (handle);
+ start = (int)/*64*/OS.g_utf16_offset_to_utf8_offset (ptr, start);
+ end = (int)/*64*/OS.g_utf16_offset_to_utf8_offset (ptr, end);
+ OS.gtk_editable_set_position (handle, start);
+ OS.gtk_editable_select_region (handle, start, end);
+}
+
+void setTextField(int fieldName, int value, boolean commit, boolean adjust) {
+ if (commit) {
+ int max = calendar.getActualMaximum(fieldName);
+ int min = calendar.getActualMinimum(fieldName);
+ if (fieldName == Calendar.YEAR) {
+ max = MAX_YEAR;
+ min = MIN_YEAR;
+ /* Special case: convert 1 or 2-digit years into reasonable 4-digit years. */
+ int currentYear = Calendar.getInstance().get(Calendar.YEAR);
+ int currentCentury = (currentYear / 100) * 100;
+ if (value < (currentYear + 30) % 100) value += currentCentury;
+ else if (value < 100) value += currentCentury - 100;
+ }
+ if (value > max) value = min; // wrap
+ if (value < min) value = max; // wrap
+ }
+ int start = fieldIndices[currentField].x;
+ int end = fieldIndices[currentField].y;
+ setSelection(start, end);
+ String newValue = formattedStringValue(fieldName, value, adjust);
+ StringBuffer buffer = new StringBuffer(newValue);
+ /* Convert leading 0's into spaces. */
+ int prependCount = end - start - buffer.length();
+ for (int i = 0; i < prependCount; i++) {
+ switch (fieldName) {
+ case Calendar.MINUTE:
+ case Calendar.SECOND:
+ buffer.insert(0, 0);
+ break;
+ default:
+ buffer.insert(0, ' ');
+ break;
+ }
+ }
+ newValue = buffer.toString();
+ ignoreVerify = true;
+ insert(newValue);
+ ignoreVerify = false;
+ selectField(currentField);
+ if (commit) setField(fieldName, value);
+}
+
+long /*int*/ gtk_button_press_event (long /*int*/ widget, long /*int*/ event) {
+ if ((style & SWT.CALENDAR) == 0 ){
+ GdkEventButton gdkEvent = new GdkEventButton ();
+ OS.memmove (gdkEvent, event, GdkEventButton.sizeof);
+ if (gdkEvent.type == OS.GDK_BUTTON_PRESS && gdkEvent.button == 1) {
+ onTextMouseClick(gdkEvent);
+ return gtk_button_press_event(widget, event, false);
+ }
+ }
+ return super.gtk_button_press_event (widget, event);
+}
+
+/**
+ * Output signal is called when Spinner's arrow buttons are triggered.
+ * On every click output is called twice presenting current and previous value.
+ * This method compares two values and determines if Up or down arrow was called.
+ */
+long gtk_output (long /*int*/ widget) {
+ int arrowType = getArrow(handle);
+ switch (arrowType) {
+ case SWT.ARROW_UP:
+ commitCurrentField();
+ incrementField(+1);
+ break;
+ case SWT.ARROW_DOWN:
+ commitCurrentField();
+ incrementField(-1);
+ break;
+ }
+ return 1;
+}
+
+void insert (String string) {
+ checkWidget ();
+ if (string == null) error (SWT.ERROR_NULL_ARGUMENT);
+ byte [] buffer = Converter.wcsToMbcs (null, string, false);
+ int [] start = new int [1], end = new int [1];
+ OS.gtk_editable_get_selection_bounds (handle, start, end);
+ OS.gtk_editable_delete_selection (handle);
+ OS.gtk_editable_insert_text (handle, buffer, buffer.length, start);
+ OS.gtk_editable_set_position (handle, start [0]);
+}
+
+void onTextMouseClick(GdkEventButton event) {
+ Point sel = getSelection();
+ for (int i = 0; i < fieldCount; i++) {
+ if (sel.x >= fieldIndices[i].x && sel.x <= fieldIndices[i].y) {
+ currentField = i;
+ break;
+ }
+ }
+ selectField(currentField);
+}
+
+String getText (int start, int end) {
+ checkWidget ();
+ if (!(start <= end && 0 <= end)) return "";
+ String str = getText ();
+ int length = str.length ();
+ end = Math.min (end, length - 1);
+ if (start > end) return "";
+ start = Math.max (0, start);
+ /*
+ * NOTE: The current implementation uses substring ()
+ * which can reference a potentially large character
+ * array.
+ */
+ return str.substring (start, end + 1);
+}
+
+public void selectAll () {
+ checkWidget ();
+ if (handle != 0)
+ OS.gtk_editable_select_region (handle, 0, -1);
+}
+
+
+void hideDateTime () {
+ if ((style & SWT.CALENDAR) == 0){
+ OS.gtk_widget_hide (fixedHandle);
+ }
+}
+
+void releaseWidget () {
+ super.releaseWidget();
+ if (fixedHandle != 0)
+ hideDateTime();
+}
} \ No newline at end of file