Java Doc for ResizableConfig.java in  » Ajax » gwtext-2.01 » com » gwtext » client » widgets » 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 » Ajax » gwtext 2.01 » com.gwtext.client.widgets 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.gwtext.client.core.BaseConfig
   com.gwtext.client.widgets.ResizableConfig

ResizableConfig
public class ResizableConfig extends BaseConfig (Code)
Configuration class for com.gwtext.client.widgets.Resizable .




Method Summary
public  voidsetAdjustments(int widthAdjustment, int heightAdjustment)
     The width, height adjustments to be added to the resize operation's new size.
public  voidsetAnimate(boolean animate)
     True to animate the resize (not compatible with dynamic sizing, defaults to false).
public  voidsetAutoAdjustments()
     Sets the adjustments to "auto".
public  voidsetDisableTrackOver(boolean disableTrackOver)
     True to disable mouse tracking.
public  voidsetDraggable(boolean draggable)
     Convenience to initialize drag drop (defaults to false).
public  voidsetDuration(float duration)
     Animation duration if animate = true (defaults to .35).
public  voidsetDynamic(boolean dynamic)
     True to resize the element while dragging instead of using a proxy (defaults to false).
public  voidsetEasing(Easing easing)
     Animation easieng if animate = true.
public  voidsetEnabled(boolean enabled)
     False to disable resizing (defaults to true).
public  voidsetHandles(Resizable.Handle handles)
    
public  voidsetHeight(int height)
     The height of the element in pixels (defaults to null).
public  voidsetHeightIncrement(int heightIncrement)
     The increment to snap the height resize in pixels (dynamic must be true, defaults to 0).
public  voidsetMaxHeight(int maxHeight)
     The maximum height for the element (defaults to 10000).
public  voidsetMaxWidth(int maxWidth)
     The maximum width for the element (defaults to 10000).
public  voidsetMinHeight(int minHeight)
     The minimum height for the element (defaults to 5).
public  voidsetMinWidth(int minWidth)
     The minimum width for the element (defaults to 5).
public  voidsetMinX(int minX)
     The minimum allowed page X for the element (only used for west resizing, defaults to 0).
public  voidsetMinY(int minY)
     The minimum allowed page Y for the element (only used for north resizing, defaults to 0).
public  voidsetPinned(boolean pinned)
     True to ensure that the resize handles are always visible, false to display them only when the user mouses over the resizable borders.
public  voidsetPreserveRatio(boolean preserveRatio)
     True to preserve the original ratio between height and width during resize (defaults to false).
public  voidsetResizeChild(boolean resizeChild)
     True to resize the first child, or id/element to resize (defaults to false).
public  voidsetTransparent(boolean transparent)
     True for transparent handles.
public  voidsetWidth(int width)
     The width of the element in pixels (defaults to null).
public  voidsetWidthIncrement(boolean widthIncrement)
     The increment to snap the width resize in pixels (dynamic must be true, defaults to 0).
public  voidsetWrap(boolean wrap)
     True to wrap an element with a div if needed (required for textareas and images, defaults to false).



Method Detail
setAdjustments
public void setAdjustments(int widthAdjustment, int heightAdjustment)(Code)
The width, height adjustments to be added to the resize operation's new size. Defaults to 0, 0
Parameters:
  widthAdjustment - the width adjustment
Parameters:
  heightAdjustment - the height adjustent



setAnimate
public void setAnimate(boolean animate)(Code)
True to animate the resize (not compatible with dynamic sizing, defaults to false).
Parameters:
  animate - true to anumate resize



setAutoAdjustments
public void setAutoAdjustments()(Code)
Sets the adjustments to "auto".



setDisableTrackOver
public void setDisableTrackOver(boolean disableTrackOver)(Code)
True to disable mouse tracking. This is only applied at config time. (defaults to false).
Parameters:
  disableTrackOver - true to disable mouse tracking



setDraggable
public void setDraggable(boolean draggable)(Code)
Convenience to initialize drag drop (defaults to false).
Parameters:
  draggable - true to initialize drag and drop



setDuration
public void setDuration(float duration)(Code)
Animation duration if animate = true (defaults to .35).
Parameters:
  duration - the animation duration



setDynamic
public void setDynamic(boolean dynamic)(Code)
True to resize the element while dragging instead of using a proxy (defaults to false).
Parameters:
  dynamic - true to resize element and not proxy during dragging



setEasing
public void setEasing(Easing easing)(Code)
Animation easieng if animate = true. Defaults to Easing.EASE_OUT_STRONG
Parameters:
  easing - the easing method



setEnabled
public void setEnabled(boolean enabled)(Code)
False to disable resizing (defaults to true).
Parameters:
  enabled - false to disable resizing



setHandles
public void setHandles(Resizable.Handle handles)(Code)
The resize handles to display (defaults to none)
Parameters:
  handles - the resize handles to display



setHeight
public void setHeight(int height)(Code)
The height of the element in pixels (defaults to null).
Parameters:
  height - the element height



setHeightIncrement
public void setHeightIncrement(int heightIncrement)(Code)
The increment to snap the height resize in pixels (dynamic must be true, defaults to 0).
Parameters:
  heightIncrement - the height increment



setMaxHeight
public void setMaxHeight(int maxHeight)(Code)
The maximum height for the element (defaults to 10000).
Parameters:
  maxHeight - the max height of element



setMaxWidth
public void setMaxWidth(int maxWidth)(Code)
The maximum width for the element (defaults to 10000).
Parameters:
  maxWidth - the max width



setMinHeight
public void setMinHeight(int minHeight)(Code)
The minimum height for the element (defaults to 5).
Parameters:
  minHeight - the min height



setMinWidth
public void setMinWidth(int minWidth)(Code)
The minimum width for the element (defaults to 5).
Parameters:
  minWidth - the min width



setMinX
public void setMinX(int minX)(Code)
The minimum allowed page X for the element (only used for west resizing, defaults to 0).
Parameters:
  minX - the min x value



setMinY
public void setMinY(int minY)(Code)
The minimum allowed page Y for the element (only used for north resizing, defaults to 0).
Parameters:
  minY - the min Y value



setPinned
public void setPinned(boolean pinned)(Code)
True to ensure that the resize handles are always visible, false to display them only when the user mouses over the resizable borders. This is only applied at config time. (defaults to false)
Parameters:
  pinned - true to ensure that the resize handles are always visible



setPreserveRatio
public void setPreserveRatio(boolean preserveRatio)(Code)
True to preserve the original ratio between height and width during resize (defaults to false).
Parameters:
  preserveRatio - true to preserve ratio



setResizeChild
public void setResizeChild(boolean resizeChild)(Code)
True to resize the first child, or id/element to resize (defaults to false).
Parameters:
  resizeChild - true to resize the first child



setTransparent
public void setTransparent(boolean transparent)(Code)
True for transparent handles. This is only applied at config time. (defaults to false).
Parameters:
  transparent - true for transparent handles



setWidth
public void setWidth(int width)(Code)
The width of the element in pixels (defaults to null).
Parameters:
  width - the width of element



setWidthIncrement
public void setWidthIncrement(boolean widthIncrement)(Code)
The increment to snap the width resize in pixels (dynamic must be true, defaults to 0).
Parameters:
  widthIncrement - the width increment



setWrap
public void setWrap(boolean wrap)(Code)
True to wrap an element with a div if needed (required for textareas and images, defaults to false).
Parameters:
  wrap - true to wrap element in a div if needed




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