summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/ui/UIConsts.java
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/ui/UIConsts.java')
-rw-r--r--wizards/com/sun/star/wizards/ui/UIConsts.java83
1 files changed, 83 insertions, 0 deletions
diff --git a/wizards/com/sun/star/wizards/ui/UIConsts.java b/wizards/com/sun/star/wizards/ui/UIConsts.java
new file mode 100644
index 000000000000..bac864ecd09c
--- /dev/null
+++ b/wizards/com/sun/star/wizards/ui/UIConsts.java
@@ -0,0 +1,83 @@
+/*
+ * Created on 14.11.2003
+ *
+ * To change the template for this generated file go to
+ * Window>Preferences>Java>Code Generation>Code and Comments
+ */
+package com.sun.star.wizards.ui;
+
+/**
+ * @author rpiterman
+ *
+ * To change the template for this generated type comment go to
+ * Window>Preferences>Java>Code Generation>Code and Comments
+ */
+public interface UIConsts
+{
+
+ public static final int RID_COMMON = 500;
+ public static final int RID_DB_COMMON = 1000;
+ public static final int RID_FORM = 2200;
+ public static final int RID_QUERY = 2300;
+ public static final int RID_REPORT = 2400;
+ public static final int RID_TABLE = 2500;
+ public static final int RID_IMG_REPORT = 1000;
+ public static final int RID_IMG_FORM = 1100;
+ public static final int RID_IMG_WEB = 1200;
+ public static final Integer INVISIBLESTEP = new Integer(99);
+ public static final String INFOIMAGEURL = "private:resource/dbu/image/19205";
+ public static final String INFOIMAGEURL_HC = "private:resource/dbu/image/19230";
+ /**
+ * The tabindex of the navigation buttons in a wizard must be assigned a very
+ * high tabindex because on every step their taborder must appear at the end
+ */
+ public static final short SOFIRSTWIZARDNAVITABINDEX = 30000;
+ public static final Integer INTEGER_8 = new Integer(8);
+ public static final Integer INTEGER_12 = new Integer(12);
+ public static final Integer INTEGER_14 = new Integer(14);
+ public static final Integer INTEGER_16 = new Integer(16);
+ public static final Integer INTEGER_40 = new Integer(40);
+ public static final Integer INTEGER_50 = new Integer(50);
+ /**Steps of the QueryWizard
+ *
+ */
+ public static final int SOFIELDSELECTIONPAGE = 1;
+ public static final int SOSORTINGPAGE = 2;
+ public static final int SOFILTERPAGE = 3;
+ public static final int SOAGGREGATEPAGE = 4;
+ public static final int SOGROUPSELECTIONPAGE = 5;
+ public static final int SOGROUPFILTERPAGE = 6;
+ public static final int SOTITLESPAGE = 7;
+ public static final int SOSUMMARYPAGE = 8;
+ public static final Integer[] INTEGERS = new Integer[]
+ {
+ new Integer(0), new Integer(1), new Integer(2), new Integer(3), new Integer(4), new Integer(5), new Integer(6), new Integer(7), new Integer(8), new Integer(9), new Integer(10)
+ };
+
+ class CONTROLTYPE
+ {
+
+ public static final int BUTTON = 1;
+ public static final int IMAGECONTROL = 2;
+ public static final int LISTBOX = 3;
+ public static final int COMBOBOX = 4;
+ public static final int CHECKBOX = 5;
+ public static final int RADIOBUTTON = 6;
+ public static final int DATEFIELD = 7;
+ public static final int EDITCONTROL = 8;
+ public static final int FILECONTROL = 9;
+ public static final int FIXEDLINE = 10;
+ public static final int FIXEDTEXT = 11;
+ public static final int FORMATTEDFIELD = 12;
+ public static final int GROUPBOX = 13;
+ public static final int HYPERTEXT = 14;
+ public static final int NUMERICFIELD = 15;
+ public static final int PATTERNFIELD = 16;
+ public static final int PROGRESSBAR = 17;
+ public static final int ROADMAP = 18;
+ public static final int SCROLLBAR = 19;
+ public static final int TIMEFIELD = 20;
+ public static final int CURRENCYFIELD = 21;
+ public static final int UNKNOWN = -1;
+ }
+}