Java Doc for IUnLayouted.java in  » J2EE » WiSerFramework » de » ug2t » unifiedGui » interfaces » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » WiSerFramework » de.ug2t.unifiedGui.interfaces 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


de.ug2t.unifiedGui.interfaces.IUnLayouted

All known Subclasses:   de.ug2t.channel.ho.client.swing.HoSwingContainer,  de.ug2t.channel.markup.generic.MuGenericContainer,  de.ug2t.channel.ho.server.generic.AHoSrvGenericContainer,
IUnLayouted
public interface IUnLayouted (Code)

author:
   Dirk
author:
   date: 27.01.2004 project: WiSer-Framework
author:
  


author:
   IUnLayouted gathers the functions for extended layout-control in a
author:
   common interface
author:
  



Field Summary
final public static  intLAYOUT_ABSOLUTE
    
final public static  intLAYOUT_FLOW
    
final public static  intLAYOUT_GRIDBAG
    


Method Summary
public  intpcmf_getCommonLayout()
    

Gets how the container is layouted.

public  voidpcmf_setCommonLayout(int xLayout)
    

Sets how the container is layouted.

public  voidpcmf_setFill(String xName, boolean xH, boolean xV)
    

Sets the fill paramter of a component.

public  voidpcmf_setFill(UnComponent xObj, boolean xH, boolean xV)
    

Sets the gravity of a component.

public  voidpcmf_setGuiObjNoLayout(boolean xLayout)
    

Sets whether the container is layouted or not.

public  voidpcmf_setInsets(UnComponent xObj, int xIns1, int xIns2, int xIns3, int xIns4)
    
public  voidpcmf_setInsets(String xName, int xIns1, int xIns2, int xIns3, int xIns4)
    
public  voidpcmf_setWeights(String xName, int xW, int yW)
    

Sets the gravity of a component.

public  voidpcmf_setWeights(UnComponent xObj, int xW, int yW)
    

Sets the gravity of a component.


Field Detail
LAYOUT_ABSOLUTE
final public static int LAYOUT_ABSOLUTE(Code)



LAYOUT_FLOW
final public static int LAYOUT_FLOW(Code)



LAYOUT_GRIDBAG
final public static int LAYOUT_GRIDBAG(Code)





Method Detail
pcmf_getCommonLayout
public int pcmf_getCommonLayout()(Code)

Gets how the container is layouted.

LAYOUT_GRIDBAG: Use a GridBagLayout LAYOUT_FLOW: Use a FlowLayoutLAYOUT_ABSOLUTE: Use absolute positions in pixel




pcmf_setCommonLayout
public void pcmf_setCommonLayout(int xLayout)(Code)

Sets how the container is layouted. LAYOUT_GRIDBAG: Use a GridBagLayout LAYOUT_FLOW: Use a FlowLayout LAYOUT_ABSOLUTE: Use absolute positions in pixel These layouts are available in Web and Swing applications and produce quite similar outputs.


Parameters:
  xLayout - LAYOUT_GRIDBAG, LAYOUT_FLOW, or LAYOUT_ABSOLUTE




pcmf_setFill
public void pcmf_setFill(String xName, boolean xH, boolean xV)(Code)

Sets the fill paramter of a component. The meaning is similar to Java Swing


Parameters:
  xName - component's name in this container
Parameters:
  xH - fill horizontal
Parameters:
  xV - fill vertical




pcmf_setFill
public void pcmf_setFill(UnComponent xObj, boolean xH, boolean xV)(Code)

Sets the gravity of a component. The meaning is similar to Java Swing


Parameters:
  xObj - component in this container
Parameters:
  xH - fill horizontal
Parameters:
  xV - fill vertical




pcmf_setGuiObjNoLayout
public void pcmf_setGuiObjNoLayout(boolean xLayout)(Code)

Sets whether the container is layouted or not. If not positions can be set in pixels, otherwise layout cells are used


Parameters:
  xLayout - true activates layout-management, false disables it




pcmf_setInsets
public void pcmf_setInsets(UnComponent xObj, int xIns1, int xIns2, int xIns3, int xIns4)(Code)

Sets the insets of a component in pixel according to the components cell-borders


Parameters:
  xObj - component in this container
Parameters:
  xIns1 - top inset
Parameters:
  xIns2 - left inset
Parameters:
  xIns3 - bottom inset
Parameters:
  xIns4 - right inset




pcmf_setInsets
public void pcmf_setInsets(String xName, int xIns1, int xIns2, int xIns3, int xIns4)(Code)

Sets the insets of a component in pixel according to the components cell-borders


Parameters:
  xName - component's name in this container
Parameters:
  xIns1 - top inset
Parameters:
  xIns2 - left inset
Parameters:
  xIns3 - bottom inset
Parameters:
  xIns4 - right inset




pcmf_setWeights
public void pcmf_setWeights(String xName, int xW, int yW)(Code)

Sets the gravity of a component. The meaning is similar to Java Swing


Parameters:
  xName - component's name in this container
Parameters:
  xW - gravity in x-direction
Parameters:
  yW - gravity in y-direction




pcmf_setWeights
public void pcmf_setWeights(UnComponent xObj, int xW, int yW)(Code)

Sets the gravity of a component. The meaning is similar to Java Swing


Parameters:
  xObj - component in this container
Parameters:
  xW - gravity in x-direction
Parameters:
  yW - gravity in y-direction




www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.