Virtual Treeview - Paint cycles and stages
The most complex process in Virtual Treeview is without doubts its painting.
Read here what stages Virtual Treeview enters during paint and how you can customize this process.
Similar to the system tree view Virtual Treeview defines so called paint cycles.
A paint cycle is one run of the paint code which draws a part or the entire window.
In Virtual Treeview this task is accomplished by the method PaintTree
which centralizes the paint management into one place and is called
for various tasks like window painting, drag image painting, WM_PRINTCLIENT handling and so on.
This paint method is able to draw the entire tree regardless of its window to the target canvas
and optimizes painting by considering the update/clipping rectangle,
which is passed in via the Window parameter (see also PaintTree).
Usually the following paint stages are executed during a paint cycle:
--> (OnBeforePaint)
--> (OnBeforeItemPaint)
--> (OnBeforeItemErase)
--> (OnAfterItemErase)
--> (OnBeforeCellPaint)
--> (OnPaintText)
--> (OnAfterCellPaint)
--> (OnAfterItemPaint)
--> (OnAfterPaint)
The cell and node events are of course not executed if there is no node to be drawn.
A special flag (tsPainting) in TreeStates indicates when a paint cycle is in progress.
Using this flag an application can for instance determine whether a node is initialized
because it is about to be drawn or for other reasons.
Every of the stages above is accompanied by a specific event
which allows the application to customize a particular aspect in the painting.
The following list discusses tasks which can be done during the various stages.
before paint
This stage is entered only once per paint cycle.
After setting the vsPainting state it is the very first instruction in a cycle.
This stage is typically used to do any further setup of the target canvas of the paint operation
(e.g. the window or a printer canvas), like changing the mapping mode or setting another clipping region.
Since the passed canvas is not directly used to do the actual painting setting its font or colors has no effect.
Basically only properties which affect blitting a bitmap to the target canvas have an effect at all.
before item paint
This stage is entered once per node to be drawn and allows directly
to control the path which is the taken to paint the node.
In the event for this stage you can tell the tree whether you want
to paint the node entirely on your own or let the tree paint it.
As this happens on a per node basis it is the perfect place
to maintain a special layout without doing everything in the paint cycle.
Note:
setting the CustomDraw parameter in the event to True will skip the node entirely,
without painting anything of the standard things like tree lines, button,
images or erasing the background.
Hence to display any useful information for the node do it in the OnBeforeItemPaint event.
This is the first stage which gets the double buffer canvas which is used to draw a node
so if you want to set special properties this is a good opportunity.
Keep in mind though that in particular the colors are
set by the tree according to specific rules (focus, selection etc.).
before item erase
This stage is also entered only once per node and allows to customize the node's background.
This stage and its associated event is usually used to give the node a different background color
or erase the background with a special pattern which is different to what the tree would draw.
after item erase
This stage is also entered only once per node.
This stage and its associated event is used
to do additional drawings after the background has been erased.
before cell paint
This paint stage is the first of the cell specific stages used to customize a single cell of a node and
is called several times per node, depending on the number of columns.
If no columns are used then it is called once.
While internally a full setup for this node happened
before the stage is entered (if it is the first run) the only noticeable effect
for the application which has changed compared to after item erase is that
the painting is limited to the current column.
There are still no lines or images painted yet.
on paint text
After default stuff like lines and images has been painted the paint node/paint text stage is entered.
Because Virtual Treeview does not know how to draw the content of a node
it delegates this drawing to a virtual method called DoPaintNode.
Descendants override this method and do whatever is appropriate.
For instance TVirtualDrawTree simply triggers its OnDrawNode event
while the TVirtualStringTree prepares the target canvas and
allows the application to override some or all canvas settings (font etc.)
by triggering OnPaintText.
After this event returned the text/caption of the node is drawn.
Changed font properties are taken into account when aligning and painting the text.
Note: The string tree triggers the OnGetText event two times
if toShowStaticText is enabled in the TVirtualStringTree.TreeOptions.StringOptions property.
Once for the normal text and once for the static text.
Use the event's parameter to find out what is required.
after cell paint
This stage is entered immediately after the cell is drawn.
This stage can be used to add whatever you like to a single cell
after everything has been painted there and is triggered once per column.
after item paint
This stage is entered after all cells of an item are drawn.
The after item paint stage is used to add node specific stuff like frames
and the like which concern all columns of that node and is called once per node.
after paint
The after paint stage is the last stage in the long chain of paint stages
and is entered after when paint cycle is complete.
In this stage everything of the tree (related to the current update area) has been drawn,
including the selection rectangle.
Virtual Treeview - Paint cycles and stages的更多相关文章
- Virtual Treeview 安装以及入门
Virtual Treeview是一套Delphi下优秀的VCL控件,代码质量高,使用灵活.功能强大.性能非常好,可以用于表达Treeview和表格类数据.它的代码现在托管在google code上. ...
- Hypervisor, computer system, and virtual processor scheduling method
A hypervisor calculates the total number of processor cycles (the number of processor cycles of one ...
- Winform组合ComboBox和TreeView实现ComboTree
最近做Winform项目需要用到类似ComboBox的TreeView控件. 虽然各种第三方控件很多,但是存在各种版本不兼容问题.所以自己写了个简单的ComboTreeView控件. 下图是实现效果: ...
- 什么是virtual string tree?
Virtual stringtree(以后简称VST)是一个提供源码的免费的第三方插件,支持DELPHI和C++builder,可在http://www.soft-gems.net/下载到最新的版本. ...
- 浏览器内部工作原理--作者:Tali Garsiel
本篇内容为转载,主要用于个人学习使用,作者:Tali Garsiel 一.介绍 浏览器可以被认为是使用最广泛的软件,本文将介绍浏览器的工作原理,我们将看到,从你在地址栏输入google.com到你看到 ...
- C/C++技术常用网站
软件下载网站[visual studio 2005编译器] http://www.xdowns.com/ debug调试大牛 http://blogs.msdn.com/oldnewthing/ ht ...
- How browsers work
这几天翻译一篇旧文 How browsers work ( 以现代浏览器chrome.火狐.safari 为对象来分析),这篇文章网上有其他的翻译版本,自己再翻译一遍主要是练习阅读英文文章,而且自己翻 ...
- C#接口知识大全收藏
第一节 接口慨述 接口(interface)用来定义一种程序的协定.实现接口的类或者结构要与接口的定义严格一致.有了这个协定,就可以抛开编程语言的限制(理论上).接口可以从多个基接口继承,而类或结构可 ...
- QTableView使用自定义委托(QItemDelegate)
需要在表格中绘制流程图,主要有箭头,方向,颜色,字符串,由于QTableView没有可用的绘制函数,所以需要自己去定义. 委托(delegate)继承QItemDelegate,模型(model)继承 ...
随机推荐
- angular中使用AMEXIO
1.用NPM添加依赖到项目中,amexio需要先添加以下四个依赖到项目 npm install jquery@3.2.1 --save npm install bootstrap@4.0.0-alp ...
- 11.python3标准库--使用进程、线程和协程提供并发性
''' python提供了一些复杂的工具用于管理使用进程和线程的并发操作. 通过应用这些计数,使用这些模块并发地运行作业的各个部分,即便是一些相当简单的程序也可以更快的运行 subprocess提供了 ...
- DroidParts 中文系列教程(基于官方教程)
DroidParts中文系列教程(基于官方教程) (一)DroidParts框架概况 2014年4月18日星期五 11:36 他是一个精心构造的安卓框架,包括下面这些基本功能 DI依赖注入,可以注入V ...
- you have to first modify the default Eclipse configuration to avoid XML cosmetic errors:
Configure XML Validation to Avoid Cosmetic Errors Navigate to: Window->Preferences->XML->XM ...
- [MySQL] specified key was too long max key length is 767bytes
https://blog.csdn.net/u012099869/article/details/53815084/
- 【58沈剑架构系列】DB主从一致性架构优化4种方法
需求缘起 大部分互联网的业务都是“读多写少”的场景,数据库层面,读性能往往成为瓶颈.如下图:业界通常采用“一主多从,读写分离,冗余多个读库”的数据库架构来提升数据库的读性能. 这种架构的一个潜在缺点是 ...
- 05 java 基础:运算符、程序结构
赋值运算符 : = 三元运算符 : ? 算术运算符 : +.- .*./.% 自增自减运算符: ++.-- 关系运算符:>.<.==.>=.<=.!= 逻辑运算符 :& ...
- loadrunner场景执行出现:Failed to Initialize. Reason: TimeOut
问题1: Failed to Initialize. Reason: TimeOut LoadRunner的异常原因(Failed to Initialize. Reason: TimeOut) ...
- merc_timer_handle_t函数的使用
merc_timer_handle_t,是定义一个时间类型,这个时间类型可以用来接收2个函数之间的wasted time 但是在项目中出现这个情况: 因为在脚本中添加了该函数:
- bzoj 1108
思路:水题, 将所有点按x轴对称反转,就变成了两堆点的坐标和的差.. #include<bits/stdc++.h> #define LL long long #define fi fir ...