001: // @@
002: // @@
003: /*
004: * Wi.Ser Framework
005: *
006: * Version: 1.8.1, 20-September-2007
007: * Copyright (C) 2005 Dirk von der Weiden <dvdw@imail.de>
008: *
009: * This library is free software; you can redistribute it and/or
010: * modify it under the terms of the GNU Lesser General Public
011: * License as published by the Free Software Foundation; either
012: * version 2 of the License, or (at your option) any later version.
013: *
014: * This library is distributed in the hope that it will be useful,
015: * but WITHOUT ANY WARRANTY; without even the implied warranty of
016: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
017: * Lesser General Public License for more details.
018: *
019: * You should have received a copy of the GNU Lesser General Public
020: * License along with this library located in LGPL.txt in the
021: * license directory; if not, write to the
022: * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
023: * Boston, MA 02111-1307, USA.
024: *
025: * If this agreement does not cover your requirements, please contact us
026: * via email to get detailed information about the commercial license
027: * or our service offerings!
028: *
029: */
030: // @@
031: package de.ug2t.channel.markup.generic;
032:
033: import java.util.*;
034:
035: import de.ug2t.kernel.*;
036: import de.ug2t.unifiedGui.interfaces.*;
037:
038: /**
039: * @author Dirk
040: *
041: * date: 29.12.2004
042: *
043: * <p>
044: * Purpose:
045: * </p>
046: */
047: public interface IMuGenericApplicationOutput {
048: public static final int FULLRENDER = 0;
049: public static final int PARTIALRENDER = 1;
050: public static final int FULLRENDERREQEST = 2;
051:
052: public abstract void pcmf_addScrollPos(
053: MuGenericScrollController xCrt);
054:
055: public abstract KeStringTemplate pcmf_renderCtxMenues(
056: KeStringTemplate xTpl);
057:
058: public abstract void pcmf_addCtxMenu(IUnMenu xCtxMenu);
059:
060: public abstract void pcmf_removeCtxMenu(IUnMenu xCtxMenu);
061:
062: public abstract KeStringTemplate pcmf_renderDialogues(
063: KeStringTemplate xTpl);
064:
065: public abstract void pcmf_addDlg(IUnDialog xDlg);
066:
067: public abstract void pcmf_addDlg(IUnOptionDialog xDlg);
068:
069: public abstract void pcmf_removeDlg(IUnOptionDialog xDlg);
070:
071: public abstract void pcmf_removeDlg(IUnDialog xDlg);
072:
073: public abstract void pcmf_addDlg(IUnFileChooser xDlg);
074:
075: public abstract void pcmf_removeDlg(IUnFileChooser xDlg);
076:
077: public abstract void pcmf_addToRenderlist(MuGenericComponent xObj);
078:
079: public abstract Object pcmf_execView();
080:
081: public abstract void pcmf_removeFromRenderlist(
082: MuGenericComponent xObj);
083:
084: public abstract void pcmf_reqestFullRender();
085:
086: public abstract void pcmf_doFullRender();
087:
088: public abstract KeStringTemplate pcmf_wrapMarkup(
089: KeStringTemplate xHTML, MuGenericComponent xObj);
090:
091: public abstract String pcmf_wrapMarkup(String xHTML,
092: MuGenericComponent xObj);
093:
094: public abstract int pcmf_getRenderState();
095:
096: public abstract boolean pcmf_canHandleIForm();
097:
098: public abstract boolean pcmf_checkDialogStackTop(IUnDialog xToCheck);
099:
100: public abstract KeStringTemplate pcmf_renderScrollSettings(
101: KeStringTemplate xRet);
102:
103: public abstract KeStringTemplate pcmf_renderCalls(
104: KeStringTemplate xRet);
105:
106: public void pcmf_rerenderDialogs();
107:
108: public ArrayList pcmf_getCtxMenus();
109:
110: public void pcmf_addCommand(String xCommand);
111: }
|