Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Heidrich2009-04-02 20:23:34 +0000
committerFelipe Heidrich2009-04-02 20:23:34 +0000
commit87a1ac5b2a06bd283b0c41b00b1c4487449dea98 (patch)
treec64d134389080d080abd77775637b197f1277184 /bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
parent904df56644c9070d336843631d767da03676b792 (diff)
downloadeclipse.platform.swt-87a1ac5b2a06bd283b0c41b00b1c4487449dea98.tar.gz
eclipse.platform.swt-87a1ac5b2a06bd283b0c41b00b1c4487449dea98.tar.xz
eclipse.platform.swt-87a1ac5b2a06bd283b0c41b00b1c4487449dea98.zip
Bug 240033: [Viewers] 'Dialog refresh' has encountered a problem
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java14
1 files changed, 13 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
index 164a7d0306..f41a4ca5c2 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
@@ -162,7 +162,9 @@ public abstract class Widget {
static final int DAY_SELECTED = 61;
static final int MONTH_CHANGED = 62;
static final int STATUS_ICON_POPUP_MENU = 63;
- static final int LAST_SIGNAL = 64;
+ static final int ROW_INSERTED = 64;
+ static final int ROW_DELETED = 65;
+ static final int LAST_SIGNAL = 66;
/**
* Prevents uninitialized instances from being created outside the package.
@@ -757,6 +759,14 @@ int /*long*/ gtk_row_activated (int /*long*/ tree, int /*long*/ path, int /*long
return 0;
}
+int /*long*/ gtk_row_deleted (int /*long*/ model, int /*long*/ path) {
+ return 0;
+}
+
+int /*long*/ gtk_row_inserted (int /*long*/ model, int /*long*/ path, int /*long*/ iter) {
+ return 0;
+}
+
int /*long*/ gtk_scroll_child (int /*long*/ widget, int /*long*/ scrollType, int /*long*/ horizontal) {
return 0;
}
@@ -1560,6 +1570,7 @@ int /*long*/ windowProc (int /*long*/ handle, int /*long*/ arg0, int /*long*/ us
case UNMAP_EVENT: return gtk_unmap_event (handle, arg0);
case VISIBILITY_NOTIFY_EVENT: return gtk_visibility_notify_event (handle, arg0);
case WINDOW_STATE_EVENT: return gtk_window_state_event (handle, arg0);
+ case ROW_DELETED: return gtk_row_deleted (handle, arg0);
default: return 0;
}
}
@@ -1574,6 +1585,7 @@ int /*long*/ windowProc (int /*long*/ handle, int /*long*/ arg0, int /*long*/ ar
case SWITCH_PAGE: return gtk_switch_page (handle, arg0, arg1);
case TEST_COLLAPSE_ROW: return gtk_test_collapse_row (handle, arg0, arg1);
case TEST_EXPAND_ROW: return gtk_test_expand_row(handle, arg0, arg1);
+ case ROW_INSERTED: return gtk_row_inserted (handle, arg0, arg1);
default: return 0;
}
}

Back to the top