Java Doc for DragIGREView.java in  » Portal » Open-Portal » graphical » 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 » Portal » Open Portal » graphical 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


graphical.MouseOverGridView
   graphical.DragIGREView

DragIGREView
public class DragIGREView extends MouseOverGridView implements DragDestination,DragSource,DragPolicy(Code)



Constructor Summary
public  DragIGREView()
     Constructs an empty DragIGRSView.
public  DragIGREView(Rect rect)
     Constructs a DragIGRSView with bounds rect.
public  DragIGREView(Rect rect, int dragSourcePolicy, int dragDestinationPolicy, Image dragImage, IGrid igrid)
     Constructs a DragIGRSView with bounds rect.
public  DragIGREView(int x, int y, int width, int height)
     Constructs an empty DragIGRSView with the given bounds.
public  DragIGREView(int x, int y, int width, int height, int dragSourcePolicy, int dragDestinationPolicy, Image dragImage, IGrid igrid)
     Constructs an empty DragIGRSView with the given bounds.

Method Summary
public  DragDestinationacceptsDrag(DragSession ds, int x, int y)
    
public  booleancanResizeColumn(int c)
     Can the column be resized? Sure, if it isn't the icon/0 column.
public  intcolumnWidth(int c)
    
public  booleandragDropped(DragSession ds)
    
public  booleandragEntered(DragSession ds)
    
public  voiddragExited(DragSession ds)
    
public  booleandragMoved(DragSession ds)
    
public  voiddragWasAccepted(DragSession ds)
    
public  booleandragWasRejected(DragSession ds)
    
public  booleaneditable(int r, int c)
    
public  TargetgetDestinationTarget()
    
public  ImagegetDragImage()
    
public  DragPolicyContextgetDragPolicyContext()
    
public  booleangetEditableCell(int r, int c)
    
public  booleangetEditableColumn(int c)
    
public  booleangetEditableRow(int r)
    
public  booleangetEditableView()
     getEditableView - This class supports both editable and non-editable views. This method returns the current editable state of the view.
public  TargetgetSourceTarget()
    
public  booleanmouseDown(MouseEvent e)
    
public  voidmouseDragged(MouseEvent e)
    
public  voidonDoubleClickRow(int r)
     onDoubleClickRow - Intercept double click on a row, to open property window.
public  voidonPressCell(int r, int c)
     onPressCell - Intercept single click on a row, to refresh propertyWindow if open.
public  voidonPressRowLabel(int r)
     onPressRowLabel - Intercept mouse down on row and defer selection to mouse up if the row is already selected.
public  voidonReleaseRowLabel(int r)
     onReleaseRowLabel - Intercept mouse up on row and if the down was deferred do it now.
public  voidonSlideRowLabel(int r)
     onSlideRowLabel - Intercept mouse drag and if the mouse down was deferred, skip the drag.
public  voidsetColumnWidth(int c, int w)
    
public  voidsetDestinationTarget(Target t)
    
public  voidsetDragDestinationPolicy(int dragDestinationPolicy)
    
public  voidsetDragImage(Image dragImage)
    
public  voidsetDragSourcePolicy(int dragSourcePolicy)
    
public  voidsetEditableCell(int r, int c, boolean b)
    
public  voidsetEditableColumn(int c, boolean b)
    
public  voidsetEditableRow(int r, boolean b)
    
public  voidsetEditableView(boolean editableView)
     setEditableView - This class supports both editable and non-editable views. This method sets the current editable state of the view.
public  voidsetGrid(IGrid g)
    
public  voidsetSelectionCommand(String singleCommand, String doubleCommand)
     setSelectionCommand - set single/doubleclick command.
public  voidsetSelectionTarget(Target target)
     setSelectionTarget - set SINGLE/doubleclick target.
public  voidsetSourceTarget(Target t)
    
public  ViewsourceView(DragSession ds)
    


Constructor Detail
DragIGREView
public DragIGREView()(Code)
Constructs an empty DragIGRSView.



DragIGREView
public DragIGREView(Rect rect)(Code)
Constructs a DragIGRSView with bounds rect.
Parameters:
  rect - rectangle



DragIGREView
public DragIGREView(Rect rect, int dragSourcePolicy, int dragDestinationPolicy, Image dragImage, IGrid igrid)(Code)
Constructs a DragIGRSView with bounds rect.
Parameters:
  rect - rectangle
Parameters:
  dragSourcePolicy - drag source policy
Parameters:
  dragDestinationPolicy - drag destination policy
Parameters:
  dragImage - drag image
Parameters:
  IGrid - grid



DragIGREView
public DragIGREView(int x, int y, int width, int height)(Code)
Constructs an empty DragIGRSView with the given bounds.
Parameters:
  x - x
Parameters:
  y - y
Parameters:
  width - width
Parameters:
  height - height



DragIGREView
public DragIGREView(int x, int y, int width, int height, int dragSourcePolicy, int dragDestinationPolicy, Image dragImage, IGrid igrid)(Code)
Constructs an empty DragIGRSView with the given bounds.
Parameters:
  x - x
Parameters:
  y - y
Parameters:
  width - width
Parameters:
  height - height
Parameters:
  dragSourcePolicy - drag source policy
Parameters:
  dragDestinationPolicy - drag destination policy
Parameters:
  dragImage - drag image
Parameters:
  IGrid - grid




Method Detail
acceptsDrag
public DragDestination acceptsDrag(DragSession ds, int x, int y)(Code)



canResizeColumn
public boolean canResizeColumn(int c)(Code)
Can the column be resized? Sure, if it isn't the icon/0 column.
Parameters:
  c - column



columnWidth
public int columnWidth(int c)(Code)



dragDropped
public boolean dragDropped(DragSession ds)(Code)



dragEntered
public boolean dragEntered(DragSession ds)(Code)



dragExited
public void dragExited(DragSession ds)(Code)



dragMoved
public boolean dragMoved(DragSession ds)(Code)



dragWasAccepted
public void dragWasAccepted(DragSession ds)(Code)



dragWasRejected
public boolean dragWasRejected(DragSession ds)(Code)



editable
public boolean editable(int r, int c)(Code)



getDestinationTarget
public Target getDestinationTarget()(Code)



getDragImage
public Image getDragImage()(Code)



getDragPolicyContext
public DragPolicyContext getDragPolicyContext()(Code)



getEditableCell
public boolean getEditableCell(int r, int c)(Code)



getEditableColumn
public boolean getEditableColumn(int c)(Code)



getEditableRow
public boolean getEditableRow(int r)(Code)



getEditableView
public boolean getEditableView()(Code)
getEditableView - This class supports both editable and non-editable views. This method returns the current editable state of the view. (MCW)



getSourceTarget
public Target getSourceTarget()(Code)



mouseDown
public boolean mouseDown(MouseEvent e)(Code)



mouseDragged
public void mouseDragged(MouseEvent e)(Code)



onDoubleClickRow
public void onDoubleClickRow(int r)(Code)
onDoubleClickRow - Intercept double click on a row, to open property window. (MCW)



onPressCell
public void onPressCell(int r, int c)(Code)
onPressCell - Intercept single click on a row, to refresh propertyWindow if open. (MCW)



onPressRowLabel
public void onPressRowLabel(int r)(Code)
onPressRowLabel - Intercept mouse down on row and defer selection to mouse up if the row is already selected. Used to support multiple drag.



onReleaseRowLabel
public void onReleaseRowLabel(int r)(Code)
onReleaseRowLabel - Intercept mouse up on row and if the down was deferred do it now. Used to support multiple drag.



onSlideRowLabel
public void onSlideRowLabel(int r)(Code)
onSlideRowLabel - Intercept mouse drag and if the mouse down was deferred, skip the drag. Used to support multiple drag.



setColumnWidth
public void setColumnWidth(int c, int w)(Code)



setDestinationTarget
public void setDestinationTarget(Target t)(Code)



setDragDestinationPolicy
public void setDragDestinationPolicy(int dragDestinationPolicy) throws IllegalArgumentException(Code)



setDragImage
public void setDragImage(Image dragImage)(Code)



setDragSourcePolicy
public void setDragSourcePolicy(int dragSourcePolicy) throws IllegalArgumentException(Code)



setEditableCell
public void setEditableCell(int r, int c, boolean b)(Code)



setEditableColumn
public void setEditableColumn(int c, boolean b)(Code)



setEditableRow
public void setEditableRow(int r, boolean b)(Code)



setEditableView
public void setEditableView(boolean editableView)(Code)
setEditableView - This class supports both editable and non-editable views. This method sets the current editable state of the view. (MCW)



setGrid
public void setGrid(IGrid g)(Code)



setSelectionCommand
public void setSelectionCommand(String singleCommand, String doubleCommand)(Code)
setSelectionCommand - set single/doubleclick command. (mcw)



setSelectionTarget
public void setSelectionTarget(Target target)(Code)
setSelectionTarget - set SINGLE/doubleclick target. (mcw)



setSourceTarget
public void setSourceTarget(Target t)(Code)



sourceView
public View sourceView(DragSession ds)(Code)



Methods inherited from graphical.MouseOverGridView
public void drawPopup()(Code)(Java Doc)
public void hidePopup()(Code)(Java Doc)
public int iconColumn()(Code)(Java Doc)
public boolean mouseDown(MouseEvent mouseEvent)(Code)(Java Doc)
public void mouseMoved(MouseEvent mouseEvent)(Code)(Java Doc)
public Image normalIcon()(Code)(Java Doc)
public void onMouseOverCell(int cellRow, int cellColumn, int mouseRow, int mouseColumn)(Code)(Java Doc)
public void onPressCell(int r, int c)(Code)(Java Doc)
public void paintCellBackground(Graphics g, int r, int c, Rect rect)(Code)(Java Doc)
public void paintCellForeground(Graphics g, int r, int c, Rect rect)(Code)(Java Doc)
public void performCommand(String command, Object arg)(Code)(Java Doc)
public int popdownDelay()(Code)(Java Doc)
public boolean popupAlways()(Code)(Java Doc)
public Color popupBackgroundColor()(Code)(Java Doc)
public int popupDelay()(Code)(Java Doc)
public Font popupFont()(Code)(Java Doc)
public Color popupTextColor()(Code)(Java Doc)
public Image selectedIcon()(Code)(Java Doc)
public void setDragRow(int r)(Code)(Java Doc)
public void setIconColumn(int c)(Code)(Java Doc)
public void setNormalIcon(Image icon)(Code)(Java Doc)
public void setPopdownDelay(int delay)(Code)(Java Doc)
public void setPopupAlways(boolean flag)(Code)(Java Doc)
public void setPopupBackgroundColor(Color color)(Code)(Java Doc)
public void setPopupDelay(int delay)(Code)(Java Doc)
public void setPopupFont(Font font)(Code)(Java Doc)
public void setPopupTextColor(Color color)(Code)(Java Doc)
public void setSelectedIcon(Image icon)(Code)(Java Doc)
public void setUrlColor(Color color)(Code)(Java Doc)
public void setUrlColumn(int c)(Code)(Java Doc)
public void setUrlRow(int r)(Code)(Java Doc)
public void setUrlRowColumn(int r, int c)(Code)(Java Doc)
public Color textColor(int r, int c)(Code)(Java Doc)
public Color urlColor()(Code)(Java Doc)
public int urlColumn()(Code)(Java Doc)
public int urlRow()(Code)(Java Doc)

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