01: // @@
02: // @@
03: /*
04: * Wi.Ser Framework
05: *
06: * Version: 1.8.1, 20-September-2007
07: * Copyright (C) 2005 Dirk von der Weiden <dvdw@imail.de>
08: *
09: * This library is free software; you can redistribute it and/or
10: * modify it under the terms of the GNU Lesser General Public
11: * License as published by the Free Software Foundation; either
12: * version 2 of the License, or (at your option) any later version.
13: *
14: * This library is distributed in the hope that it will be useful,
15: * but WITHOUT ANY WARRANTY; without even the implied warranty of
16: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17: * Lesser General Public License for more details.
18: *
19: * You should have received a copy of the GNU Lesser General Public
20: * License along with this library located in LGPL.txt in the
21: * license directory; if not, write to the
22: * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23: * Boston, MA 02111-1307, USA.
24: *
25: * If this agreement does not cover your requirements, please contact us
26: * via email to get detailed information about the commercial license
27: * or our service offerings!
28: *
29: */
30: // @@
31: package de.ug2t.unifiedGui.interfaces;
32:
33: import de.ug2t.channel.markup.generic.*;
34: import de.ug2t.kernel.*;
35:
36: public interface IUnPageDecorator extends IUnComponent {
37: public abstract void pcmf_displaymdiPageDecorator();
38:
39: public abstract void pcmf_hidemdiPageDecorator();
40:
41: public abstract boolean pcmf_isDisplay();
42:
43: public abstract KeStringTemplate pcmf_setPgColor(
44: KeStringTemplate xString);
45:
46: public abstract Object pcmf_execView(KeStringTemplate xContent,
47: IUnImage xIco);
48:
49: public abstract void pcmf_toFront();
50:
51: public abstract void pcmf_setResizable(boolean xSizable);
52:
53: public abstract boolean pcmf_isResizable();
54:
55: public abstract void pcmf_setDrawSizeButtons(boolean xSb);
56:
57: public abstract void pcmf_setDrawWinCtrlButtons(boolean xCb);
58:
59: public abstract void pcmf_setBgImage(IUnImage xImg);
60:
61: public abstract IUnImage pcmf_getBgImage();
62:
63: public abstract void pcmf_setPage(MuGenericPage xPage);
64:
65: public abstract MuGenericPage pcmf_getPage();
66:
67: public abstract void pcmf_setPosition(int xPos, int yPos, int xWi,
68: int xHi, String xAlign);
69:
70: public abstract int pcmf_getHi();
71:
72: public abstract int pcmf_getWi();
73:
74: public abstract int pcmf_getXPos();
75:
76: public abstract int pcmf_getYPos();
77:
78: public abstract void pcmf_disableThis();
79:
80: public abstract void pcmf_enableThis();
81:
82: public void pcmf_setYPosCorrection(int xCorr);
83:
84: public int pcmf_getYPosCorrection();
85: }
|