框架总览(Platform Overview)
译:像其它大多流行的开发框架一样,Pivot也提供了一套较综合,全面的基础类库,组成了一套框架.这些类形成的基石之上你可以任意构筑复杂、成熟的程序.
Like most modern development platforms, Pivot provides a comprehensive set of foundation classes that together comprise a "framework". These classes form the building blocks upon which more complex and sophisticated applications can be built.
Pivot类库主要分为以下几个大类(Pivot classes are grouped into the following primary categories):
Core - 一组常用的非UI类库(A set of common, non-UI classes).
WTK - 用于用户界面开发的类库,包括....等等(Classes for user interface development, including windows, dialogs, buttons, lists, text input, layout, drag and drop, etc).
Web - 用于帮助实现并与远程数据通讯的类库(Classes to facilitate implementation of and communication with remote data services.)
Charts - 用于为Pivot增加交互性-制图,图表分析能力Classes for adding interactive charting capabilities to Pivot applications.
在每个分类中的类被打包在与其名字对应的类库或者一组类库中(The classes in each category are packaged and distributed in a corresponding library or set of libraries):
Core
pivot-core-[version].jar
org.apache.pivot.beans - 用于提升,简化与java bean类型的交互性的类(Classes that facilitate and simplify programmatic interaction with Java bean types).
org.apache.pivot.collections - 一组同时用于普通集合及UI组件的类/接口(A set of classes and interfaces that serve as generic collections as well as the data model for UI components).
org.apache.pivot.collections.adapter - 一组实现了集合接口/类的适配器帮助类(A set of collection implementations that are backed by java.util collections).
org.apache.pivot.collections.concurrent - 一组线程安全的集合实现类(A set of thread-safe collection implementations).
org.apache.pivot.collections.immutable - 一组只读的集合实现类(A set of read-only collection implementations).
org.apache.pivot.io - 与I/O操作相关的类(Classes related to input/output operations).
org.apache.pivot.json - 与JASON操作相关的类(Classes for working with JSON data).
org.apache.pivot.serialization - 用于数据序列化的类(Classes for use in data serialization).
org.apache.pivot.sql - 用于处理SQL的类(Classes for working with SQL data).
org.apache.pivot.text - 用于处理txt的类(Classes for working with text).
org.apache.pivot.util - 一些常用的工具类集合(A collection of common utility classes).
org.apache.pivot.util.concurrent - 用于简化后台任务执行的类(Classes to simplify the execution of background tasks).
org.apache.pivot.xml - 用于处理XML数据的类(Classes for working with XML data).
WTK
pivot-wtk-[version].jar
org.apache.pivot.wtk - 用于定义WTK用户界面组件结构和行为的类(Classes that define the structure and behavior of WTK user interface components).
org.apache.pivot.wtk.content - 用于呈现组件数据的类,例如:列表或者表格的行(Classes representing component data, such as list items or table rows).
org.apache.pivot.wtk.effects - 用于支持一些视觉效果的类(Classes supporting visual effects such as blurs, reflections, and drop shadows).
org.apache.pivot.wtk.effects.easing - 用于产生缓冲操作的类,以产生自然感观的缓冲效果.基于Robert Penner开发的easing equations(Classes representing "easing" operations for producing natural-looking transitions. Based on easing equations developed by Robert Penner).
org.apache.pivot.wtk.media - 用于处理影音资源(Classes representing media resources).
org.apache.pivot.wtk.skin - 非独立的皮肤/视图,抽象基础类(Theme-independent skins and abstract base classes for theme-specific skins).
org.apache.pivot.wtk.text - 文本对象模型类(Text object model classes).
org.apache.pivot.wtk.text.validation - 用户输入信息验证类(Classes for validating user-entered text).
pivot-wtk-terra-[version].jar
org.apache.pivot.wtk.skin.terra - 定义用于默认'Terra'主题的皮肤/视图类(Defines skin classes for the default "Terra" theme).
Web
pivot-web-[version].jar
org.apache.pivot.web - 用于与基于HTTP协议的web服务进行通讯的类(Classes for communicating with HTTP-based web services).
pivot-web-server-[version].jar
org.apache.pivot.web.server - 用于帮助访问及开发网页查询服务类(Classes to facilitate access to and development of web query services).
Charts
pivot-charts-[version].jar
org.apache.pivot.charts - 一些用于制表,图表操作应用的类(A collection of components for use in charting applications).
org.apache.pivot.charts.content - 用于处理制表数据(Classes representing chart data).
大多Pivot的类放在WTK库中(Most of Pivot's classes live in the WTK libraries).
架构(Architecture)
译:WTK的设计是基于当前的用户界面设计工具包广泛采用的 MVC:model-view-controller 结构.在WTK中, model层数据由定义在Core包里的一些常用集合接口产生(通常为 org.apache.pivot.collections.List and org.apache.pivot.collections.Map). 下一节将讨论到的组件代表Controller层,是介于model数据层与组件中'皮肤/视图'层,即MVC中的view层之间的中间层.
The design of WTK is based on the model-view-controller architecture employed by many current user interface toolkits. In WTK, model data is represented by the generic collection interfaces defined in the Core library (most commonly org.apache.pivot.collections.List and org.apache.pivot.collections.Map). The component classes discussed in the next section represent the controller, which acts as the intermediary between the model data and the component's "skin", the MVC view.
译:皮肤层(或叫视图层)定义了组件的实际呈现效果, as a component has no inherent visual representation. 皮肤/视图层还定义了这类组件如何去响应用户输入操作,包括键盘和鼠标事件.组件可能有多个皮肤/视图(尽管只有一个皮肤/视图能够安装在任一组件实例上). 但是,现存的皮肤/视图对大多数开发者来说都是透明的, 因为皮肤/视图层并不公布任何公共的API. 所有与用户的交互都发生于视图组件中.
The skin defines the actual appearance of the component, as a component has no inherent visual representation. The skin also defines how the component responds to user input including keyboard and mouse events. Components may have multiple skins (though only a single skin can be installed on any component instance). However, the existence of the skin should be effectively transparent to most developers, as skins do not expose any public API. All interaction with the skin takes place via the skin's component.
译:视图层的组件可以添加"样式",风格类似于CSS中的样式. 通过这些组件,一个视图组件可以添加一组样式属性,例如"color" 和 "font" 等,用户可以通过设置这些属性来达到一个定制的程序外观,而无须再写一个新的视图. 默认的,所有的组件都使用由Terra感观定义的视图类.在这个包中的视图组件为我们在设置样式属性方面提供了足够的可伸缩性. 几乎Terra视图组件的所有外观,每个细节都可以通过样式属性来改变. Terra同时也提供了可由用户定制的颜色主题,以使设计人员可以很容易的为整个程序替换色调.
Skins can be "styled" in a manner similar to CSS. Through the component, a skin may expose a set of style properties such as "color" and "font" that a user can change to achieve a custom application appearance without having to write a new skin. By default, all components use the skin classes defined by the Terra look and feel. The skins in this package provide considerable flexibility in setting style properties. Almost every aspect of a Terra skin's appearance can be varied via a style property. Terra also provides customizable "color schemes" that allow a designer to easily replace the color palette for an entire application.
译:一些组件的外观甚至可通过使用'renderers'来做深层次的定制, 通常用于一些 "轻量级组件" 来绘制一些组件. 例如,WTK按钮允许调用者定义一个renderer来绘制一个按钮的数据,以及列表视图支持用renderer来绘制列表元素.Renderers可以对大型集合数据直到有效替换,因为可以对内容进行类似橡皮图章的操作,而不是为每一个数据元素创建一个实际的元素实例,因为那样会耗费大量的内存和CPU时间.
The appearance of some components can be further customized using "renderers", which are essentially "lightweight components" used to paint the content of the actual component. For example, WTK buttons allow a caller to define the renderer used to paint the button's data, and list views support customized painting of list items via a renderer. Renderers allow large collections of data to be presented very efficiently, as the renderer is used to "rubber stamp" the content, instead of creating an actual component instance for each data element, which would require more memory and processor time.
译:另外,使用renderers时, 组件内容将是一样的而不考虑正在应用的视图.这就确保了所呈现信息的一致性,无论你更新了视图或者发布了新的视图.
Additionally, using renderers, component content is painted the same regardless of the skin that is currently applied. This allows applications to present information consistently as skins are updated or new skins are released.
译:Skins和renderers使用的是JAVA2D的API来绘制它们自身的组件. 关于JAVA 2D请参考: Java2D教程
Skins and renderers use the Java2D API to draw themselves. See the Java2D Tutorial for more information on Java2D.
未完,待续...
官方网址:
http://pivot.apache.org/tutorials/platform-overview.html
- 大小: 330.9 KB
- 大小: 113.1 KB
分享到:
相关推荐
Apache Pivot是一个开源的用户界面开发框架,它允许开发者创建富客户端应用,支持多种平台。Terra是Pivot中的一款皮肤,提供了现代化的界面设计。这个压缩包可能是对Terra皮肤的更新或增强版。 描述中提到的"bar...
《Excel Power Pivot数据建模分析(进阶篇)》是一份深入探讨Excel数据分析技术的资料集,主要聚焦在Power Pivot工具的应用,旨在帮助用户提升在数据处理和分析方面的专业技能。该资料集涵盖了一系列关键知识点,...
在Oracle数据库中,行转列(也称为数据透视)和列转行(unpivot)是SQL查询中用于数据转换的高级功能。...通过实际的使用示例和语法说明,本文旨在为读者提供一个全面的Oracle行转列之PIVOT功能的指南。
**PowerPivot 入门手册** PowerPivot是一款由Microsoft开发的强大数据分析工具,它整合在Excel和SharePoint中,为用户提供了高级的数据分析和建模功能。作为一个入门手册,本书将帮助初学者理解和掌握PowerPivot的...
Pivot,通常指的是数据透视表或数据透视图,是一种强大的数据分析工具,用于汇总、组织、分析和展示大量数据。在IT行业中,特别是数据分析和数据可视化领域,Pivot扮演着至关重要的角色。它允许用户通过拖放操作来...
"pivot_130_beta2_full_thumb3hr_pivot_php_" 这个标题提到了一个软件版本,"pivot 130 beta2 full version",这表明我们在讨论的是 Pivot 软件的第 130 版本的 Beta 2(测试版2)。"full version" 指的是这个版本是...
在ASP.NET框架下,我们可以利用多种技术来实现Pivot表的功能,以便在Web应用中展示数据的聚合和转换结果。本篇文章将深入探讨如何在ASP.NET中实现Pivot表,以及它在行汇总统计和行列转换中的应用。 首先,ASP.NET是...
SQL Server 关于 Pivot 详解 在本文中,我们将详细介绍 SQL Server 中的 Pivot ...3. 使用 Pivot 语句将成绩表转化为透视表,显示每个学生的总成绩。 通过这些实验题目,你可以更好地理解和掌握 Pivot 语句的使用。
PowerPivot for Excel 是微软公司推出的一款增强型数据模型工具,它与Excel紧密集成,使得用户能够从各种数据源中获取数据、创建数据分析模型,并在Excel内部进行数据探索和报告。PowerPivot扩展了传统Excel的功能,...
在SQL Server 2005中,PIVOT是一个重要的新特性,它使得数据的行列转换更为便捷。在SQL Server 2000及其以前版本,如果需要将数据的某列值转换为行对应的列,通常需要使用复杂的CASE语句配合聚合函数(如SUM)来实现...
Easily set your pivot points inside Unity. Unlike the other pivot editor solutions on the asset store you can set the pivot point using scene handles, snap the pivot to mesh vertices. Features: • ...
标题《PowerPivot的数据分析》所涵盖的知识点主要围绕Microsoft Excel 2010中的PowerPivot工具,这是微软为数据分析师提供的一个强大的数据建模工具,用以增强Excel的数据分析功能。从内容概览可以看出,本书全面地...
在本文中,我们将深入探讨高斯列主元消去法(Gauss Pivot)以及如何在MATLAB环境中实现这一算法来解决线性方程组。高斯列主元消去法是一种数值线性代数方法,它通过一系列行变换将系数矩阵转化为上三角形或阶梯形...
高斯迭代解方程 数值分析 西安交通大学 作业
"pivot4.1.13" 是一个专用于制作Flash火柴人动画的软件版本,它的出现为动画创作者提供了一个简单易用的平台,让创作火柴人动画变得轻松快捷。火柴人动画,以其简洁的线条和灵活的动作,深受众多动画爱好者的喜爱,...
"pivot火柴人制作工具"是一款专为动画爱好者设计的软件,主要用于创建火柴人风格的动态动画。这款工具以其简单易用的特性,尤其适合初学者和那些想要快速制作简单动画的人。与传统的动画软件如Adobe Flash相比,...
创建数据关系是PowerPivot的核心功能之一。通过在不同数据表之间建立联系,用户可以实现数据的交叉引用和分析,这是构建复杂数据模型的关键步骤。例如,将销售数据与时间、产品类型和地理位置等维度数据关联起来,有...
pivot4,最新的pivot,是一款简单易上手的火柴人动画软件,相对以往的pivot3来说,增加了许多新的功能
在诸多选择中,“pivot神通汉化版”无疑是突出的一个,它专门致力于火柴人动画的创作,并以其强大的功能和易用性,在动画爱好者中迅速传播开来。 “pivot神通汉化版”是一套功能完备的火柴人动画创作工具,其便利的...
《EXT-D3与Pivot-D3组件深度解析》 EXT-D3与Pivot-D3是JavaScript库中的两个重要组件,它们在数据可视化和数据分析领域扮演着关键角色。EXT-D3结合了EXT JS的用户界面框架与D3.js的数据操作和可视化能力,而Pivot-...