View Issue Details

IDProjectCategoryView StatusLast Update
0004173JEDI VCL00 JVCL Componentspublic2007-08-07 03:13
ReporterwestphalAssigned Toobones 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product VersionDaily / GIT 
Target VersionFixed in Version3.34 
Summary0004173: ListView and TJvListItems fonts trouble
Descriptionwhen not using vsReport in ViewStylesItemBrush, item are displayed in bold:

proposed solution:

constructor TJvListItem.CreateEnh(AOwner: TListItems; const Popup: TPopupMenu);
begin
  inherited Create(AOwner);

  FBold := False;
  FPopupMenu := Popup; // (Salvatore) Get it from the JvListView
  FFont := TFont.Create;
  FBrush := TBrush.Create;
  FGroupId := -1;
  FTileColumns := TIntegerList.Create;

  FTileColumns.OnChange := TileColumnsChange;
  if AOwner.Owner is TJvListView then
    FFont.Assign((AOwner.Owner as TJvListView).canvas.Font); // <----
end;
Additional InformationRelated, i think, to id 0003932
TagsNo tags attached.

Relationships

related to 0003932 resolvedobones JvListView: When the item brush is not used the font settings are ignored. 

Activities

obones

2007-08-07 03:13

administrator   ~0013617

Thanks, this is now in SVN

Issue History

Date Modified Username Field Change
2007-07-10 09:41 westphal New Issue
2007-07-11 01:23 obones Relationship added related to 0003932
2007-08-07 03:13 obones Status new => resolved
2007-08-07 03:13 obones Fixed in Version => Daily / SVN
2007-08-07 03:13 obones Resolution open => fixed
2007-08-07 03:13 obones Assigned To => obones
2007-08-07 03:13 obones Note Added: 0013617