Kaydet (Commit) 28e4f9b1 authored tarafından Kurt Zenker's avatar Kurt Zenker

INTEGRATION: CWS qwizards1 (1.1.2); FILE ADDED

2004/03/12 16:16:51 rpiterman 1.1.2.7: documentation and small implementation-fixes
2004/02/02 11:29:47 tv 1.1.2.6: formatted with autoformatter (indents now use TAB)
2004/02/02 05:09:03 bc 1.1.2.5: #111603# many changes
2004/01/30 15:17:08 bc 1.1.2.4: #111603# user interface finalized
2004/01/16 10:05:53 bc 1.1.2.3: #111603# invisible Controls class removed
2003/12/19 17:55:56 rpiterman 1.1.2.2: Did nothing :-)
2003/11/14 14:14:16 rpiterman 1.1.2.1: defines usefull Integer constants to use when creating dialogs.
üst e123d607
/*
* 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 Integer INVISIBLESTEP = new Integer(99);
/**
* 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);
/**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;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment