1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 package com.sun.star.wizards.web;
24 
25 public interface WebWizardConst
26 {
27 
28     public static final String LSTLOADSETTINGS_ITEM_CHANGED = "sessionSelected"; // "lstLoadSettingsItemChanged";
29     public static final String BTNLOADSESSION_ACTION_PERFORMED = "loadSession"; // "btnLoadSessionActionPerformed";
30     public static final String BTNDELSESSION_ACTION_PERFORMED = "delSession"; // "btnDelSessionActionPerformed";
31     public static final String BTNADDDOC_ACTION_PERFORMED = "addDocument"; // "btnAddDocActionPerformed";
32     public static final String BTNREMOVEDOC_ACTION_PERFORMED = "removeDocument"; // "btnRemoveDocActionPerformed";
33     public static final String BTNDOCUP_ACTION_PERFORMED = "docUp"; // "btnDocUpActionPerformed";
34     public static final String BTNDOCDOWN_ACTION_PERFORMED = "docDown"; // "btnDocDownActionPerformed";
35     public static final String LSTSTYLES_ITEM_CHANGED = "refreshStylePreview"; // "lstStylesItemChanged";
36     public static final String BTNBACKGROUNDS_ACTION_PERFORMED = "chooseBackground"; // "btnBackgroundsActionPerformed";
37     public static final String BTNICONSETS_ACTION_PERFORMED = "chooseIconset"; // "btnIconSetsActionPerformed";
38     public static final String BTNFAVICON_ACTION_PERFORMED = "chooseFavIcon"; // "btnFavIconActionPerformed";
39     public static final String BTNPREVIEW_ACTION_PERFORMED = "documentPreview"; // "btnPreviewActionPerformed";
40     public static final String BTNFTP_ACTION_PERFORMED = "setFTPPublish"; // "btnFTPActionPerformed";
41     public static final String CHKLOCALDIR_ITEM_CHANGED = "checkPublish"; // "chkLocalDirItemChanged";
42     public static final String CHKSAVESETTINGS_ITEM_CHANGED = "checkPublish"; // "chkSaveSettingsItemChanged";
43     public static final String TXTSAVESETTINGS_TEXT_CHANGED = "checkPublish"; // "txtSaveSettingsTextChanged";
44     public static final String BTNLOCALDIR_ACTION_PERFORMED = "setPublishLocalDir"; // "btnLocalDirActionPerformed";
45     public static final String BTNZIP_ACTION_PERFORMED = "setZipFilename";// "btnZipActionPerformed";
46     public static final String CONFIG_PATH = "/org.openoffice.Office.WebWizard/WebWizard";
47     public static final String CONFIG_READ_PARAM = "cp_";
48     public static final String TASK = "WWIZ";
49     public static final String TASK_PREPARE = "t-prep";
50     public static final String LOCAL_PUBLISHER = "local";
51     public static final String FTP_PUBLISHER = "ftp";
52     public static final String ZIP_PUBLISHER = "zip";
53     public static final String TASK_EXPORT = "t_exp";
54     public static final String TASK_EXPORT_PREPARE = "t_exp_prep";
55     public static final String TASK_EXPORT_DOCUMENTS = "t_exp_docs";
56     public static final String TASK_GENERATE_PREPARE = "t_gen_prep";
57     public static final String TASK_GENERATE_XSL = "t_gen_x";
58     public static final String TASK_GENERATE_COPY = "t_gen_cp";
59     public static final String TASK_PUBLISH_PREPARE = "t_pub_prep";
60     //public static final String TASK_PUBLISH = "t_pub";
61     public static final String TASK_FINISH = "t_fin";
62     /**
63      * when the user adds more than this number
64      * of documents to the list, a status dialog opens.
65      */
66     public static final int MIN_ADD_FILES_FOR_DIALOG = 2;
67 }
68