C# Class ImageGlass.ImageListView.ImageListViewRenderers.XPRenderer

Mimics Windows XP appearance. This renderer cannot be themed.
Inheritance: ImageListView.ImageListViewRenderer
Show file Open project: d2phap/ImageGlass

Public Methods

Method Description
DrawBackground ( Graphics g, Rectangle bounds ) : void

Draws the background of the control.

DrawColumnExtender ( Graphics g, Rectangle bounds ) : void

Draws the extender after the last column.

DrawColumnHeader ( Graphics g, ImageListView column, ColumnState state, Rectangle bounds ) : void

Draws the column headers.

DrawGalleryImage ( Graphics g, ImageGlass.ImageListView.ImageListViewItem item, Image image, Rectangle bounds ) : void

Draws the large preview image of the focused item in Gallery mode.

DrawGroupHeader ( Graphics g, string name, Rectangle bounds ) : void

Draws the group headers.

DrawInsertionCaret ( Graphics g, Rectangle bounds ) : void

Draws the insertion caret for drag and drop operations.

DrawItem ( System g, ImageGlass.ImageListView.ImageListViewItem item, ItemState state, System bounds ) : void

Draws the specified item on the given graphics.

DrawPane ( Graphics g, ImageGlass.ImageListView.ImageListViewItem item, Image image, Rectangle bounds ) : void

Draws the left pane in Pane view mode.

DrawSelectionRectangle ( Graphics g, Rectangle selection ) : void

Draws the selection rectangle.

MeasureItem ( ImageGlass view ) : Size

Returns item size for the given view mode.

Method Details

DrawBackground() public method

Draws the background of the control.
public DrawBackground ( Graphics g, Rectangle bounds ) : void
g System.Drawing.Graphics The System.Drawing.Graphics to draw on.
bounds System.Drawing.Rectangle The client coordinates of the item area.
return void

DrawColumnExtender() public method

Draws the extender after the last column.
public DrawColumnExtender ( Graphics g, Rectangle bounds ) : void
g System.Drawing.Graphics The System.Drawing.Graphics to draw on.
bounds System.Drawing.Rectangle The bounding rectangle of extender column in client coordinates.
return void

DrawColumnHeader() public method

Draws the column headers.
public DrawColumnHeader ( Graphics g, ImageListView column, ColumnState state, Rectangle bounds ) : void
g System.Drawing.Graphics The System.Drawing.Graphics to draw on.
column ImageListView The ImageListViewColumnHeader to draw.
state ColumnState The current view state of column.
bounds System.Drawing.Rectangle The bounding rectangle of column in client coordinates.
return void

DrawGalleryImage() public method

Draws the large preview image of the focused item in Gallery mode.
public DrawGalleryImage ( Graphics g, ImageGlass.ImageListView.ImageListViewItem item, Image image, Rectangle bounds ) : void
g System.Drawing.Graphics The System.Drawing.Graphics to draw on.
item ImageGlass.ImageListView.ImageListViewItem The ImageListViewItem to draw.
image Image The image to draw.
bounds System.Drawing.Rectangle The bounding rectangle of the preview area.
return void

DrawGroupHeader() public method

Draws the group headers.
public DrawGroupHeader ( Graphics g, string name, Rectangle bounds ) : void
g System.Drawing.Graphics The System.Drawing.Graphics to draw on.
name string The name of the group to draw.
bounds System.Drawing.Rectangle The bounding rectangle of group in client coordinates.
return void

DrawInsertionCaret() public method

Draws the insertion caret for drag and drop operations.
public DrawInsertionCaret ( Graphics g, Rectangle bounds ) : void
g System.Drawing.Graphics The System.Drawing.Graphics to draw on.
bounds System.Drawing.Rectangle The bounding rectangle of the insertion caret.
return void

DrawItem() public method

Draws the specified item on the given graphics.
public DrawItem ( System g, ImageGlass.ImageListView.ImageListViewItem item, ItemState state, System bounds ) : void
g System The System.Drawing.Graphics to draw on.
item ImageGlass.ImageListView.ImageListViewItem The ImageListViewItem to draw.
state ItemState The current view state of item.
bounds System The bounding rectangle of item in client coordinates.
return void

DrawPane() public method

Draws the left pane in Pane view mode.
public DrawPane ( Graphics g, ImageGlass.ImageListView.ImageListViewItem item, Image image, Rectangle bounds ) : void
g System.Drawing.Graphics The System.Drawing.Graphics to draw on.
item ImageGlass.ImageListView.ImageListViewItem The ImageListViewItem to draw.
image Image The image to draw.
bounds System.Drawing.Rectangle The bounding rectangle of the pane.
return void

DrawSelectionRectangle() public method

Draws the selection rectangle.
public DrawSelectionRectangle ( Graphics g, Rectangle selection ) : void
g System.Drawing.Graphics The System.Drawing.Graphics to draw on.
selection System.Drawing.Rectangle The client coordinates of the selection rectangle.
return void

MeasureItem() public method

Returns item size for the given view mode.
public MeasureItem ( ImageGlass view ) : Size
view ImageGlass The view mode for which the item measurement should be made.
return System.Drawing.Size