path
stringlengths 5
312
| repo_name
stringlengths 5
116
| content
stringlengths 2
1.04M
|
---|---|---|
ui/css/treeherder-pinboard.css | glenn124f/treeherder | .pinboard-open-btn {
margin-top: -1px;
background-color: #e6eef5 !important;
color: #252c33 !important;
}
#pinboard-panel {
background-color: #e6eef5;
color: #252c33;
flex: auto;
-webkit-flex: auto;
display: flex;
display: -webkit-flex;
flex-flow: row;
-webkit-flex-flow: row;
}
#pinboard-panel .header {
padding-left: 2px;
height: 18px;
}
/*
* Pinned jobs container
*/
#pinned-job-list {
position: relative;
flex: auto;
-webkit-flex: auto;
margin: 7px 7px 10px;
}
#pinned-job-list .content {
position: absolute;
width: 100%;
height: 100%;
padding: 2px;
overflow: auto;
background-color: #FFFFFF;
}
.pinned-job {
margin-bottom: 2px;
padding: 1px 2px;
width: 3.5em;
}
.pinned-job-close-btn {
padding: 1px 2px 1px 2px;
border-color: #fafafa #fafafa #fafafa transparent;
}
.pinboard-preload-txt {
color: #bfbfbf;
}
/*
* Related bugs container
*/
#pinboard-related-bugs {
position: relative;
width: 200px;
flex: none;
-webkit-flex: none;
margin: 7px 7px 10px;
}
#pinboard-related-bugs .content {
position: absolute;
height: 100%;
width: 200px;
padding: 2px;
overflow-x: hidden;
color: black;
background-color: #FFFFFF;
}
.add-related-bugs-icon {
margin-right: 2px;
font-size: 17px;
color: #98c3da;
}
.add-related-bugs-form {
position: relative;
top: -18px;
left: 20px;
}
.add-related-bugs-input {
width: 12em;
}
.pinboard-related-bug-preload-txt {
vertical-align: top;
}
.pinboard-related-bugs-btn {
margin-bottom: -1px;
}
.pinboard-related-bugs-btn:hover > .related-bugs-link {
color: #2a6496;
text-decoration: underline;
}
/* Spin button suppression on chrome (bug 1045611) */
#pinboard-related-bugs form input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Spin button suppression on firefox (bug 1045611) */
#pinboard-related-bugs form input[type=number] {
-moz-appearance: textfield;
}
/*
* Classification container
*/
#pinboard-classification {
flex: none;
-webkit-flex: none;
width: 185px;
padding: 5px;
}
.pinboard-label {
color: #777;
}
#pinboard-classification-content {
color: black;
}
#pinboard-classification select {
width: 177px;
}
.add-classification-input {
width: 177px;
height: 20px;
padding: 0 0 0 3px;
border-radius: 0;
font-size: 12px;
}
/*
* Save container and dropdown menu controls
*/
#pinboard-controls {
flex: none;
-webkit-flex: none;
height: 43px;
margin: 20px;
}
#pinboard-controls .dropdown-menu {
z-index: 2000;
}
#pinboard-controls .save-btn-dropdown {
margin-left: -1px;
padding-top: 1px;
display: inline;
width: 24px;
float: right;
}
#pinboard-controls .save-btn {
float: left;
display: inline;
width: 70px;
}
.save-btn {
width: 81px;
}
.save-btn-dropdown {
width: 18px;
}
.btn-group + .btn + .save-btn-dropdown {
margin-left: -5px;
}
|
app/procedures/create.html | justmiles/smokejumper |
<form class="form-horizontal well" ng-submit="create(procedure)" >
<fieldset>
<legend>Create Procedure</legend>
<div class="form-group">
<label for="inputMessage" class="col-lg-2 control-label">Message</label>
<div class="col-lg-10">
<input type="text" class="form-control" id="inputMessage" placeholder="message" ng-model="procedure.message" >
</div>
</div>
<div class="form-group">
<label for="inputSource" class="col-lg-2 control-label">Source</label>
<div class="col-lg-10">
<input type="text" class="form-control" id="inputSource" placeholder="source" ng-model="procedure.source" >
</div>
</div>
<div class="form-group">
<label for="inputType" class="col-lg-2 control-label">Type</label>
<div class="col-lg-10">
<select id="inputType" class="form-control" placeholder="type" ng-model="procedure.type">
<option>Crown Procedure</option>
<option>Surface Procedure</option>
<option>Ground Procedure</option>
</select>
</div>
</div>
<div class="form-group">
<label for="inputEnvironment" class="col-lg-2 control-label">Environment</label>
<div class="col-lg-10">
<select id="inputEnvironment" class="form-control" placeholder="environment" ng-model="procedure.environment">
<option>Production</option>
<option>Staging</option>
<option>Development</option>
</select>
</div>
</div>
<div class="form-group">
<label for="inputNetwork" class="col-lg-2 control-label">Network</label>
<div class="col-lg-10">
<input type="text" class="form-control" id="inputNetwork" placeholder="network" ng-model="procedure.network" >
</div>
</div>
<div class="form-group">
<label for="inputDevice" class="col-lg-2 control-label">Device</label>
<div class="col-lg-10">
<input type="text" class="form-control" id="inputDevice" placeholder="device" ng-model="procedure.device" >
</div>
</div>
<div class="form-group">
<label for="inputApplication" class="col-lg-2 control-label">Application</label>
<div class="col-lg-10">
<input type="text" class="form-control" id="inputApplication" placeholder="application" ng-model="procedure.application" >
</div>
</div>
<div class="form-group">
<label for="inputStatus" class="col-lg-2 control-label">Status</label>
<div class="col-lg-10">
<select id="inputStatus" class="form-control" placeholder="status" ng-model="procedure.status">
<option>Draft</option>
<option>Active</option>
<option>Inactive</option>
</select>
</div>
</div>
<div class="form-group">
<label for="inputDescription" class="col-lg-2 control-label">Description</label>
<div class="col-lg-10">
<div text-angular ng-model="procedure.description" ></div>
</div>
</div>
<div class="form-group">
<label for="inputSteps" class="col-lg-2 control-label">Detailed Steps</label>
<div class="col-lg-10">
<div text-angular ng-model="procedure.steps" ></div>
</div>
</div>
<div class="form-group">
<div class="col-lg-10 col-lg-offset-2">
<a href="#/procedures" type="reset" class="btn btn-sm btn-default">Cancel</a>
<button type="submit" class="btn btn-sm btn-primary">Save</button>
</div>
</div>
</fieldset>
</form>
|
erpnext/docs/current/api/crm/index.html | susuchina/ERPNEXT | <!-- title: crm -->
<div class="dev-header">
<a class="btn btn-default btn-sm" disabled style="margin-bottom: 10px;">
Version 6.7.7</a>
<a class="btn btn-default btn-sm" href="https://github.com/frappe/erpnext/tree/develop/crm"
target="_blank" style="margin-left: 10px; margin-bottom: 10px;"><i class="octicon octicon-mark-github"></i> Source</a>
</div>
<h3>Package Contents</h3>
{index}
<!-- autodoc --> |
doc/html/superdesk.person.api.html | superdesk/Live-Blog |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>api Package — ally-py 1.0b1 documentation</title>
<link rel="stylesheet" href="_static/default.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
VERSION: '1.0b1',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<link rel="top" title="ally-py 1.0b1 documentation" href="index.html" />
<link rel="up" title="person Package" href="superdesk.person.html" />
<link rel="next" title="impl Package" href="superdesk.person.impl.html" />
<link rel="prev" title="person Package" href="superdesk.person.html" />
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="superdesk.person.impl.html" title="impl Package"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="superdesk.person.html" title="person Package"
accesskey="P">previous</a> |</li>
<li><a href="index.html">ally-py 1.0b1 documentation</a> »</li>
<li><a href="superdesk.html" >superdesk Package</a> »</li>
<li><a href="superdesk.person.html" accesskey="U">person Package</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="api-package">
<h1>api Package<a class="headerlink" href="#api-package" title="Permalink to this headline">¶</a></h1>
<div class="section" id="person-module">
<h2><tt class="xref py py-mod docutils literal"><span class="pre">person</span></tt> Module<a class="headerlink" href="#person-module" title="Permalink to this headline">¶</a></h2>
</div>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h3><a href="index.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">api Package</a><ul>
<li><a class="reference internal" href="#person-module"><tt class="docutils literal"><span class="pre">person</span></tt> Module</a></li>
</ul>
</li>
</ul>
<h4>Previous topic</h4>
<p class="topless"><a href="superdesk.person.html"
title="previous chapter">person Package</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="superdesk.person.impl.html"
title="next chapter">impl Package</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="_sources/superdesk.person.api.txt"
rel="nofollow">Show Source</a></li>
</ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="superdesk.person.impl.html" title="impl Package"
>next</a> |</li>
<li class="right" >
<a href="superdesk.person.html" title="person Package"
>previous</a> |</li>
<li><a href="index.html">ally-py 1.0b1 documentation</a> »</li>
<li><a href="superdesk.html" >superdesk Package</a> »</li>
<li><a href="superdesk.person.html" >person Package</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright 2012, Gabriel Nistor.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html> |
public/stylesheets/style.css | plugorgau/eventstreamr-frontend | body {
padding: 50px;
}
.room-actions {
margin-right: -14px;
}
.room-actions .btn {
margin: -17px 0 1px;
padding: 5px 4px;
font-size:10px;
}
|
plugins/tpv_informatica/chosen.css | CorporacioDigital/iMovers | /*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com
Version 1.2.0
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2014 Harvest http://getharvest.com
MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
/* @group Base */
.chosen-container {
position: relative;
display: inline-block;
vertical-align: middle;
/*font-size: 13px;*/
zoom: 1;
*display: inline;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.chosen-container * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.chosen-container .chosen-drop {
position: absolute;
top: 100%;
left: -9999px;
z-index: 1010;
width: 100%;
border: 1px solid #aaa;
border-top: 0;
background: #fff;
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}
.chosen-container.chosen-with-drop .chosen-drop {
left: 0;
}
.chosen-container a {
cursor: pointer;
}
/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
position: relative;
display: block;
overflow: hidden;
padding: 0 0 0 8px;
height: 25px;
border: 1px solid #aaa;
border-radius: 5px;
background-color: #fff;
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
background: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
background: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
background: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
background: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
background-clip: padding-box;
box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);
color: #444;
text-decoration: none;
white-space: nowrap;
line-height: 24px;
}
.chosen-container-single .chosen-default {
color: #999;
}
.chosen-container-single .chosen-single span {
display: block;
overflow: hidden;
margin-right: 26px;
text-overflow: ellipsis;
white-space: nowrap;
}
.chosen-container-single .chosen-single-with-deselect span {
margin-right: 38px;
}
.chosen-container-single .chosen-single abbr {
position: absolute;
top: 6px;
right: 26px;
display: block;
width: 12px;
height: 12px;
background: url('chosen-sprite.png') -42px 1px no-repeat;
font-size: 1px;
}
.chosen-container-single .chosen-single abbr:hover {
background-position: -42px -10px;
}
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
background-position: -42px -10px;
}
.chosen-container-single .chosen-single div {
position: absolute;
top: 0;
right: 0;
display: block;
width: 18px;
height: 100%;
}
.chosen-container-single .chosen-single div b {
display: block;
width: 100%;
height: 100%;
background: url('chosen-sprite.png') no-repeat 0px 2px;
}
.chosen-container-single .chosen-search {
position: relative;
z-index: 1010;
margin: 0;
padding: 3px 4px;
white-space: nowrap;
}
.chosen-container-single .chosen-search input[type="text"] {
margin: 1px 0;
padding: 4px 20px 4px 5px;
width: 100%;
height: auto;
outline: 0;
border: 1px solid #aaa;
background: white url('chosen-sprite.png') no-repeat 100% -20px;
background: url('chosen-sprite.png') no-repeat 100% -20px;
font-size: 1em;
font-family: sans-serif;
line-height: normal;
border-radius: 0;
}
.chosen-container-single .chosen-drop {
margin-top: -1px;
border-radius: 0 0 4px 4px;
background-clip: padding-box;
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
position: absolute;
left: -9999px;
}
/* @end */
/* @group Results */
.chosen-container .chosen-results {
color: #444;
position: relative;
overflow-x: hidden;
overflow-y: auto;
margin: 0 4px 4px 0;
padding: 0 0 0 4px;
max-height: 240px;
-webkit-overflow-scrolling: touch;
}
.chosen-container .chosen-results li {
display: none;
margin: 0;
padding: 5px 6px;
list-style: none;
line-height: 15px;
word-wrap: break-word;
-webkit-touch-callout: none;
}
.chosen-container .chosen-results li.active-result {
display: list-item;
cursor: pointer;
}
.chosen-container .chosen-results li.disabled-result {
display: list-item;
color: #ccc;
cursor: default;
}
.chosen-container .chosen-results li.highlighted {
background-color: #3875d7;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
color: #fff;
}
.chosen-container .chosen-results li.no-results {
color: #777;
display: list-item;
background: #f4f4f4;
}
.chosen-container .chosen-results li.group-result {
display: list-item;
font-weight: bold;
cursor: default;
}
.chosen-container .chosen-results li.group-option {
padding-left: 15px;
}
.chosen-container .chosen-results li em {
font-style: normal;
text-decoration: underline;
}
/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
position: relative;
overflow: hidden;
margin: 0;
padding: 0 5px;
width: 100%;
height: auto !important;
height: 1%;
border: 1px solid #aaa;
background-color: #fff;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
cursor: text;
}
.chosen-container-multi .chosen-choices li {
float: left;
list-style: none;
}
.chosen-container-multi .chosen-choices li.search-field {
margin: 0;
padding: 0;
white-space: nowrap;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
margin: 1px 0;
padding: 0;
height: 25px;
outline: 0;
border: 0 !important;
background: transparent !important;
box-shadow: none;
color: #999;
font-size: 100%;
font-family: sans-serif;
line-height: normal;
border-radius: 0;
}
.chosen-container-multi .chosen-choices li.search-choice {
position: relative;
margin: 3px 5px 3px 0;
padding: 3px 20px 3px 5px;
border: 1px solid #aaa;
max-width: 100%;
border-radius: 3px;
background-color: #eeeeee;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
background-size: 100% 19px;
background-repeat: repeat-x;
background-clip: padding-box;
box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
color: #333;
line-height: 13px;
cursor: default;
}
.chosen-container-multi .chosen-choices li.search-choice span {
word-wrap: break-word;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
position: absolute;
top: 4px;
right: 3px;
display: block;
width: 12px;
height: 12px;
background: url('chosen-sprite.png') -42px 1px no-repeat;
font-size: 1px;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
background-position: -42px -10px;
}
.chosen-container-multi .chosen-choices li.search-choice-disabled {
padding-right: 5px;
border: 1px solid #ccc;
background-color: #e4e4e4;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
color: #666;
}
.chosen-container-multi .chosen-choices li.search-choice-focus {
background: #d4d4d4;
}
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
background-position: -42px -10px;
}
.chosen-container-multi .chosen-results {
margin: 0;
padding: 0;
}
.chosen-container-multi .chosen-drop .result-selected {
display: list-item;
color: #ccc;
cursor: default;
}
/* @end */
/* @group Active */
.chosen-container-active .chosen-single {
border: 1px solid #5897fb;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chosen-container-active.chosen-with-drop .chosen-single {
border: 1px solid #aaa;
-moz-border-radius-bottomright: 0;
border-bottom-right-radius: 0;
-moz-border-radius-bottomleft: 0;
border-bottom-left-radius: 0;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%);
background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%);
background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%);
background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);
box-shadow: 0 1px 0 #fff inset;
}
.chosen-container-active.chosen-with-drop .chosen-single div {
border-left: none;
background: transparent;
}
.chosen-container-active.chosen-with-drop .chosen-single div b {
background-position: -18px 2px;
}
.chosen-container-active .chosen-choices {
border: 1px solid #5897fb;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
color: #222 !important;
}
/* @end */
/* @group Disabled Support */
.chosen-disabled {
opacity: 0.5 !important;
cursor: default;
}
.chosen-disabled .chosen-single {
cursor: default;
}
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
cursor: default;
}
/* @end */
/* @group Right to Left */
.chosen-rtl {
text-align: right;
}
.chosen-rtl .chosen-single {
overflow: visible;
padding: 0 8px 0 0;
}
.chosen-rtl .chosen-single span {
margin-right: 0;
margin-left: 26px;
direction: rtl;
}
.chosen-rtl .chosen-single-with-deselect span {
margin-left: 38px;
}
.chosen-rtl .chosen-single div {
right: auto;
left: 3px;
}
.chosen-rtl .chosen-single abbr {
right: auto;
left: 26px;
}
.chosen-rtl .chosen-choices li {
float: right;
}
.chosen-rtl .chosen-choices li.search-field input[type="text"] {
direction: rtl;
}
.chosen-rtl .chosen-choices li.search-choice {
margin: 3px 5px 3px 0;
padding: 3px 5px 3px 19px;
}
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
right: auto;
left: 4px;
}
.chosen-rtl.chosen-container-single-nosearch .chosen-search,
.chosen-rtl .chosen-drop {
left: 9999px;
}
.chosen-rtl.chosen-container-single .chosen-results {
margin: 0 0 4px 4px;
padding: 0 4px 0 0;
}
.chosen-rtl .chosen-results li.group-option {
padding-right: 15px;
padding-left: 0;
}
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
border-right: none;
}
.chosen-rtl .chosen-search input[type="text"] {
padding: 4px 5px 4px 20px;
background: white url('chosen-sprite.png') no-repeat -30px -20px;
background: url('chosen-sprite.png') no-repeat -30px -20px;
direction: rtl;
}
.chosen-rtl.chosen-container-single .chosen-single div b {
background-position: 6px 2px;
}
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
background-position: -12px 2px;
}
/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {
.chosen-rtl .chosen-search input[type="text"],
.chosen-container-single .chosen-single abbr,
.chosen-container-single .chosen-single div b,
.chosen-container-single .chosen-search input[type="text"],
.chosen-container-multi .chosen-choices .search-choice .search-choice-close,
.chosen-container .chosen-results-scroll-down span,
.chosen-container .chosen-results-scroll-up span {
background-image: url('[email protected]') !important;
background-size: 52px 37px !important;
background-repeat: no-repeat !important;
}
}
select.form-control + .chosen-container.chosen-container-single .chosen-single {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.428571429;
color: #555;
vertical-align: middle;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
background-image:none;
}
select.form-control + .chosen-container.chosen-container-single .chosen-single div {
top:4px;
color:#000;
}
select.form-control + .chosen-container .chosen-drop {
background-color: #FFF;
border: 1px solid #CCC;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 4px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
background-clip: padding-box;
margin: 2px 0 0;
}
select.form-control + .chosen-container .chosen-search input[type=text] {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.428571429;
color: #555;
vertical-align: middle;
background-color: #FFF;
border: 1px solid #CCC;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
background-image:none;
}
select.form-control + .chosen-container .chosen-results {
margin: 2px 0 0;
padding: 5px 0;
font-size: 14px;
list-style: none;
background-color: #fff;
margin-bottom: 5px;
}
select.form-control + .chosen-container .chosen-results li ,
select.form-control + .chosen-container .chosen-results li.active-result {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.428571429;
color: #333;
white-space: nowrap;
background-image:none;
}
select.form-control + .chosen-container .chosen-results li:hover,
select.form-control + .chosen-container .chosen-results li.active-result:hover,
select.form-control + .chosen-container .chosen-results li.highlighted
{
color: #FFF;
text-decoration: none;
background-color: #428BCA;
background-image:none;
}
select.form-control + .chosen-container-multi .chosen-choices {
display: block;
width: 100%;
min-height: 34px;
padding: 6px;
font-size: 14px;
line-height: 1.428571429;
color: #555;
vertical-align: middle;
background-color: #FFF;
border: 1px solid #CCC;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
background-image:none;
}
select.form-control + .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
height:auto;
padding:5px 0;
}
select.form-control + .chosen-container-multi .chosen-choices li.search-choice {
background-image: none;
padding: 3px 24px 3px 5px;
margin: 0 6px 0 0;
font-size: 14px;
font-weight: normal;
line-height: 1.428571429;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
border: 1px solid #ccc;
border-radius: 4px;
color: #333;
background-color: #FFF;
border-color: #CCC;
}
select.form-control + .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
top:8px;
right:6px;
}
select.form-control + .chosen-container-multi.chosen-container-active .chosen-choices,
select.form-control + .chosen-container.chosen-container-single.chosen-container-active .chosen-single,
select.form-control + .chosen-container .chosen-search input[type=text]:focus{
border-color: #66AFE9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(102, 175, 233, 0.6);
}
/* @end */
|
test/jmeter/apache-jmeter-2.7/printable_docs/changes.html | telefonicaid/notification_server | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="./../docs/css/style.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="author" value="JMeter developers">
<meta name="email" value="dev AT jmeter.apache.org">
<title>Apache JMeter - Changes</title>
</head>
<body bgcolor="#ffffff" text="#000000" link="#525D76">
<table border="0" cellspacing="0">
<tr>
<td align="left">
<a href="http://www.apache.org"><img title="Apache Software Foundation" width="387" height="100" src="./../docs/images/asf-logo.gif" border="0"/></a>
</td>
<td align="right">
<a href="http://jmeter.apache.org/"><img width="221" height="102" src="./../docs/images/logo.jpg" alt="Apache JMeter" title="Apache JMeter" border="0"></a>
</td>
</tr>
</table>
<table border="0" cellspacing="4">
<tr><td>
<hr noshade size="1">
</td></tr>
<tr>
<td align="left" valign="top">
<br>
<table border="0" cellspacing="0" cellpadding="2" width="100%">
<tr><td bgcolor="#525D76">
<font color="#ffffff" face="arial,helvetica,sanserif">
<strong>Changes</strong></font>
</td></tr>
<tr><td>
<blockquote>
<p><table border="1" bgcolor="#bbbb00" width="50%" cellspacing="0" cellpadding="2">
<tr><td>
<b>
This page details the changes made in the current version only.
</b>
<br>
Earlier changes are detailed in the
<a href="changes_history.html">
History of Previous Changes
</a>
.
</td></tr>
</table></p>
<h1>
Version 2.7
</h1>
<h2>
New and Noteworthy
</h2>
<h3>
OS Process Sampler
</h3>
<p>
A new System Sampler that can be used to execute commands on the local machine.
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='629' height='497' src="./../docs/images/screenshots/changes/2.7/01_os_process_sampler.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<p>
OS Process Sampler results example with DNS lookup command 'dig'
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='877' height='470' src="./../docs/images/screenshots/changes/2.7/02_os_process_example_results.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
JMS Samplers improvements
</h3>
<p>
Addition of a "Non Persistent Delivery" option to send "Non-Persistent" (Guaranteed to be delivered at most once. Message loss is not a concern.) JMS messages
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='953' height='336' src="./../docs/images/screenshots/changes/2.7/11_jms_non_persistent_delivery_mode.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<p>
Support sending of JMS Object Messages to enable sending Objects unmarshalled from XML by XStream
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='808' height='726' src="./../docs/images/screenshots/changes/2.7/12_jms_sending_objects.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<p>
Enable setting JMS Properties through JMS Publisher sampler
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='1029' height='470' src="./../docs/images/screenshots/changes/2.7/13_jms_properties.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
Test Action sampler
</h3>
<p>
Allow premature exit from a loop
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='862' height='167' src="./../docs/images/screenshots/changes/2.7/07_test_action_next_iter.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
Webservice Sampler improvements
</h3>
<p>
Add a jmeter property soap.document_cache to control size of Document Cache
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='270' height='59' src="./../docs/images/screenshots/changes/2.7/14_ws_document_cache.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<p>
Make Maintain HTTP Session configurable
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='833' height='505' src="./../docs/images/screenshots/changes/2.7/15_ws_maintain_session.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
Aggregate graph: Clustered Bar char with average, median, 90% line, min and max columns
</h3>
<p>
Aggregate graph changes to Clustered Bar chart, add more columns (median, 90% line, min, max) and options, fixed some bugs.
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='1177' height='503' src="./../docs/images/screenshots/changes/2.7/03_aggregate_graph_with_new_cols.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<p>
New settings for aggregate graph
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='1173' height='433' src="./../docs/images/screenshots/changes/2.7/04_aggregate_graph_parameters.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
Improvements of HTML report design generated by JMeter Ant task in extras folder
</h3>
<p>
HTML report example
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='1264' height='506' src="./../docs/images/screenshots/changes/2.7/05_jmeter_ant_task_report_success.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<p>
HTML report example with some assertion errors
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='1267' height='550' src="./../docs/images/screenshots/changes/2.7/06_jmeter_ant_task_report_errors.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
Mailer Visualizer
</h3>
<p>
<ul>
<li>
Enable authentication, and connection security with SSL or TLS
</li>
<li>
Improve GUI design
</li>
<li>
Add internationalisation (i18n) support
</li>
</ul>
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='860' height='403' src="./../docs/images/screenshots/changes/2.7/10_mailer_visualizer_gui.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
New Visual Indicator of number of ERROR/FATAL messages in logs
</h3>
<p>
Indicator shows number of ERROR/FATAL messsages in logs, it can be clicked to toggle Log Viewer panel
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='815' height='633' src="./../docs/images/screenshots/changes/2.7/16_log_errors_counter.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
Dialog box to show detail of a parameter row
</h3>
<p>
Add a detail button on parameters table to show detail of a Row
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='824' height='165' src="./../docs/images/screenshots/changes/2.7/08_param_button_detail.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<p>
Detail box example
<p><table border="0" cellspacing="0" cellpadding="0"><tr><td><img width='702' height='454' src="./../docs/images/screenshots/changes/2.7/09_detail_box.png"><br>
<font size="-1"></font></td></tr></table></p>
</p>
<h3>
Plugin writers
</h3>
<p>
New interface org.apache.jmeter.engine.util.ConfigMergabilityIndicator has been introduced to tell whether a ConfigTestElement can be merged in Sampler (see Bug 53042):
<br>
<pre>
public boolean applies(ConfigTestElement configElement);
</pre>
</p>
<p>
New interface org.apache.jmeter.protocol.http.proxy.SamplerCreator to allow plugging HTTP based samplers that differ from default HTTP Samplers through Proxy during Recording Phase (see Bug 52674):
<br>
<pre>
public String[] getManagedContentTypes();
</pre>
<pre>
public HTTPSamplerBase createSampler(HttpRequestHdr request, Map<String, String> pageEncodings, Map<String, String> formEncodings);
</pre>
<pre>
public void populateSampler(HTTPSamplerBase sampler, HttpRequestHdr request, Map<String, String> pageEncodings, Map<String, String> formEncodings) throws Exception;
</pre>
</p>
<h2>
Known bugs
</h2>
<p>
The Once Only controller behaves correctly under a Thread Group or Loop Controller,
but otherwise its behaviour is not consistent (or clearly specified).
</p>
<p>
Listeners don't show iteration counts when a If Controller has a condition which is always false from the first iteration (see Bug 52496).
A workaround is to add a sampler at the same level as (or superior to) the If Controller.
For example a Test Action sampler with 0 wait time (which doesn't generate a sample),
or a Debug Sampler with all fields set to False (to reduce the sample size).
</p>
<h2>
Incompatible changes
</h2>
<p>
When doing replacement of User Defined Variables, Proxy will not substitute partial values anymore when "Regexp matching" is used. It will use Perl 5 word matching ("\b")
</p>
<p>
In User Defined Variables, Test Plan, HTTP Sampler Arguments Table, Java Request Defaults, JMS Sampler and Publisher, LDAP Request Defaults and LDAP Extended Request Defaults, rows with
empty Name and Value are no more saved.
</p>
<p>
JMeter now expands the Test Plan tree to the testplan level and no further and selects the root of the tree. Furthermore default value of onload.expandtree is false.
</p>
<p>
Graph Full Results Listener has been removed.
</p>
<p>
When calling "Clear All" command, if Log Viewer is displayed its content will be cleared.
</p>
<h2>
Bug fixes
</h2>
<h3>
HTTP Samplers and Proxy
</h3>
<ul>
<li>
Bug 52613 - Using Raw Post Body option, text gets encoded
</li>
<li>
Bug 52781 - Content-Disposition header garbled even if browser compatible headers is checked (HC4)
</li>
<li>
Bug 52796 - MonitorHandler fails to clear variables when starting a new parse
</li>
<li>
Bug 52871 - Multiple Certificates not working with HTTP Client 4
</li>
<li>
Bug 52885 - Proxy : Recording issues with HTTPS, cookies starting with secure are partly truncated
</li>
<li>
Bug 52886 - Proxy : Recording issues with HTTPS when spoofing is on, secure cookies are not always changed
</li>
<li>
Bug 52897 - HTTPSampler : Using PUT method with HTTPClient4 and empty Content Encoding and sending files leads to NullPointerException
</li>
<li>
Bug 53145 - HTTP Sampler - function in path evaluated too early
</li>
</ul>
<h3>
Other Samplers
</h3>
<ul>
<li>
Bug 51737 - TCPSampler : Packet gets converted/corrupted
</li>
<li>
Bug 52868 - BSF language list should be sorted
</li>
<li>
Bug 52869 - JSR223 language list currently uses BSF list which is wrong
</li>
<li>
Bug 52932 - JDBC Sampler : Sampler is not marked in error in an Exception which is not of class IOException, SQLException, IOException occurs
</li>
<li>
Bug 52916 - JDBC Exception if there is an empty user defined variable
</li>
<li>
Bug 52937 - Webservice Sampler : Clear Soap Documents Cache at end of Test
</li>
<li>
Bug 53027 - Jmeter starts throwing exceptions while using SMTP Sample in a test plan with HTTP Cookie Mngr or HTTP Request Defaults
</li>
<li>
Bug 53072 - JDBC PREPARED SELECT statements should return results in variables like non prepared SELECT
</li>
</ul>
<h3>
Controllers
</h3>
<ul>
<li>
Bug 52968 - Option Start Next Loop in Thread Group does not mark parent Transaction Sampler in error when an error occurs
</li>
<li>
Bug 50898 - IncludeController : NullPointerException loading script in non-GUI mode if Includers use same element name
</li>
</ul>
<h3>
Listeners
</h3>
<ul>
<li>
Bug 43450 - Listeners/Savers assume SampleResult count is always 1; fixed Generate Summary Results
</li>
</ul>
<h3>
Assertions
</h3>
<ul>
<li>
Bug 52848 - NullPointer in "XPath Assertion"
</li>
</ul>
<h3>
Functions
</h3>
<ul>
</ul>
<h3>
I18N
</h3>
<ul>
<li>
Bug 52551 - Function Helper Dialog does not switch language correctly
</li>
<li>
Bug 52552 - Help reference only works in English
</li>
</ul>
<h3>
General
</h3>
<ul>
<li>
Bug 52639 - JSplitPane divider for log panel should be hidden if log is not activated
</li>
<li>
Bug 52672 - Change Controller action deletes all but one child samplers
</li>
<li>
Bug 52694 - Deadlock in GUI related to non AWT Threads updating GUI
</li>
<li>
Bug 52678 - Proxy : When doing replacement of UserDefinedVariables, partial values should not be substituted
</li>
<li>
Bug 52728 - CSV Data Set Config element cannot coexist with BSF Sampler in same Thread Plan
</li>
<li>
Bug 52762 - Problem with multiples certificates: first index not used until indexes are restarted
</li>
<li>
Bug 52741 - TestBeanGUI default values do not work at second time or later
</li>
<li>
Bug 52783 - oro.patterncache.size property never used due to early init
</li>
<li>
Bug 52789 - Proxy with Regexp Matching can fail with NullPointerException in Value Replacement if value is null
</li>
<li>
Bug 52645 - Recording with Proxy leads to OutOfMemory
</li>
<li>
Bug 52679 - User Parameters columns narrow
</li>
<li>
Bug 52843 - Sample headerSize and bodySize not being accumulated for subsamples
</li>
<li>
Bug 52967 - The function __P() couldn't use default value when running with remote server in GUI mode.
</li>
<li>
Bug 50799 - Having a non-HTTP sampler in a http test plan prevents multiple header managers from working
</li>
<li>
Bug 52997 - Jmeter should not exit without saving Test Plan if saving before exit fails
</li>
<li>
Bug 53136 - Catching Throwable needs to be carefully handled
</li>
</ul>
<h2>
Improvements
</h2>
<h3>
HTTP Samplers
</h3>
<ul>
</ul>
<h3>
Other samplers
</h3>
<ul>
<li>
Bug 52775 - JMS Publisher : Add Non Persistent Delivery option
</li>
<li>
Bug 52810 - Enable setting JMS Properties through JMS Publisher sampler
</li>
<li>
Bug 52938 - Webservice Sampler : Add a jmeter property soap.document_cache to control size of Document Cache
</li>
<li>
Bug 52939 - Webservice Sampler : Make MaintainSession configurable
</li>
<li>
Bug 53073 - Allow to assign the OUT result of a JDBC CALLABLE to JMeter variables
</li>
<li>
Bug 53164 - New System Sampler
</li>
<li>
Bug 53172 - OS Process Sampler - allow specification of Environment Variables
</li>
<li>
Bug 52936 - JMS Publisher : Support sending of JMS Object Messages
</li>
</ul>
<h3>
Controllers
</h3>
<ul>
</ul>
<h3>
Listeners
</h3>
<ul>
<li>
Bug 52603 - MailerVisualizer : Enable SSL , TLS and Authentication
</li>
<li>
Bug 52698 - Remove Graph Full Results Listener
</li>
<li>
Bug 53070 - Change Aggregate graph to Clustered Bar chart, add more columns (median, 90% line, min, max) and options, fixed some bugs
</li>
<li>
Bug 53246 - Mailer Visualizer: improve GUI design and I18N
</li>
</ul>
<h3>
Timers, Assertions, Config, Pre- & Post-Processors
</h3>
<ul>
</ul>
<h3>
Functions
</h3>
<ul>
</ul>
<h3>
I18N
</h3>
<ul>
<li>
Mailer Visualizer has been internationalized. French translation added. (see Bug 53246)
</li>
</ul>
<h3>
General
</h3>
<ul>
<li>
Bug 45839 - Test Action : Allow premature exit from a loop
</li>
<li>
Bug 52614 - MailerModel.sendMail has strange way to calculate debug setting
</li>
<li>
Bug 52782 - Add a detail button on parameters table to show detail of a Row
</li>
<li>
Bug 52674 - Proxy : Add a Sampler Creator to allow plugging HTTP based samplers using potentially non textual POST Body (AMF, Silverlight...) and customizing them for others
</li>
<li>
Bug 52934 - GUI : Open Test plan with the tree expanded to the testplan level and no further and select the root of the tree
</li>
<li>
Bug 52941 - Improvements of HTML report design generated by JMeter Ant task extra
</li>
<li>
Bug 53042 - Introduce a new method in Sampler interface to allow Sampler to decide wether a config element applies to Sampler
</li>
<li>
Bug 52771 - Documentation : Added RSS feed on JMeter Home page under link "Subscribe to What's New"
</li>
<li>
Bug 42784 - Show the number of errors logged in the GUI
</li>
<li>
Bug 53256 - Make Clear All command clean LogViewer content
</li>
<li>
Bug 53261 - Make "Error/fatal" counter added in Bug 42784 open Log Viewer panel when Warn Indicator is clicked
</li>
</ul>
<h2>
Non-functional changes
</h2>
<ul>
<li>
Upgraded to rhino 1.7R3 (was js-1.7R2.jar).
Note: the Maven coordinates for the jar were changed from rhino:js to org.mozilla:rhino.
This does not affect JMeter directly, but might cause problems if using JMeter in a Maven project
with other code that depends on an earlier version of the Rhino Javascript jar.
</li>
<li>
Bug 52675 - Refactor Proxy and HttpRequestHdr to allow Sampler Creation by Proxy
</li>
<li>
Bug 52680 - Mention version in which function was introduced
</li>
<li>
Bug 52788 - HttpRequestHdr : Optimize code to avoid useless work
</li>
<li>
JMeter Ant (ant-jmeter-1.1.1.jar) task was upgraded from 1.0.9 to 1.1.1
</li>
<li>
Updated to commons-io 2.2 (from 2.1)
</li>
<li>
Bug 53129 - Upgrade XStream from 1.3.1 to 1.4.2
</li>
<li>
Updated to httpcomponents-client 4.1.3 (from 4.1.2)
</li>
<li>
Updated JMeter distributed testing guide (jmeter_distributed_testing_step_by_step.pdf). Changes source format to OpenOffice odt (from sxw)
</li>
</ul>
</blockquote>
</p>
</td></tr>
<tr><td><br></td></tr>
</table>
<br>
</td>
</tr>
<tr><td>
<hr noshade size="1">
</td></tr>
<tr>
<td>
<table width=100%>
<tr>
<td align="center">
<font color="#525D76" size="-1"><em>
Copyright © 1999-2012, Apache Software Foundation
</em></font>
</td>
</tr>
<tr><td colspan="2">
<div align="center"><font color="#525D76" size="-1">
Apache, Apache JMeter, JMeter, the Apache feather, and the Apache JMeter logo are
trademarks of the Apache Software Foundation.
</font>
</div>
</td></tr>
</table>
</td>
</tr>
</table>
</body>
</html>
|
erpnext/docs/current/models/hr/earning_type.html | indictranstech/trufil-erpnext | <!-- title: Earning Type -->
<div class="dev-header">
<a class="btn btn-default btn-sm" disabled style="margin-bottom: 10px;">
Version 6.7.7</a>
<a class="btn btn-default btn-sm" href="https://github.com/frappe/erpnext/tree/develop/erpnext/hr/doctype/earning_type"
target="_blank" style="margin-left: 10px; margin-bottom: 10px;"><i class="octicon octicon-mark-github"></i> Source</a>
</div>
<p><b>Table Name:</b> <code>tabEarning Type</code></p>
<h3>Fields</h3>
<table class="table table-bordered" style="table-layout: fixed;">
<thead>
<tr>
<th style="width: 5%">Sr</th>
<th style="width: 25%">Fieldname</th>
<th style="width: 20%">Type</th>
<th style="width: 25%">Label</th>
<th style="width: 25%">Options</th>
</tr>
</thead>
<tbody>
<tr >
<td>1</td>
<td class="danger" title="Mandatory"><code>earning_name</code></td>
<td >
Data</td>
<td >
Name
</td>
<td></td>
</tr>
<tr >
<td>2</td>
<td ><code>description</code></td>
<td >
Small Text</td>
<td >
Description
</td>
<td></td>
</tr>
</tbody>
</table>
<hr>
<h3>Controller</h3>
<h4>erpnext.hr.doctype.earning_type.earning_type</h4>
<h3 style="font-weight: normal;">Class <b>EarningType</b></h3>
<p style="padding-left: 30px;"><i>Inherits from frappe.model.document.Document</i></h4>
<div class="docs-attr-desc"><p></p>
</div>
<div style="padding-left: 30px;">
</div>
<hr>
<h4>Linked In:</h4>
<ul>
<li>
<a href="https://frappe.github.io/erpnext/current/models/hr/salary_slip_earning">Salary Slip Earning</a>
</li>
<li>
<a href="https://frappe.github.io/erpnext/current/models/hr/salary_structure_earning">Salary Structure Earning</a>
</li>
</ul>
<!-- autodoc -->
<!-- jinja -->
<!-- static --> |
venv/lib/python2.7/site-packages/paver/docs/search.html | GbalsaC/bitnamiP | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Search — Paver 1.2.1 documentation</title>
<link rel="stylesheet" href="_static/default.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '1.2.1',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="_static/searchtools.js"></script>
<link rel="top" title="Paver 1.2.1 documentation" href="index.html" />
<script type="text/javascript">
jQuery(function() { Search.loadIndex("searchindex.js"); });
</script>
<script type="text/javascript" id="searchindexloader"></script>
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li><a href="index.html">Paver 1.2.1 documentation</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<h1 id="search-documentation">Search</h1>
<div id="fallback" class="admonition warning">
<script type="text/javascript">$('#fallback').hide();</script>
<p>
Please activate JavaScript to enable the search
functionality.
</p>
</div>
<p>
From here you can search these documents. Enter your search
words into the box below and click "search". Note that the search
function will automatically search for all of the words. Pages
containing fewer words won't appear in the result list.
</p>
<form action="" method="get">
<input type="text" name="q" value="" />
<input type="submit" value="search" />
<span id="search-progress" style="padding-left: 10px"></span>
</form>
<div id="search-results">
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li><a href="index.html">Paver 1.2.1 documentation</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright 2008, SitePen, Inc..
Last updated on Jun 02, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
</html> |
src/packages/frontend/editor.html | DrXyzzy/cocalc | <!--
This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
License: AGPLv3 s.t. "Commons Clause" – see LICENSE.md for details
-->
<div id="webapp-editor-templates" class="hide">
<!-- Template for the entire editor, both tabs and the actual content -->
<div class="webapp-editor">
<div class="row">
<div class="col-xs-12">
<!-- The editor content gets displayed here -->
<div class="webapp-editor-content">
</div>
</div>
</div>
</div>
<!-- Template for the tab at the top of the editor with filename and an x -->
<ul> <!-- ul so is valid html -->
<li class="super-menu webapp-editor-filename-pill">
<div class="webapp-editor-close-button-x pull-right lighten"><i class="fa fa-times"></i></div>
<a>
<span class="webapp-editor-tab-filename"></span>
</a>
</li>
</ul>
<!-- Template for the codemirror text editor -->
<div class="webapp-editor-codemirror smc-vfill">
<textarea class="webapp-editor-textarea-0 hide"></textarea>
<textarea class="webapp-editor-textarea-1 hide"></textarea>
<div class="webapp-editor-codemirror-content smc-vfill">
<div class="webapp-editor-codemirror-button-row">
<div class="webapp-editor-codemirror-button-container">
<div class="hidden-xs webapp-editor-chat-title webapp-editor-write-only pull-right">
<div class="smc-users-viewing-document">
<!--to be filled with react component for users viewing the document-->
</div>
</div>
<div class="smc-editor-file-info-dropdown" style="float:left;"></div>
<span class="visible-xs">
<span class="btn-group">
<!-- <a href="#close" class="btn btn-default btn-lg"><i class="fa fa-toggle-up"></i> <span>Files...</span></a>-->
<a href="#save" class="btn btn-success btn-lg"><i class="fa fa-save"></i> Save</a>
<a href="#goto-line" class="btn btn-default btn-lg"><i class="fa fa-bolt"> </i></a>
</span>
<span class="btn-group webapp-editor-codemirror-worksheet-buttons hide">
<a href="#execute" class="btn btn-success btn-lg"> <i class="fa fa-play"></i> Run</a>
<a href="#interrupt" class="btn btn-warning btn-lg"> <i class="fa fa-stop"></i></a>
<a href="#kill" class="btn btn-warning btn-lg"><i class="fa fa-refresh"></i></a>
<a href="#tab" class="btn btn-info btn-lg"> <i class="fa fa-step-forward"></i></a>
</span>
<span class="btn-group">
<a href="#decrease-font" class="btn btn-default btn-lg"><i class="fa fa-font" style="font-size:8pt"> </i> </a>
<a href="#increase-font" class="btn btn-default btn-lg"><i class="fa fa-font" style="font-size:13pt"> </i> </a>
</span>
<a class="btn btn-primary btn-lg hide" href="#copy-to-another-project"><i class="fa fa-paper-plane"> </i> <span>Copy To Your Project...</span></a>
</span>
<span class="btn-group webapp-editor-write-only">
<a href="#save" class="hidden-xs btn btn-success webapp-editor-save-group" data-toggle="tooltip" data-placement="bottom" title="Save file to disk.">
<i class="fa fa-save primary-icon"></i>
<i class="fa fa-cocalc-ring hide"></i>
Save
<span class="smc-uncommitted hide" data-toggle="tooltip" data-placement="bottom" title="DANGER: File NOT sent to server and not saved to disk. You will lose work if you close this file."> NOT saved!</span>
</a>
<a href="#history" class="hidden-xs btn btn-info webapp-editor-history-button hide" data-toggle="tooltip" data-placement="bottom" title="View the history of this file.">
<i class="fa fa-history"></i>
<span class="hidden-sm">TimeTravel</span>
</a>
</span>
<span class="hidden-xs">
<span class="webapp-editor-codemirror-worksheet-buttons hide">
<span class="btn-group webapp-editor-write-only">
<a href="#execute" class="btn btn-default " data-toggle="tooltip" data-placement="bottom" title="Execute current or selected cells (unless input hidden)."><i class="fa fa-play"></i> Run</a>
<a href="#tab" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Tab completion."> <i class="fa fa-step-forward"></i> <span class="hidden-sm hidden-md">Tab</span></a>
<a href="#interrupt" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Stop the running calculation."><i class="fa fa-stop"></i> <span class="hidden-sm hidden-md">Stop</span></a>
<a href="#kill" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Restart the running Sage process (all variables reset)."><i class="fa fa-refresh"></i> <span class="hidden-sm hidden-md">Restart</span></a>
</span>
<span class="btn-group webapp-editor-write-only hidden-sm">
<a href="#toggle-input" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Toggle display of input of selected cells."><i class="fa fa-toggle-on"></i> <span class="hidden-sm hidden-md">in</span></a>
<a href="#toggle-output" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Toggle display of output of selected cells."><i class="fa fa-toggle-on"></i> <span class="hidden-sm hidden-md">out</span></a>
<a href="#delete-output" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Delete output of selected cells (unless input hidden)."><i class="fa fa-times-circle"></i></a>
</span>
</span>
</span>
<span class="hidden-xs btn-group editor-btn-group">
<a href="#vim-mode-toggle" class="btn btn-default webapp-editor-write-only" data-toggle="tooltip" data-placement="bottom" title="Toggle VIM mode" style="width:4em">esc</a>
<a href="#autoindent" class="btn btn-default webapp-editor-write-only" data-toggle="tooltip" data-placement="bottom" title="Autoindent selected text"><i class="fa fa-indent"></i></a>
<a href="#undo" class="btn btn-default webapp-editor-write-only" data-toggle="tooltip" data-placement="bottom" title="Undo"><i class="fa fa-undo"></i></a>
<a href="#redo" class="btn btn-default webapp-editor-write-only" data-toggle="tooltip" data-placement="bottom" title="Redo"><i class="fa fa-repeat"></i></a>
<a href="#search" class="btn btn-default btn-history" data-toggle="tooltip" data-placement="bottom" title="Search"><i class="fa fa-search"></i></a>
<!-- <a href="#prev" class="btn btn-default btn-history" data-toggle="tooltip" data-placement="bottom" title="Previous"><i class="fa fa-chevron-up"></i></a>
<a href="#next" class="btn btn-default btn-history" data-toggle="tooltip" data-placement="bottom" title="Next"><i class="fa fa-chevron-down"></i></a>-->
<a href="#replace" class="btn btn-default webapp-editor-write-only" data-toggle="tooltip" data-placement="bottom" title="Replace"><i class="fa fa-exchange"></i></a>
<a href="#split-view" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Split view of document">
<i class="fa fa-horizontal-split webapp-editor-layout-0 hide"></i>
<i class="fa fa-vertical-split webapp-editor-layout-1 hide"></i>
<i class="fa fa-window-maximize webapp-editor-layout-2 hide" style="font-size: 12pt;"></i>
</a>
<a href="#decrease-font" class="btn btn-default btn-history" data-toggle="tooltip" data-placement="bottom" title="Decrease text size"><i class="fa fa-font" style="font-size:7pt"> </i> </a>
<a href="#increase-font" class="btn btn-default btn-history" data-toggle="tooltip" data-placement="bottom" title="Increase text size"><i class="fa fa-font" style="font-size:11pt"> </i> </a>
<a href="#goto-line" class="btn btn-default btn-history" data-toggle="tooltip" data-placement="bottom" title="Go to line"><i class="fa fa-bolt"> </i> </a>
<a href="#copy" class="btn btn-default btn-history webapp-editor-write-only" data-toggle="tooltip" data-placement="bottom" title="Copy"><i class="fa fa-copy"> </i> </a>
<a href="#paste" class="btn btn-default btn-history webapp-editor-write-only" data-toggle="tooltip" data-placement="bottom" title="Paste"><i class="fa fa-paste"> </i> </a>
<a href="#sagews2pdf" class="hidden-sm btn btn-default webapp-editor-write-only hide" data-toggle="tooltip" data-placement="bottom" title="Convert to PDF"><i class="fa fa-file-pdf-o"> </i> </a>
<a href="#print" class=" hidden-sm btn btn-default webapp-editor-write-only hide" data-toggle="tooltip" data-placement="bottom" title="Print"><i class="fa fa-print"> </i> <i class="fa fa-cocalc-ring hide"></i></a> </a>
<a href="#sagews2ipynb" class="hidden-sm btn btn-default webapp-editor-write-only hide" data-toggle="tooltip" data-placement="bottom" title="Convert to ipynb"><i class="fa fa-ipynb"> </i> <span class="hidden-sm hidden-md">Jupyter</span></a>
</span>
<span class="btn-group webapp-editor-read-only hide">
<a href="#readonly" class="hidden-xs btn btn-success webapp-editor-save-group disabled" data-toggle="tooltip" data-placement="bottom" title="File is read only.">
<i class="fa fa-save"></i>
<span class="hidden-sm">Readonly</span>
</a>
<a href="#history" class="hidden-xs btn btn-info webapp-editor-history-button hide" data-toggle="tooltip" data-placement="bottom" title="View the history of this file.">
<i class="fa fa-history"></i>
<span class="hidden-sm hidden-md">TimeTravel</span>
</a>
</span>
<span class="hidden-xs">
<a class="btn btn-primary hide" href="#copy-to-another-project"><i class="fa fa-paper-plane"> </i> <span>Copy To Your Project...</span></a>
<!--<a class="btn btn-success" href="#download-file"><i class="fa fa-cloud-download"> </i> <span class="hidden-sm">Download</span></a>-->
</span>
<span class="webapp-editor-codemirror-loading hide">
<i class="fa fa-cocalc-ring"></i> load…
</span>
<span class="webapp-editor-codemirror-sync">
<span class="webapp-editor-codemirror-not-synced hide"><i class="fa fa-cocalc-ring"></i> sync…</span>
<span class="webapp-editor-codemirror-synced hide"><i class="fa fa-check"></i></span>
</span>
<span class="webapp-editor-codemirror-message"></span>
<span class="webapp-editor-codemirror-filename pull-right"></span>
</div>
<div class="webapp-editor-buttonbars webapp-editor-write-only">
<div class="webapp-editor-latex-buttonbar hide"></div>
<div class="webapp-editor-codemirror-textedit-buttons hide visible-sm-block visible-md-block visible-lg-block">
<code class="webapp-editor-codeedit-buttonbar-mode pull-right hide"></code>
<span class="react-target"></span>
<span class="webapp-editor-codeedit-buttonbar-assistant pull-right hide">
<a href="#assistant" class="btn btn-default"
data-toggle="tooltip" data-placement="bottom" title="Insert examples">
<i class="fa fa-magic"></i> <span class="hidden-sm">Snippets</span>
</a>
</span>
</div>
<div class="webapp-editor-codemirror-worksheet-editable-buttons hide">
<span class="btn-group">
<a href="#bold" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Bold"><i class="fa fa-bold"></i></a>
<a href="#italic" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Italic"><i class="fa fa-italic"></i></a>
<a href="#underline" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Underline"><i class="fa fa-underline"></i></a>
<a href="#strikethrough" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Strike through"><i class="fa fa-strikethrough"></i></a>
<a href="#subscript" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Subscript (use LaTeX for serious equations)"><i class="fa fa-subscript"></i></a>
<a href="#superscript" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Superscript"><i class="fa fa-superscript"></i></a>
</span>
<span class="btn-group">
<a href="#equation" data-args="special" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Inline equation..."> $ </a>
<a href="#display_equation" data-args="special" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Displayed equation..."> $$ </a>
<a href="#insertunorderedlist" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Insert unordered list"><i class="fa fa-list"></i></a>
<a href="#insertorderedlist" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Insert ordered list"><i class="fa fa-list-ol"></i></a>
<a href="#link" data-args="special" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Insert link..."><i class="fa fa-link"></i></a>
<a href="#image" data-args="special" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Insert image..."><i class="fa fa-image"></i></a>
<!-- <a href="#insertHorizontalRule" class="btn btn-default"><hr></a> -->
</span>
<span class="btn-group">
<a href="#justifyleft" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Left justify"><i class="fa fa-align-left"></i></a>
<a href="#justifycenter" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Justify center"><i class="fa fa-align-center"></i></a>
<a href="#justifyright" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Right justify"><i class="fa fa-align-right"></i></a>
<a href="#justifyfull" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Justify full"><i class="fa fa-align-justify"></i></a>
<a href="#outdent" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Outdent"><i class="fa fa-outdent"></i></a>
<a href="#indent" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Indent"><i class="fa fa-indent"></i></a>
</span>
<span class="btn-group">
<a href="#undo" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Undo"><i class="fa fa-undo"></i></a>
<a href="#redo" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Redo"><i class="fa fa-repeat"></i></a>
</span>
<span class="btn-group">
<span class="btn-group sagews-output-editor-font smc-tooltip" data-toggle="tooltip" data-placement="top" title="Fonts">
<span class="btn btn-default dropdown-toggle" data-toggle="dropdown" title="Font">
<i class="fa fa-font"></i> <b class="caret"></b>
</span>
<ul class="dropdown-menu">
</ul>
</span>
<span class="btn-group sagews-output-editor-font-size smc-tooltip" data-toggle="tooltip" data-placement="top" title="Font size">
<span class="btn btn-default dropdown-toggle" data-toggle="dropdown" title="Text height">
<i class="fa fa-text-height"></i> <b class="caret"></b>
</span>
<ul class="dropdown-menu">
</ul>
</span>
<span class="btn-group sagews-output-editor-block-type smc-tooltip" data-toggle="tooltip" data-placement="top" title="Format type">
<span class="btn btn-default dropdown-toggle" data-toggle="dropdown" title="Header">
<i class="fa fa-header"></i> <b class="caret"></b>
</span>
<ul class="dropdown-menu">
</ul>
</span>
</span>
<span class="btn-group"> <!-- not implemented yet -->
<span class="sagews-output-editor-foreground-color-selector input-group color smc-tooltip" data-color-format="rgb" data-toggle="tooltip" data-placement="top" title="Text color">
<input type="text" style="cursor:pointer" class="form-control">
<span class="input-group-addon" style="padding: 3px;"><i class="fa fa-font" style="height: 16px; width: 16px"></i><b class="caret"></b></span>
</span>
</span>
<span class="btn-group"> <!-- not implemented yet -->
<span class="sagews-output-editor-background-color-selector input-group color smc-tooltip" data-color-format="rgb" data-toggle="tooltip" data-placement="top" title="Text background highlight color">
<input type="text" style="cursor:pointer" class="form-control">
<span class="input-group-addon" style="padding: 3px;"><i class="fa fa-font" style="height: 16px; width: 16px"></i><b class="caret"></b></span>
</span>
</span>
</div>
</div>
</div>
<div class="webapp-editor-codemirror-input-container-layout-0 hide"
style="flex: 1; display: flex; flex-direction: column;">
<!-- See https://github.com/codemirror/CodeMirror/issues/3679 for why we do this nesting
(to work around a chrome bug, and/or avoid major slowdown doing layout?) -->
<div class="webapp-editor-codemirror-input-box" style="display: flex; flex-direction: column; position:relative;">
<div style="position:absolute; height:100%; width:100%">
</div>
</div>
<div class="webapp-editor-codemirror-input-box-1 hide">
<div>
</div>
</div>
</div>
<div class="webapp-editor-codemirror-input-container-layout-1 hide"
style="flex: 1; display: flex; flex-direction: column;">
<!-- See https://github.com/codemirror/CodeMirror/issues/3679 for why we do this nesting
(to work around a chrome bug, and/or avoid major slowdown doing layout?) -->
<div class="webapp-editor-codemirror-input-box" style="display: flex; flex-direction: column; position:relative;">
<div style="position:absolute; height:100%; width:100%">
</div>
</div>
<div class="webapp-editor-resize-bar-layout-1">
</div>
<!-- flex: 1 so expands to what is left after editor above is placed. -->
<div class="webapp-editor-codemirror-input-box-1" style="flex: 1; display: flex; flex-direction: column; position:relative;">
<div style="position:absolute; height:100%; width:100%">
</div>
</div>
</div>
<div class="webapp-editor-codemirror-input-container-layout-2 hide"
style="flex: 1; display: flex; flex-direction: row;">
<!-- See https://github.com/codemirror/CodeMirror/issues/3679 for why we do this nesting
(to work around a chrome bug, and/or avoid major slowdown doing layout?) -->
<div class="webapp-editor-codemirror-input-box" style="display: flex; flex-direction: column; position:relative;">
<div style="position:absolute; height:100%; width:100%">
</div>
</div>
<div class="webapp-editor-resize-bar-layout-2">
</div>
<!-- flex: 1 so expands to what is left after editor above is placed. -->
<div class="webapp-editor-codemirror-input-box-1" style="flex: 1; display: flex; flex-direction: column; position:relative;">
<div style="position:absolute; height:100%; width:100%">
</div>
</div>
</div>
</div>
<div class="webapp-editor-codemirror-startup-message alert alert-warning hide" role='alert'>
</div>
</div>
<!-- Template for the codemirror text editor other user cursors -->
<div class="webapp-editor-codemirror-cursor"><span class="webapp-editor-codemirror-cursor-label"></span><div class="webapp-editor-codemirror-cursor-inside"> </div></div>
<div class="smc-editor-codemirror-cursor"><span class="smc-editor-codemirror-cursor-label"></span><div class="smc-editor-codemirror-cursor-inside"> </div></div>
<!-- Static HTML viewer -->
<div class="webapp-editor-static-html">
<div class="webapp-editor-static-html-content">
<iframe style="width:100%;border:0px;">
</iframe>
</div>
</div>
<!-- Templates for the png-based PDF previewer; this is designed for the pdf changes in little ways locally. -->
<div class="webapp-editor-pdf-preview smc-vfill">
<div class="webapp-editor-pdf-preview-spinner hide"></div>
<div class="webapp-editor-pdf-preview-highlight hide"></div>
<div class="webapp-editor-pdf-preview-buttons">
<span class="btn-group">
<a href="#zoom-preview-out" class="btn btn-sm btn-default" data-toggle="tooltip" data-placement="bottom" title="Zoom out some"><i class="fa fa-search-minus"></i></a>
<a href="#zoom-preview-in" class="btn btn-sm btn-default" data-toggle="tooltip" data-placement="bottom" title="Zoom in some"><i class="fa fa-search-plus"></i></a>
<a href="#zoom-preview-fullpage" class="btn btn-sm btn-default" data-toggle="tooltip" data-placement="bottom" title="Zoom so page width matches viewport"><i class="fa fa-file-o"></i></a>
<a href="#zoom-preview-width" class="btn btn-sm btn-default" data-toggle="tooltip" data-placement="bottom" title="Zoom in close"><i class="fa fa-arrows-alt"></i></a>
<a href="#preview-resolution" class="btn btn-sm btn-default" data-toggle="tooltip" data-placement="bottom" title="Change the preview resolution"><i class="fa fa-th"></i></a>
<a href="#pdf-download" class="btn btn-sm btn-default" data-toggle="tooltip" data-placement="bottom" title="Download the PDF file"><i class="fa fa-download"></i></a>
</span>
<span class="btn-group pull-right">
<a href="#toggle-preview" class="btn btn-sm btn-default" data-toggle="tooltip" data-placement="bottom" title="If enabled, the LaTeX file is compiled and a preview is rendered.">
<i class="fa fa-check-square-o"></i> Build preview
</a>
</span>
</div>
<div style="flex:1;overflow-y:auto;overflow-x:auto" class="webapp-editor-pdf-preview-output">
<div class="webapp-editor-pdf-preview-page">
</div>
<div class="webapp-editor-pdf-preview-message hide">
</div>
</div>
</div>
<!-- Templates for the embedded PDF previewer: just uses the built-in renderer; can't cope with file updates, inverse search, etc. -->
<div class="webapp-editor-pdf-preview-embed smc-vfill">
<div class="webapp-editor-codemirror-button-row">
<span class="webapp-editor-pdf-preview-embed-spinner hide"></span>
<span class="btn-group">
<a class="btn btn-default btn-lg visible-xs" href="#close" ><i class="fa fa-toggle-up"></i> <span class="hidden-xs">Files...</span></a>
<a class="btn btn-default btn-lg visible-xs" href="#refresh"><i class="fa fa-refresh"></i> <span class="hidden-xs"> Refresh</span></a>
<a class="btn btn-default hidden-xs" href="#refresh"><i class="fa fa-refresh"></i> <span class="hidden-xs"> Refresh</span></a>
</span>
<span class="btn-group pull-right">
<a class="btn btn-default webapp-editor-pdf-title hidden-xs">
<i class="fa fa-external-link"></i>
<span></span>
</a>
</span>
</div>
<div class="webapp-editor-pdf-preview-embed-page smc-vfill">
<iframe frameborder="0" scrolling="no" style="width:100%;height:100%">
<br>
<br>
Your browser doesn't support embedded PDF's, but you can <a target='_blank'>download <span></span></a>...
</iframe>
</div>
</div>
<div class="webapp-editor-history smc-vfill">
<div class="webapp-editor-history-controls" style="display:flex; padding-left: 10px; padding-right: 10px; border-bottom: 1px solid lightgrey; background-color:#efefef">
<span style="color:#666; font-size:14pt; font-weight: bold; margin-right:1em">
<i class="fa fa-history"></i>
TimeTravel
</span>
<span>
<a href="#show-diff" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Show changes"><i class="fa fa-square-o"></i> Changes</a>
<a href="#hide-diff" class="btn btn-default hide" data-toggle="tooltip" data-placement="bottom" title="Show what changed"><i class="fa fa-check-square-o"></i> Changes</a>
</span>
<span class="webapp-editor-history-control-button-container btn-group smc-btn-group-nobreak" style="margin-left:1em">
<a href="#back" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Back"><i class="fa fa-step-backward"></i></a>
<a href="#forward" class="btn btn-default disabled" data-toggle="tooltip" data-placement="bottom" title="Forward"><i class="fa fa-step-forward"></i></a>
</span>
<span class="btn-group smc-btn-group-nobreak">
<a href="#file" class="btn btn-info " style="margin-left:1em" data-toggle="tooltip" data-placement="bottom" title="Show full file"><i class="fa fa-file-code-o"></i> Open File</a>
<a href="#revert" class="btn btn-warning hide" data-toggle="tooltip" data-placement="bottom" title="Revert the live file to the displayed revision"><i class="fa fa-undo"></i> Revert live version to this </a>
<a href="#snapshots" class="btn btn-default">
<i class="fa fa-life-saver"></i>
<span class="hidden-sm" style="font-size: 12px;">Backups</span>
</a>
<a href="#all" class="btn btn-default hide" data-toggle="tooltip" data-placement="bottom" title="Load complete history"><i class="fa fa-floppy-o"></i> Load All History </a>
<a href="#export" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Export to file"><i class="fa fa-file-export"></i> Export</a>
</span>
<div style="color:#666; margin-left: 1em">
<span class="webapp-editor-history-revision-time" style="font-weight: bold; font-size:12pt"></span><span class="webapp-editor-history-diff-mode hide"> to </span><span class="hide webapp-editor-history-diff-mode webapp-editor-history-revision-time2" style="font-weight: bold; font-size:12pt"></span><span class="webapp-editor-history-revision-number"> </span>
</div>
</div>
<div style="margin-top:7px; margin-right:15px;">
<span class="webapp-editor-history-revision-user lighten pull-right"></span>
</div>
<div class="webapp-editor-history-sliders" style="border-bottom: 1px solid lightgrey;">
<div class="webapp-editor-history-slider webapp-editor-history-slider-style">
</div>
<div class="webapp-editor-history-diff-slider hide webapp-editor-history-slider-style">
</div>
</div>
<div class="webapp-editor-history-no-viewer hide" style="margin-left:15px">
<b>WARNING: </b> History viewer for this file type not implemented, so showing underlying raw file instead.
</div>
<div class="webapp-editor-history-history_editor smc-vfill"></div>
</div>
<span class="sagews-input">
<span class="sagews-input-hr sagews-input-eval-state"></span>
<span class="sagews-input-hr sagews-input-run-state"></span>
<span class="sagews-input-hr sagews-input-newcell"></span>
</span>
<span class="sagews-output">
<span class="sagews-output-container">
<span class="sagews-output-messages"></span>
</span>
</span>
<div class="webapp-ipython-notebook">
<!--<h3 style="margin-left:1em">IPython Notebook: <span class="webapp-ipython-filename"></span></h3>-->
<div class="webapp-ipython-notebook-buttons hidden-xs">
<span class="webapp-ipython-notebook-status-messages lighten"> </span>
<span class="hide webapp-ipython-notebook-danger">DANGER: Users on this VM could connect unless you stop your ipython-notebook server (they would have to know secret internal project-id).</span>
<span class="btn-group">
<a href="#save" class="btn btn-sm btn-success" data-toggle="tooltip" data-placement="bottom" title="Save .ipynb file to disk (file is constantly sync'd with server).">
<i class="fa fa-save primary-icon"></i><i class="fa fa-cocalc-ring hide"></i> Save
</a>
<a href="#history" class="btn btn-sm btn-info webapp-editor-history-button hide" data-toggle="tooltip" data-placement="bottom" title="View the history of this file.">
<i class="fa fa-history"></i>
<span class="hidden-sm">TimeTravel</span>
</a>
<a href="#reload" class="btn btn-sm btn-warning" data-toggle="tooltip" data-placement="bottom" title="Reload this Notebook; use if the IPython server is killed or restarted on another port"> <i class="fa fa-refresh"></i> Reload</a>
<a href="#publish" class="btn btn-primary btn-sm" data-toggle="tooltip" data-placement="bottom" title="Publish this notebook for anybody to see"> <i class="fa fa-refresh fa-spin hide"> </i> <i class="fa fa-share-square"></i> Publish</a>
<a href="#info" class="btn btn-sm btn-info" data-toggle="tooltip" data-placement="bottom" title="Extra information about the IPython notebook"> <i class="fa fa-info-circle"></i> About </a>
</span>
</div>
<div class="visible-xs">
<span class="btn-group">
<a href="#save" class="btn btn-success btn-lg"> <i class="fa fa-save"></i> Save</a>
</span>
<span class="btn-group webapp-editor-codemirror-worksheet-buttons hide">
<a href="#execute" class="btn btn-default btn-lg"> <i class="fa fa-play"></i>
<span>Run</span>
</a>
<a href="#interrupt" class="btn btn-default btn-lg"> <i class="fa fa-stop"></i>
<span>Stop</span>
</a>
<a href="#tab" class="btn btn-default btn-lg"> <i class="fa fa-info-circle"></i>
<span>Tab</span>
</a>
</span>
<span class="btn-group">
<a href="#reload" class="btn btn-warning btn-lg"> <i class="fa fa-refresh"></i> Reload</a>
<a href="#info" class="btn btn-info btn-lg"> <i class="fa fa-info-circle"></i> </a>
</span>
</div>
<h3 class="webapp-ipython-notebook-connecting hide" style="margin-left:2em">Opening...</h3>
<div class="webapp-ipython-notebook-notebook"></div>
</div>
<div class="modal webapp-file-print-dialog" data-backdrop="static" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close btn-close" aria-hidden="true">
<span style="font-size:20pt;">×</span>
</button>
<h3><i class="fa fa-print"> </i> Printable PDF version of <span class="webapp-file-print-filename"></span></h3>
</div>
<div class="well">
<h4>Heading <span class="lighten">(click to edit)</span></h4>
<div class="well" style="background-color:white; text-align:center">
<h4 class="webapp-file-print-title" contenteditable="true"></h4>
<h5 class="webapp-file-print-author" contenteditable="true"></h5>
<h5 class="webapp-file-print-date" contenteditable="true"></h5>
</div>
<div class="webapp-file-options-sagews hide">
<h4>Worksheet Options</h4>
<div class="well" style="background-color:white">
<div class="checkbox">
<label class="" rel="tooltip" title="Table of contents">
<input type="checkbox" class="webapp-file-print-contents" rel="tooltip">Table of contents
</label>
</div>
<div class="checkbox">
<label class="" rel="tooltip" title="Keep generated files">
<input type="checkbox" class="webapp-file-print-keepfiles" rel="tooltip">Keep generated files in a sub-directory. This is useful for debugging printing issues or additional editing.
<div class="smc-file-printing-tempdir hide"></div>
</label>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-close pull-left btn-default btn-lg">Close</button>
<button class="btn btn-primary btn-submit pull-left btn-lg"><i class="fa fa-bolt primary-icon"> </i> <i class="fa fa-cocalc-ring hide"></i> Generate PDF</button>
<span class="webapp-file-printing-progress hide">Preparing PDF version...</span>
<a class="webapp-file-printing-link hide" target="_blank">link to PDF version</a>
</div>
</div>
</div>
</div>
<div class="modal webapp-goto-line-dialog" data-backdrop="static" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close btn-close" aria-hidden="true">
<span style="font-size:20pt;">×</span>
</button>
<h3><i class="fa fa-bolt"> </i> Goto Line</h3>
</div>
<div class="well" style="margin:1em">
<div class="lighten">Enter <span class="webapp-goto-line-range"></span></div>
<input class="webapp-goto-line-input form-control" style="width:95%; margin-top: 1ex;" type="text" placeholder="">
</div>
<div class="modal-footer">
<button class="btn btn-close btn-default">Cancel</button>
<button class="btn btn-primary btn-submit">OK</button>
</div>
</div>
</div>
</div>
<div class="webapp-editor-textedit-buttonbar">
<span class="btn-group">
<a href="#bold" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Bold"><i class="fa fa-bold"></i></a>
<a href="#italic" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Italic"><i class="fa fa-italic"></i></a>
<a href="#underline" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Underline"><i class="fa fa-underline"></i></a>
<a href="#strikethrough" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Strike through"><i class="fa fa-strikethrough"></i></a>
<a href="#subscript" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Subscript (use LaTeX for serious equations)"><i class="fa fa-subscript"></i></a>
<a href="#superscript" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Superscript"><i class="fa fa-superscript"></i></a>
<a href="#comment" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Comment out selection"><i class="fa fa-comment-o"></i></a>
</span>
<span class="btn-group">
<a href="#equation" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Inline equation..."> $ </a>
<a href="#display_equation" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Displayed equation..."> $$ </a>
<a href="#insertunorderedlist" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Insert unordered list"><i class="fa fa-list"></i></a>
<a href="#insertorderedlist" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Insert ordered list"><i class="fa fa-list-ol"></i></a>
<a href="#link" data-args="special" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Insert link..."><i class="fa fa-link"></i></a>
<a href="#image" data-args="special" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Insert image..."><i class="fa fa-image"></i></a>
<a href="#table" data-args="special" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Insert table"><i class="fa fa-table"></i></a>
<a href="#horizontalRule" data-args="special" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Insert horizontal line">—</a>
<a href="#SpecialChar" data-args="special" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Insert Special Character ...">Ω</a>
</span>
<span class="btn-group">
<a href="#justifyleft" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Left justify"><i class="fa fa-align-left"></i></a>
<a href="#justifycenter" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Justify center"><i class="fa fa-align-center"></i></a>
<a href="#justifyright" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Right justify"><i class="fa fa-align-right"></i></a>
<a href="#justifyfull" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Justify full"><i class="fa fa-align-justify"></i></a>
<a href="#indent" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Indent/quote selected text"><i class="fa fa-indent"></i></a>
<a href="#unformat" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Remove formatting"><i class="fa fa-remove"></i></a>
<a href="#clean" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Make selected HTML valid"><i class="fa fa-code"></i></a>
</span>
<span class="btn-group">
<span class="btn-group sagews-output-editor-font-face smc-tooltip" data-toggle="tooltip" data-placement="bottom" title="Fonts">
<span class="btn btn-default dropdown-toggle" data-toggle="dropdown" title="Font">
<i class="fa fa-font"></i> <b class="caret"></b>
</span>
<ul class="dropdown-menu">
</ul>
</span>
<span class="btn-group sagews-output-editor-font-size smc-tooltip" data-toggle="tooltip" data-placement="bottom" title="Font size">
<span class="btn btn-default dropdown-toggle" data-toggle="dropdown" title="Text height">
<i class="fa fa-text-height"></i> <b class="caret"></b>
</span>
<ul class="dropdown-menu">
</ul>
</span>
<span class="btn-group sagews-output-editor-block-type smc-tooltip" data-toggle="tooltip" data-placement="bottom" title="Format type">
<span class="btn btn-default dropdown-toggle" data-toggle="dropdown" title="Header">
<i class="fa fa-header"></i> <b class="caret"></b>
</span>
<ul class="dropdown-menu">
</ul>
</span>
</span>
<!-- color menus disabled/broken: see https://github.com/sagemathinc/cocalc/issues/1167 for re-implementing them -->
<span class="btn-group">
<span class="hide sagews-output-editor-foreground-color-selector input-group color smc-tooltip" data-color-format="rgb" data-toggle="tooltip" data-placement="bottom" title="Text color">
<input type="text" style="cursor:pointer" class="form-control">
<span class="input-group-addon" style="padding: 3px;"><i class="fa fa-font" style="height: 16px; width: 16px"></i><b class="caret"></b></span>
</span>
</span>
<span class="btn-group">
<span class="hide sagews-output-editor-background-color-selector input-group color smc-tooltip" data-color-format="rgb" data-toggle="tooltip" data-placement="bottom" title="Text background highlight color">
<input type="text" style="cursor:pointer" class="form-control">
<span class="input-group-addon" style="padding: 3px;"><i class="fa fa-font" style="height: 16px; width: 16px"></i><b class="caret"></b></span>
</span>
</span>
</div>
<div class="webapp-editor-codeedit-buttonbar hide" style="margin: 2px">
<!-- buttonbar.coffee populates all entries -->
</div>
<div class="webapp-editor-redit-buttonbar hide" style="margin: 2px">
<!-- buttonbar.coffee populates the entries -->
</div>
<div class="webapp-editor-julia-edit-buttonbar hide" style="margin: 2px">
<!-- buttonbar.coffee populates the entries -->
</div>
<div class="webapp-editor-sh-edit-buttonbar hide" style="margin: 2px">
<!-- buttonbar.coffee populates the entries -->
</div>
<div class="webapp-editor-fricas-edit-buttonbar hide" style="margin: 2px">
<!-- buttonbar.coffee populates the entries -->
</div>
<div class="webapp-editor-fallback-edit-buttonbar hide" style="margin: 2px">
<a class="btn btn-default" href="#todo">…</a>
</div>
<div class='sagews-output-raw_input'>
<div class="form-inline">
<div class="form-group">
<label class="sagews-output-raw_input-prompt" style="margin-right: 10px;">
</label>
<div class="input-group">
<input class="sagews-output-raw_input-value form-control">
<span class="input-group-btn">
<button class="btn btn-success sagews-output-raw_input-submit" type="button">
<i class="fa fa-check"></i>
</button>
</span>
</div>
</div>
</div>
</div>
</div>
|
webadmin/renameDatabase.css | timoc/scaliendb | div.rename-database-overlay {
position: absolute;
top: 0%;
left: 0%;
width: 100%;
height: 100%;
background-color: black;
z-index:1001;
-moz-opacity: 0.8;
opacity:.80;
filter: alpha(opacity=80);
}
div.rename-database-content {
position: absolute;
top: 25%;
left: 25%;
width: 50%;
height: 50%;
-webkit-border-radius: 10px;
-webkit-box-shadow: 3px 3px 4px #000;
-moz-border-radius: 10px;
-moz-box-shadow: 3px 3px 4px #000;
padding: 20px;
background-color: white;
z-index:1002;
overflow: auto;
text-align: center;
background-color: #EFF5FB;
}
span.rename-database-welcome {
font-size: 32px;
font-weight: bold;
color: #424242;
}
span.rename-database-name {
font-size: 20px;
color: #424242;
}
input.rename-database-input {
font-size: 20px;
text-align: center;
width: 300px;
color: #424242;
}
button.rename-database-button {
-webkit-border-radius: 10px;
-webkit-box-shadow: 3px 3px 4px #000;
-moz-border-radius: 10px;
-moz-box-shadow: 3px 3px 4px #000;
font-size: 20px;
background-color: #045FB4;
color: white;
width: 150px;
}
button.rename-database-button[disabled] {
background-color: #ddd;
}
|
www/templates/sr/existing.html | altinukshini/fixmystreet-mobile | <div data-role="header">
<h1>Prijave problema koje nisu poslate</h1>
</div>
<div data-role="content" role="main">
<div id="existing_report">
<% if ( title ) { %>
<h3><%= title %></h3>
<% } %>
<div class="meta">
<p>
<% if ( category && category != '-- Izaberite kategoriju --' ) { %>
Saved in the <%= category %> category
<% } %>
</p>
<p><% print( moment( created ).fromNow() ) %></p>
</div>
<% if ( file ) { %>
<div class="photo" style="background-image: url(<%= file %>)"></div>
<% } %>
<% if ( details ) { %>
<div class="details"><div><%= details %></div></div>
<% } %>
</div>
<div class="right">
<input id="use_report" type="button" value="Završite prijavu sada" data-role="button" data-theme="a" />
<input id="save_report" type="button" value="Sačuvaj za kasnije" data-role="button" data-theme="a" />
<input id="discard" type="button" value="Odbaci" data-role="button" data-theme="a" />
</div>
</div>
|
datea_api/templates/base.html | lafactura/datea-api | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Datea Backend">
<meta name="author" content="Datea">
<link rel="shortcut icon" href="{{SITE_STATIC}}/ico/favicon.png">
<title>{% block "page_title" %}{% endblock %} | DATEA</title>
<!-- Bootstrap core CSS -->
<link href="{{STATIC_URL}}bstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="{{STATIC_URL}}bstrap/css/jumbotron-narrow.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
{% block "body" %}{% endblock %}
</body>
</html> |
templates/views/Login/RegisterViewModel.html | ArcherSys/ArrowHeadMail | <form class="form fields" action="#/" onsubmit="return false;" data-bind="command: registerCommand">
<div class="fieldset">
<div class="row name" data-bind="css: {'focused': nameFocus(), 'filled': name().length > 0}">
<label for="name" class="title placeholder" data-i18n="LOGIN/LABEL_NAME" data-bind="i18n: 'text'"></label>
<span class="value">
<input id="name" class="input" type="text" spellcheck="false" autocomplete="off" data-bind="value: name, hasfocus: nameFocus, valueUpdate: 'afterkeydown'" />
</span>
</div>
<div class="row login" data-bind="css: {'focused': loginFocus(), 'filled': login().length > 0}">
<label for="reg_login" class="title placeholder" data-i18n="LOGIN/LABEL_LOGIN" data-bind="i18n: 'text'"></label>
<span class="value">
<input id="reg_login" class="input" autocomplete="off" spellcheck="false" type="text" data-bind="value: login, hasfocus: loginFocus, valueUpdate: 'afterkeydown'" />
</span>
<span class="value suffix" data-bind="visible: domains().length > 0">
<span class="text">@</span>
<span class="text" data-bind="text: domain, visible: domains().length === 1"></span>
<select data-bind="visible: domains().length > 1, options: domains, value: selectedDomain"></select>
</span>
</div>
<div class="row password" data-bind="css: {'focused': passwordFocus(), 'filled': password().length > 0}">
<label for="reg_password" class="title placeholder" data-i18n="LOGIN/LABEL_NEW_PASSWORD" data-bind="i18n: 'text'"></label>
<span class="value">
<input id="reg_password" class="input" autocomplete="off" spellcheck="false" type="password" data-bind="value: password, hasfocus: passwordFocus, valueUpdate: 'afterkeydown'" />
</span>
</div>
<div class="row password" data-bind="css: {'focused': confirmPasswordFocus(), 'filled': confirmPassword().length > 0}">
<label for="reg_confirm_password" class="title placeholder" data-i18n="LOGIN/LABEL_CONFIRM_PASSWORD" data-bind="i18n: 'text'"></label>
<span class="value">
<input id="reg_confirm_password" class="input" autocomplete="off" spellcheck="false" type="password" data-bind="value: confirmPassword, hasfocus: confirmPasswordFocus, valueUpdate: 'afterkeydown'" />
</span>
</div>
<!-- ko if: allowQuestionPart -->
<div class="row question" data-bind="css: {'focused': questionFocus(), 'filled': question().length > 0}">
<label class="title placeholder" data-i18n="LOGIN/LABEL_SELECT_QUESTION" data-bind="i18n: 'text'"></label>
<span class="value">
<span class="custom_selector input" data-bind="customSelect: {'control': false, 'expand': 'expand', 'expandState': questionFocus, 'options': registrationQuestions, value: question, optionsText: 'text', optionsValue: 'value'}">
<span class="name" data-bind="text: question"></span>
<span class="control">
<span class="icon"></span>
</span>
<span class="dropdown">
<span class="dropdown_helper">
<span class="dropdown_arrow"><span></span></span>
<span class="dropdown_content">
</span>
</span>
</span>
</span>
</span>
</div>
<div class="row answer" data-bind="visible: visibleYourQuestion, css: {'focused': yourQuestionFocus(), 'filled': yourQuestion().length > 0}">
<label for="reg_your_question" class="title placeholder" data-i18n="LOGIN/LABEL_YOUR_QUESTION" data-bind="i18n: 'text'"></label>
<span class="value">
<input id="reg_your_question" class="input" autocomplete="off" spellcheck="false" type="text" data-bind="value: yourQuestion, hasfocus: yourQuestionFocus, valueUpdate: 'afterkeydown'" />
</span>
</div>
<div class="row answer" data-bind="css: {'focused': answerFocus(), 'filled': answer().length > 0}">
<label for="reg_answer" class="title placeholder" data-i18n="LOGIN/LABEL_ANSWER_QUESTION" data-bind="i18n: 'text'"></label>
<span class="value">
<input id="reg_answer" class="input" autocomplete="off" spellcheck="false" type="text" data-bind="value: answer, hasfocus: answerFocus, valueUpdate: 'afterkeydown'" />
</span>
</div>
<!-- /ko -->
</div>
{%INCLUDE-START/Register-Before-Submit-Button/INCLUDE-END%}
<div class="row buttons">
<button type="submit" class="button login" data-bind="text: registerButtonText, command: registerCommand"></button>
</div>
<div class="row links">
<div class="forgot">
<span class="link" data-bind="click: function () {$parent.gotoRegister(false);}, i18n: 'text'"
data-i18n="LOGIN/LINK_BACK"></span>
</div>
</div>
</form>
|
doc/class-forma_pago.html | CorporacioDigital/iMovers | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="generator" content="ApiGen 2.8.0">
<title>Class forma_pago</title>
<script type="text/javascript" src="resources/combined.js?3770084987"></script>
<script type="text/javascript" src="elementlist.js?553530925"></script>
<link rel="stylesheet" type="text/css" media="all" href="resources/style.css?3505392360">
</head>
<body>
<div id="left">
<div id="menu">
<a href="index.html" title="Overview"><span>Overview</span></a>
<div id="groups">
</div>
<div id="elements">
<h3>Classes</h3>
<ul>
<li><a href="class-agente.html">agente</a></li>
<li><a href="class-albaran_cliente.html">albaran_cliente</a></li>
<li><a href="class-albaran_proveedor.html">albaran_proveedor</a></li>
<li><a href="class-almacen.html">almacen</a></li>
<li><a href="class-articulo.html">articulo</a></li>
<li><a href="class-asiento.html">asiento</a></li>
<li><a href="class-asiento_factura.html">asiento_factura</a></li>
<li><a href="class-balance.html">balance</a></li>
<li><a href="class-balance_cuenta.html">balance_cuenta</a></li>
<li><a href="class-balance_cuenta_a.html">balance_cuenta_a</a></li>
<li><a href="class-banco.html">banco</a></li>
<li><a href="class-caja.html">caja</a></li>
<li><a href="class-cliente.html">cliente</a></li>
<li><a href="class-concepto_partida.html">concepto_partida</a></li>
<li><a href="class-cuenta.html">cuenta</a></li>
<li><a href="class-cuenta_banco.html">cuenta_banco</a></li>
<li><a href="class-cuenta_banco_cliente.html">cuenta_banco_cliente</a></li>
<li><a href="class-cuenta_banco_proveedor.html">cuenta_banco_proveedor</a></li>
<li><a href="class-cuenta_especial.html">cuenta_especial</a></li>
<li><a href="class-direccion_cliente.html">direccion_cliente</a></li>
<li><a href="class-direccion_proveedor.html">direccion_proveedor</a></li>
<li><a href="class-divisa.html">divisa</a></li>
<li><a href="class-ejercicio.html">ejercicio</a></li>
<li><a href="class-empresa.html">empresa</a></li>
<li><a href="class-epigrafe.html">epigrafe</a></li>
<li><a href="class-factura_cliente.html">factura_cliente</a></li>
<li><a href="class-factura_proveedor.html">factura_proveedor</a></li>
<li><a href="class-familia.html">familia</a></li>
<li class="active"><a href="class-forma_pago.html">forma_pago</a></li>
<li><a href="class-fs_access.html">fs_access</a></li>
<li><a href="class-fs_button.html">fs_button</a></li>
<li><a href="class-fs_button_img.html">fs_button_img</a></li>
<li><a href="class-fs_cache.html">fs_cache</a></li>
<li><a href="class-fs_controller.html">fs_controller</a></li>
<li><a href="class-fs_db.html">fs_db</a></li>
<li><a href="class-fs_default_items.html">fs_default_items</a></li>
<li><a href="class-fs_extension.html">fs_extension</a></li>
<li><a href="class-fs_log.html">fs_log</a></li>
<li><a href="class-fs_model.html">fs_model</a></li>
<li><a href="class-fs_mysql.html">fs_mysql</a></li>
<li><a href="class-fs_page.html">fs_page</a></li>
<li><a href="class-fs_pdf.html">fs_pdf</a></li>
<li><a href="class-fs_postgresql.html">fs_postgresql</a></li>
<li><a href="class-fs_printer.html">fs_printer</a></li>
<li><a href="class-fs_user.html">fs_user</a></li>
<li><a href="class-fs_var.html">fs_var</a></li>
<li><a href="class-grupo_clientes.html">grupo_clientes</a></li>
<li><a href="class-grupo_epigrafes.html">grupo_epigrafes</a></li>
<li><a href="class-impuesto.html">impuesto</a></li>
<li><a href="class-linea_albaran_cliente.html">linea_albaran_cliente</a></li>
<li><a href="class-linea_albaran_proveedor.html">linea_albaran_proveedor</a></li>
<li><a href="class-linea_factura_cliente.html">linea_factura_cliente</a></li>
<li><a href="class-linea_factura_proveedor.html">linea_factura_proveedor</a></li>
<li><a href="class-linea_iva_factura_cliente.html">linea_iva_factura_cliente</a></li>
<li><a href="class-linea_iva_factura_proveedor.html">linea_iva_factura_proveedor</a></li>
<li><a href="class-pais.html">pais</a></li>
<li><a href="class-partida.html">partida</a></li>
<li><a href="class-proveedor.html">proveedor</a></li>
<li><a href="class-regularizacion_iva.html">regularizacion_iva</a></li>
<li><a href="class-secuencia.html">secuencia</a></li>
<li><a href="class-secuencia_contabilidad.html">secuencia_contabilidad</a></li>
<li><a href="class-secuencia_ejercicio.html">secuencia_ejercicio</a></li>
<li><a href="class-serie.html">serie</a></li>
<li><a href="class-stock.html">stock</a></li>
<li><a href="class-subcuenta.html">subcuenta</a></li>
<li><a href="class-subcuenta_cliente.html">subcuenta_cliente</a></li>
<li><a href="class-subcuenta_proveedor.html">subcuenta_proveedor</a></li>
<li><a href="class-sucursal.html">sucursal</a></li>
<li><a href="class-tarifa.html">tarifa</a></li>
<li><a href="class-tarifa_articulo.html">tarifa_articulo</a></li>
</ul>
<h3>Functions</h3>
<ul>
<li><a href="function-bround.html">bround</a></li>
<li><a href="function-require_model.html">require_model</a></li>
</ul>
</div>
</div>
</div>
<div id="splitter"></div>
<div id="right">
<div id="rightInner">
<form id="search">
<input type="hidden" name="cx" value="">
<input type="hidden" name="ie" value="UTF-8">
<input type="text" name="q" class="text">
<input type="submit" value="Search">
</form>
<div id="navigation">
<ul>
<li>
<a href="index.html" title="Overview"><span>Overview</span></a>
</li>
<li class="active">
<span>Class</span> </li>
</ul>
<ul>
<li>
<a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a>
</li>
</ul>
<ul>
</ul>
</div>
<div id="content" class="class">
<h1>Class forma_pago</h1>
<div class="description">
<p>Forma de pago de una factura.</p>
</div>
<dl class="tree">
<dd style="padding-left:0px">
<a href="class-fs_model.html"><span>fs_model</span></a>
</dd>
<dd style="padding-left:30px">
<img src="resources/inherit.png" alt="Extended by">
<b><span>forma_pago</span></b>
</dd>
</dl>
<div class="info">
<b>Located at</b> <a href="source-class-forma_pago.html#22-145" title="Go to source code">forma_pago.php</a><br>
</div>
<table class="summary" id="methods">
<caption>Methods summary</caption>
<tr data-order="__construct" id="___construct">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#___construct">#</a>
<code><a href="source-class-forma_pago.html#33-52" title="Go to source code">__construct</a>( <span>type <var>$f</var> = <span class="php-keyword1">FALSE</span></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
<h4>Parameters</h4>
<div class="list"><dl>
<dt><var>$f</var></dt>
<dd><code>type</code><br>$name nombre de la tabla de la base de datos.</dd>
</dl></div>
<h4>Overrides</h4>
<div class="list"><code><a href="class-fs_model.html#___construct">fs_model::__construct()</a></code></div>
</div>
</div></td>
</tr>
<tr data-order="install" id="_install">
<td class="attributes"><code>
protected
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_install">#</a>
<code><a href="source-class-forma_pago.html#54-58" title="Go to source code">install</a>( )</code>
<div class="description short">
<p>Esta función es llamada al crear una tabla. Permite insertar valores en la
tabla.</p>
</div>
<div class="description detailed hidden">
<p>Esta función es llamada al crear una tabla. Permite insertar valores en la
tabla.</p>
</div>
</div></td>
</tr>
<tr data-order="url" id="_url">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_url">#</a>
<code><a href="source-class-forma_pago.html#60-63" title="Go to source code">url</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="is_default" id="_is_default">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_is_default">#</a>
<code><a href="source-class-forma_pago.html#65-68" title="Go to source code">is_default</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="get" id="_get">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_get">#</a>
<code><a href="source-class-forma_pago.html#70-77" title="Go to source code">get</a>( <span>mixed <var>$cod</var></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="exists" id="_exists">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_exists">#</a>
<code><a href="source-class-forma_pago.html#79-85" title="Go to source code">exists</a>( )</code>
<div class="description short">
<p>Esta función devuelve TRUE si los datos del objeto se encuentran en la base
de datos.</p>
</div>
<div class="description detailed hidden">
<p>Esta función devuelve TRUE si los datos del objeto se encuentran en la base
de datos.</p>
</div>
</div></td>
</tr>
<tr data-order="test" id="_test">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_test">#</a>
<code><a href="source-class-forma_pago.html#87-91" title="Go to source code">test</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="save" id="_save">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_save">#</a>
<code><a href="source-class-forma_pago.html#93-117" title="Go to source code">save</a>( )</code>
<div class="description short">
<p>Esta función sirve tanto para insertar como para actualizar los datos del
objeto en la base de datos.</p>
</div>
<div class="description detailed hidden">
<p>Esta función sirve tanto para insertar como para actualizar los datos del
objeto en la base de datos.</p>
</div>
</div></td>
</tr>
<tr data-order="delete" id="_delete">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_delete">#</a>
<code><a href="source-class-forma_pago.html#119-123" title="Go to source code">delete</a>( )</code>
<div class="description short">
<p>Esta función sirve para eliminar los datos del objeto de la base de
datos</p>
</div>
<div class="description detailed hidden">
<p>Esta función sirve para eliminar los datos del objeto de la base de
datos</p>
</div>
</div></td>
</tr>
<tr data-order="all" id="_all">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_all">#</a>
<code><a href="source-class-forma_pago.html#130-144" title="Go to source code">all</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
</table>
<table class="summary inherited">
<caption>Methods inherited from <a href="class-fs_model.html#methods">fs_model</a></caption>
<tr>
<td><code>
<a href="class-fs_model.html#_bin2str">bin2str()</a>,
<a href="class-fs_model.html#_check_table">check_table()</a>,
<a href="class-fs_model.html#_clean_checked_tables">clean_checked_tables()</a>,
<a href="class-fs_model.html#_date_range">date_range()</a>,
<a href="class-fs_model.html#_escape_string">escape_string()</a>,
<a href="class-fs_model.html#_floatcmp">floatcmp()</a>,
<a href="class-fs_model.html#_floatcmp3">floatcmp3()</a>,
<a href="class-fs_model.html#_get_errors">get_errors()</a>,
<a href="class-fs_model.html#_get_xml_table">get_xml_table()</a>,
<a href="class-fs_model.html#_intval">intval()</a>,
<a href="class-fs_model.html#_new_error_msg">new_error_msg()</a>,
<a href="class-fs_model.html#_no_html">no_html()</a>,
<a href="class-fs_model.html#_random_string">random_string()</a>,
<a href="class-fs_model.html#_str2bin">str2bin()</a>,
<a href="class-fs_model.html#_str2bool">str2bool()</a>,
<a href="class-fs_model.html#_var2str">var2str()</a>,
<a href="class-fs_model.html#_var2timesince">var2timesince()</a>
</code></td>
</tr>
</table>
<table class="summary" id="properties">
<caption>Properties summary</caption>
<tr data-order="codpago" id="$codpago">
<td class="attributes"><code>
public
mixed
</code></td>
<td class="name">
<a href="source-class-forma_pago.html#27" title="Go to source code"><var>$codpago</var></a>
</td>
<td class="value"><code></code></td>
<td class="description"><div>
<a href="#$codpago" class="anchor">#</a>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="descripcion" id="$descripcion">
<td class="attributes"><code>
public
mixed
</code></td>
<td class="name">
<a href="source-class-forma_pago.html#28" title="Go to source code"><var>$descripcion</var></a>
</td>
<td class="value"><code></code></td>
<td class="description"><div>
<a href="#$descripcion" class="anchor">#</a>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="genrecibos" id="$genrecibos">
<td class="attributes"><code>
public
mixed
</code></td>
<td class="name">
<a href="source-class-forma_pago.html#29" title="Go to source code"><var>$genrecibos</var></a>
</td>
<td class="value"><code></code></td>
<td class="description"><div>
<a href="#$genrecibos" class="anchor">#</a>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="codcuenta" id="$codcuenta">
<td class="attributes"><code>
public
mixed
</code></td>
<td class="name">
<a href="source-class-forma_pago.html#30" title="Go to source code"><var>$codcuenta</var></a>
</td>
<td class="value"><code></code></td>
<td class="description"><div>
<a href="#$codcuenta" class="anchor">#</a>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="domiciliado" id="$domiciliado">
<td class="attributes"><code>
public
mixed
</code></td>
<td class="name">
<a href="source-class-forma_pago.html#31" title="Go to source code"><var>$domiciliado</var></a>
</td>
<td class="value"><code></code></td>
<td class="description"><div>
<a href="#$domiciliado" class="anchor">#</a>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
</table>
<table class="summary inherited">
<caption>Properties inherited from <a href="class-fs_model.html#properties">fs_model</a></caption>
<tr>
<td><code>
<a href="class-fs_model.html#$base_dir"><var>$base_dir</var></a>,
<a href="class-fs_model.html#$cache"><var>$cache</var></a>,
<a href="class-fs_model.html#$db"><var>$db</var></a>,
<a href="class-fs_model.html#$default_items"><var>$default_items</var></a>,
<a href="class-fs_model.html#$table_name"><var>$table_name</var></a>
</code></td>
</tr>
</table>
</div>
<div id="footer">
API documentation generated by <a href="http://apigen.org">ApiGen 2.8.0</a>
</div>
</div>
</div>
</body>
</html>
|
newhpc/templates/newhpc/english/riy_en_registeration.html | enjaz/enjaz | {% extends 'newhpc/english/english_base.html' %}
{% load staticfiles %}
{% block title %}Registration | HPC 2020{% endblock %}
{% block style %}
.listitem44 {
display: inline-block;
font-size: 1.5em;
list-style-type: none;
padding: 1em;
text-transform: uppercase;
}
.listitem44 span {
display: block;
font-size: 4.5rem;
}
#title {
font-size: 32px;
color: #9d0051;
}
.sub-title {
font-size: 26px!important;
}
.hpc-text {
color: #242b2c!important;
margin-top: 30px;
text-align: justify;
text-align-last: center;
}
{% endblock %}
{% block lang %}
{% url 'newhpc:riy_ar_registration' event_city='riyadh' %}
{% endblock %}
{% block lang2 %}
{% url 'newhpc:riy_ar_registration' event_city='riyadh' %}
{% endblock %}
{% block active_register %}c-active{% endblock %}
{% block content %}
<div class="c-layout-page">
<!-- BEGIN: PAGE CONTENT -->
<!-- BEGIN: CONTENT/STATS/COUNTER-1 -->
<div class="c-content-box c-size-md c-bg-white">
<div class="container">
<div class="c-content-counter-1 c-opt-1">
<div class="c-content-title-1">
<h3 class="c-center c-font-uppercase c-font-bold" id="title">HPC Programs</h3>
<div class="c-line-center"></div>
</div>
<div class="row">
<div class="col-md-4">
<img src="{% static 'newhpc/images/icons/registration/general-icon.png' %}" style="width: 200px;margin-bottom: 20px">
<h3 class="c-title c-first c-font-uppercase c-font-bold sub-title">General Program</h3>
<p class="c-content hpc-text">The General Programs aims through its lectures, panel discussions and workshops to offer topics that concern all
healthcare professionals and students. It also aims to discuss the National Transformation Program 2020 in the health field and its effort
to accomplish vision 2030.</p>
</div>
<div class="col-md-4">
<img src="{% static 'newhpc/images/icons/registration/research-icon.png' %}" style="width: 200px;margin-bottom: 20px">
<h3 class="c-title c-font-uppercase c-font-bold sub-title">Research Program</h3>
<p class="c-content hpc-text">Research is the basis upon which healthcare grows. An imperative area to the success, quality, and advancement of
healthcare. Research provides opportunities that help individuals to pursue and enhance their knowledge in different aspects of the healthcare field.
Health Profession Conference 2020 provides variety of workshops and lectures on how to conduct and build a scientific paper through the Research Program</p>
</div>
<div class="col-md-4">
<img src="{% static 'newhpc/images/icons/registration/colleges-icon.png' %}" style="width: 200px;margin-bottom: 20px">
<h3 class="c-title c-font-uppercase c-font-bold sub-title">Collages’ Programs</h3>
<p class="c-content hpc-text">Pursuing power in health leadership and in solidarity with National Transformation Program. We offer our collages’
programs that will host series of lectures and workshops that will touch the essence of each specialty (Collage of Medicine, Collage of Dentistry,
Collage of Pharmacy, Collage of Applied Medical Sciences, Collage of Nursing and Collage of Public Health).</p>
</div>
</div>
</div>
</div>
</div>
<!-- END: CONTENT/STATS/COUNTER-1 -->
<!-- BEGIN: CONTENT/BARS/BAR-4 -->
<div class="c-content-box c-size-md c-bg-parallax" style="background-color: #242b2c ">
<div class="container">
<div class="c-content-bar-4">
<h3 class="c-font-uppercase c-font-bold" id="head" style="margin: 0px!important;border: 0px!important;direction: ltr!important;">HPC 2020 Countdown</h3>
<ul style="color: white!important;padding: 0px!important;font-weight: 700!important;margin-top: -15px!important;direction: ltr!important;">
<li class="listitem44"><span id="days"></span>Days</li>
<li class="listitem44"><span id="hours"></span>Hours</li>
<li class="listitem44"><span id="minutes"></span>Minutes</li>
<li class="listitem44"><span id="seconds"></span>Seconds</li>
</ul>
</div>
</div>
</div>
<!-- END: CONTENT/BARS/BAR-4 -->
</div>
{% endblock %}
{% block script %}
const second = 1000,
minute = second * 60,
hour = minute * 60,
day = hour * 24;
let countDown = new Date('Jan 28, 2020 00:00:00').getTime(),
x = setInterval(function() {
let now = new Date().getTime(),
distance = countDown - now;
document.getElementById('days').innerText = Math.floor(distance / (day)),
document.getElementById('hours').innerText = Math.floor((distance % (day)) / (hour)),
document.getElementById('minutes').innerText = Math.floor((distance % (hour)) / (minute)),
document.getElementById('seconds').innerText = Math.floor((distance % (minute)) / second);
//do something later when date is reached
//if (distance < 0) {
// clearInterval(x);
// 'IT'S MY BIRTHDAY!;
//}
}, second)
{% endblock %}
|
wiki/docs/2.1/html/classCqrs_1_1Azure_1_1BlobStorage_1_1TableStorageStore_a869eba77358b10fc298f8e13fb21d628.html | Chinchilla-Software-Com/CQRS | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>CQRS.NET: Cqrs.Azure.BlobStorage.TableStorageStore.Update</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX","output/HTML-CSS"],
});
</script><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="ChinChilla-Software-Red.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">CQRS.NET
 <span id="projectnumber">2.1</span>
</div>
<div id="projectbrief">A lightweight enterprise framework to write CQRS, event-sourced and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('classCqrs_1_1Azure_1_1BlobStorage_1_1TableStorageStore_a869eba77358b10fc298f8e13fb21d628.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
<a id="a869eba77358b10fc298f8e13fb21d628"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a869eba77358b10fc298f8e13fb21d628">◆ </a></span>Update() <span class="overload">[2/2]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">override void <a class="el" href="classCqrs_1_1Azure_1_1BlobStorage_1_1TableStorageStore.html">Cqrs.Azure.BlobStorage.TableStorageStore</a>< TData, TCollectionItemData >.Update </td>
<td>(</td>
<td class="paramtype">TData </td>
<td class="paramname"><em>data</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Implements <a class="el" href="classCqrs_1_1Azure_1_1BlobStorage_1_1StorageStore_ae9ca8bfe30040f77e349a4d47b31da70.html#ae9ca8bfe30040f77e349a4d47b31da70">Cqrs.Azure.BlobStorage.StorageStore< TData, CloudTable ></a>.</p>
</div>
</div>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="namespaceCqrs.html">Cqrs</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Azure.html">Azure</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Azure_1_1BlobStorage.html">BlobStorage</a></li><li class="navelem"><a class="el" href="classCqrs_1_1Azure_1_1BlobStorage_1_1TableStorageStore.html">TableStorageStore</a></li>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
</ul>
</div>
</body>
</html>
|
wiki/docs/2.4/html/classCqrs_1_1Repositories_1_1Queries_1_1QueryPredicateExtensions_a185f34dfbcf58429fc407b594c55f511.html | Chinchilla-Software-Com/CQRS | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>CQRS.NET: Cqrs.Repositories.Queries.QueryPredicateExtensions.GetValue< TResult ></title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX","output/HTML-CSS"],
});
</script><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="ChinChilla-Software-Red.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">CQRS.NET
 <span id="projectnumber">2.4</span>
</div>
<div id="projectbrief">A lightweight enterprise Function as a Service (FaaS) framework to write function based serverless and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('classCqrs_1_1Repositories_1_1Queries_1_1QueryPredicateExtensions_a185f34dfbcf58429fc407b594c55f511.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
<a id="a185f34dfbcf58429fc407b594c55f511"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a185f34dfbcf58429fc407b594c55f511">◆ </a></span>GetValue< TResult >() <span class="overload">[4/7]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static TResult Cqrs.Repositories.Queries.QueryPredicateExtensions.GetValue< TResult > </td>
<td>(</td>
<td class="paramtype">this <a class="el" href="classCqrs_1_1Repositories_1_1Queries_1_1QueryParameter.html">QueryParameter</a> </td>
<td class="paramname"><em>queryParameter</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value from the provided <em>queryParameter</em> cast to <em>TResult</em> . </p>
<p>Gets the <a class="el" href="classCqrs_1_1Repositories_1_1Queries_1_1QueryParameter_a0d1c69ffc864aeda2eb515a9e57fbd7a.html#a0d1c69ffc864aeda2eb515a9e57fbd7a" title="The value of the parameter. ">QueryParameter.ParameterValue</a> cast to <em>TResult</em> . </p>
</div>
</div>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="namespaceCqrs.html">Cqrs</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Repositories.html">Repositories</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Repositories_1_1Queries.html">Queries</a></li><li class="navelem"><a class="el" href="classCqrs_1_1Repositories_1_1Queries_1_1QueryPredicateExtensions.html">QueryPredicateExtensions</a></li>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
</ul>
</div>
</body>
</html>
|
wiki/docs/2.4/html/classCqrs_1_1Events_1_1SqlEventStoreDataContext_ae059fb99b1100d4d7fb917b635c1be5d.html | Chinchilla-Software-Com/CQRS | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>CQRS.NET: Cqrs.Events.SqlEventStoreDataContext.New</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX","output/HTML-CSS"],
});
</script><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="ChinChilla-Software-Red.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">CQRS.NET
 <span id="projectnumber">2.4</span>
</div>
<div id="projectbrief">A lightweight enterprise Function as a Service (FaaS) framework to write function based serverless and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('classCqrs_1_1Events_1_1SqlEventStoreDataContext_ae059fb99b1100d4d7fb917b635c1be5d.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
<a id="ae059fb99b1100d4d7fb917b635c1be5d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae059fb99b1100d4d7fb917b635c1be5d">◆ </a></span>New() <span class="overload">[1/2]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static <a class="el" href="classCqrs_1_1Events_1_1SqlEventStoreDataContext.html">SqlEventStoreDataContext</a> Cqrs.Events.SqlEventStoreDataContext.New </td>
<td>(</td>
<td class="paramtype">Type </td>
<td class="paramname"><em>rowType</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">string </td>
<td class="paramname"><em>tableName</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">string </td>
<td class="paramname"><em>fileOrServerOrConnection</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Instantiates a new instance of the <a class="el" href="classCqrs_1_1Events_1_1SqlEventStoreDataContext.html" title="A custom DataContext that supports specifying a table name. ">SqlEventStoreDataContext</a> class by referencing a file source. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">rowType</td><td>The Type of the entity the table hold data for.</td></tr>
<tr><td class="paramname">tableName</td><td>The name of the table.</td></tr>
<tr><td class="paramname">fileOrServerOrConnection</td><td>This argument can be any one of the following: The name of a file where a SQL Server Express database resides. The name of a server where a database is present. In this case the provider uses the default database for a user. A complete connection string. LINQ to SQL just passes the string to the provider without modification. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="namespaceCqrs.html">Cqrs</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Events.html">Events</a></li><li class="navelem"><a class="el" href="classCqrs_1_1Events_1_1SqlEventStoreDataContext.html">SqlEventStoreDataContext</a></li>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
</ul>
</div>
</body>
</html>
|
docs/reference/html/classsigc_1_1bound__const__mem__functor6.html | reven86/libsigcpp-multiplatform | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>libsigc++: sigc::bound_const_mem_functor6< T_return, T_obj, T_arg1, T_arg2, T_arg3, T_arg4, T_arg5, T_arg6 > Class Template Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.7.3 -->
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">libsigc++ <span id="projectnumber">2.2.10</span></div>
</td>
</tr>
</tbody>
</table>
</div>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacesigc.html">sigc</a> </li>
<li class="navelem"><a class="el" href="classsigc_1_1bound__const__mem__functor6.html">bound_const_mem_functor6</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-types">Public Types</a> |
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-attribs">Public Attributes</a> </div>
<div class="headertitle">
<h1>sigc::bound_const_mem_functor6< T_return, T_obj, T_arg1, T_arg2, T_arg3, T_arg4, T_arg5, T_arg6 > Class Template Reference<div class="ingroups"><a class="el" href="group__mem__fun.html">mem_fun()</a></div></h1> </div>
</div>
<div class="contents">
<!-- doxytag: class="sigc::bound_const_mem_functor6" --><!-- doxytag: inherits="sigc::const_mem_functor6" -->
<p><a class="el" href="classsigc_1_1bound__const__mem__functor6.html" title="bound_const_mem_functor6 encapsulates a const method with 6 arguments and an object instance...">bound_const_mem_functor6</a> encapsulates a const method with 6 arguments and an object instance. <a href="#_details">More...</a></p>
<p><code>#include <sigc++/functors/mem_fun.h></code></p>
<div class="dynheader">
Inheritance diagram for sigc::bound_const_mem_functor6< T_return, T_obj, T_arg1, T_arg2, T_arg3, T_arg4, T_arg5, T_arg6 >:</div>
<div class="dyncontent">
<div class="center"><img src="classsigc_1_1bound__const__mem__functor6__inherit__graph.png" border="0" usemap="#sigc_1_1bound__const__mem__functor6_3_01T__return_00_01T__obj_00_01T__arg1_00_01T__arg2_00_01T__arg3_00_01T__arg4_00_01T__arg5_00_01T__arg6_01_4_inherit__map" alt="Inheritance graph"/></div>
<map name="sigc_1_1bound__const__mem__functor6_3_01T__return_00_01T__obj_00_01T__arg1_00_01T__arg2_00_01T__arg3_00_01T__arg4_00_01T__arg5_00_01T__arg6_01_4_inherit__map" id="sigc_1_1bound__const__mem__functor6_3_01T__return_00_01T__obj_00_01T__arg1_00_01T__arg2_00_01T__arg3_00_01T__arg4_00_01T__arg5_00_01T__arg6_01_4_inherit__map">
<area shape="rect" id="node2" href="classsigc_1_1const__mem__functor6.html" title="const_mem_functor6 wraps const methods with 6 argument(s)." alt="" coords="192,5,813,35"/><area shape="rect" id="node4" href="structsigc_1_1functor__base.html" title="A hint to the compiler." alt="" coords="5,5,144,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="classsigc_1_1bound__const__mem__functor6-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9cd70f288cac9b8d7ee9695166f3d306"></a><!-- doxytag: member="sigc::bound_const_mem_functor6::function_type" ref="a9cd70f288cac9b8d7ee9695166f3d306" args="" -->
typedef base_type_::function_type </td><td class="memItemRight" valign="bottom"><b>function_type</b></td></tr>
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classsigc_1_1bound__const__mem__functor6.html#a4c6a29813f84239bfc224e36d3ada58c">bound_const_mem_functor6</a> (const T_obj* _A_obj, function_type _A_func)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Constructs a <a class="el" href="classsigc_1_1bound__const__mem__functor6.html" title="bound_const_mem_functor6 encapsulates a const method with 6 arguments and an object instance...">bound_const_mem_functor6</a> object that wraps the passed method. <a href="#a4c6a29813f84239bfc224e36d3ada58c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classsigc_1_1bound__const__mem__functor6.html#afa0adf0adf9cde73008982d2494f3d7e">bound_const_mem_functor6</a> (const T_obj& _A_obj, function_type _A_func)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Constructs a <a class="el" href="classsigc_1_1bound__const__mem__functor6.html" title="bound_const_mem_functor6 encapsulates a const method with 6 arguments and an object instance...">bound_const_mem_functor6</a> object that wraps the passed method. <a href="#afa0adf0adf9cde73008982d2494f3d7e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">T_return </td><td class="memItemRight" valign="bottom"><a class="el" href="classsigc_1_1bound__const__mem__functor6.html#ae261c6047332e15a354461611299706b">operator()</a> (typename type_trait< T_arg1 >::take _A_a1, typename type_trait< T_arg2 >::take _A_a2, typename type_trait< T_arg3 >::take _A_a3, typename type_trait< T_arg4 >::take _A_a4, typename type_trait< T_arg5 >::take _A_a5, typename type_trait< T_arg6 >::take _A_a6) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Execute the wrapped method operating on the stored instance. <a href="#ae261c6047332e15a354461611299706b"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pub-attribs"></a>
Public Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a152f10d5c46eb9d7d582a6e4cb747baf"></a><!-- doxytag: member="sigc::bound_const_mem_functor6::obj_" ref="a152f10d5c46eb9d7d582a6e4cb747baf" args="" -->
<a class="el" href="classsigc_1_1const__limit__reference.html">const_limit_reference</a>< T_obj > </td><td class="memItemRight" valign="bottom"><b>obj_</b></td></tr>
</table>
<hr/><a name="_details"></a><h2>Detailed Description</h2>
<div class="textblock"><h3>template<class T_return, class T_obj, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_arg5, class T_arg6><br/>
class sigc::bound_const_mem_functor6< T_return, T_obj, T_arg1, T_arg2, T_arg3, T_arg4, T_arg5, T_arg6 ></h3>
<p><a class="el" href="classsigc_1_1bound__const__mem__functor6.html" title="bound_const_mem_functor6 encapsulates a const method with 6 arguments and an object instance...">bound_const_mem_functor6</a> encapsulates a const method with 6 arguments and an object instance. </p>
<p>Use the convenience function <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01587.html#ga58aa3b67eba2b8219e7aec7d4cdebcdb">mem_fun()</a> to create an instance of <a class="el" href="classsigc_1_1bound__const__mem__functor6.html" title="bound_const_mem_functor6 encapsulates a const method with 6 arguments and an object instance...">bound_const_mem_functor6</a>.</p>
<p>The following template arguments are used:</p>
<ul>
<li><em>T_arg1</em> Argument type used in the definition of <a class="el" href="classsigc_1_1bound__const__mem__functor6.html#ae261c6047332e15a354461611299706b" title="Execute the wrapped method operating on the stored instance.">operator()()</a>.</li>
<li><em>T_arg2</em> Argument type used in the definition of <a class="el" href="classsigc_1_1bound__const__mem__functor6.html#ae261c6047332e15a354461611299706b" title="Execute the wrapped method operating on the stored instance.">operator()()</a>.</li>
<li><em>T_arg3</em> Argument type used in the definition of <a class="el" href="classsigc_1_1bound__const__mem__functor6.html#ae261c6047332e15a354461611299706b" title="Execute the wrapped method operating on the stored instance.">operator()()</a>.</li>
<li><em>T_arg4</em> Argument type used in the definition of <a class="el" href="classsigc_1_1bound__const__mem__functor6.html#ae261c6047332e15a354461611299706b" title="Execute the wrapped method operating on the stored instance.">operator()()</a>.</li>
<li><em>T_arg5</em> Argument type used in the definition of <a class="el" href="classsigc_1_1bound__const__mem__functor6.html#ae261c6047332e15a354461611299706b" title="Execute the wrapped method operating on the stored instance.">operator()()</a>.</li>
<li><em>T_arg6</em> Argument type used in the definition of <a class="el" href="classsigc_1_1bound__const__mem__functor6.html#ae261c6047332e15a354461611299706b" title="Execute the wrapped method operating on the stored instance.">operator()()</a>.</li>
<li><em>T_return</em> The return type of <a class="el" href="classsigc_1_1bound__const__mem__functor6.html#ae261c6047332e15a354461611299706b" title="Execute the wrapped method operating on the stored instance.">operator()()</a>.</li>
<li><em>T_obj</em> The object type. </li>
</ul>
</div><hr/><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" id="a4c6a29813f84239bfc224e36d3ada58c"></a><!-- doxytag: member="sigc::bound_const_mem_functor6::bound_const_mem_functor6" ref="a4c6a29813f84239bfc224e36d3ada58c" args="(const T_obj *_A_obj, function_type _A_func)" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template <class T_return , class T_obj , class T_arg1 , class T_arg2 , class T_arg3 , class T_arg4 , class T_arg5 , class T_arg6 > </div>
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classsigc_1_1bound__const__mem__functor6.html">sigc::bound_const_mem_functor6</a>< T_return, T_obj, T_arg1, T_arg2, T_arg3, T_arg4, T_arg5, T_arg6 >::<a class="el" href="classsigc_1_1bound__const__mem__functor6.html">bound_const_mem_functor6</a> </td>
<td>(</td>
<td class="paramtype">const T_obj * </td>
<td class="paramname"><em>_A_obj</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">function_type </td>
<td class="paramname"><em>_A_func</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Constructs a <a class="el" href="classsigc_1_1bound__const__mem__functor6.html" title="bound_const_mem_functor6 encapsulates a const method with 6 arguments and an object instance...">bound_const_mem_functor6</a> object that wraps the passed method. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">_A_obj</td><td>Pointer to instance the method will operate on. </td></tr>
<tr><td class="paramname">_A_func</td><td>Pointer to method will be invoked from <a class="el" href="classsigc_1_1bound__const__mem__functor6.html#ae261c6047332e15a354461611299706b" title="Execute the wrapped method operating on the stored instance.">operator()()</a>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="afa0adf0adf9cde73008982d2494f3d7e"></a><!-- doxytag: member="sigc::bound_const_mem_functor6::bound_const_mem_functor6" ref="afa0adf0adf9cde73008982d2494f3d7e" args="(const T_obj &_A_obj, function_type _A_func)" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template <class T_return , class T_obj , class T_arg1 , class T_arg2 , class T_arg3 , class T_arg4 , class T_arg5 , class T_arg6 > </div>
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classsigc_1_1bound__const__mem__functor6.html">sigc::bound_const_mem_functor6</a>< T_return, T_obj, T_arg1, T_arg2, T_arg3, T_arg4, T_arg5, T_arg6 >::<a class="el" href="classsigc_1_1bound__const__mem__functor6.html">bound_const_mem_functor6</a> </td>
<td>(</td>
<td class="paramtype">const T_obj & </td>
<td class="paramname"><em>_A_obj</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">function_type </td>
<td class="paramname"><em>_A_func</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Constructs a <a class="el" href="classsigc_1_1bound__const__mem__functor6.html" title="bound_const_mem_functor6 encapsulates a const method with 6 arguments and an object instance...">bound_const_mem_functor6</a> object that wraps the passed method. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">_A_obj</td><td>Reference to instance the method will operate on. </td></tr>
<tr><td class="paramname">_A_func</td><td>Pointer to method will be invoked from <a class="el" href="classsigc_1_1bound__const__mem__functor6.html#ae261c6047332e15a354461611299706b" title="Execute the wrapped method operating on the stored instance.">operator()()</a>. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="ae261c6047332e15a354461611299706b"></a><!-- doxytag: member="sigc::bound_const_mem_functor6::operator()" ref="ae261c6047332e15a354461611299706b" args="(typename type_trait< T_arg1 >::take _A_a1, typename type_trait< T_arg2 >::take _A_a2, typename type_trait< T_arg3 >::take _A_a3, typename type_trait< T_arg4 >::take _A_a4, typename type_trait< T_arg5 >::take _A_a5, typename type_trait< T_arg6 >::take _A_a6) const " -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template <class T_return , class T_obj , class T_arg1 , class T_arg2 , class T_arg3 , class T_arg4 , class T_arg5 , class T_arg6 > </div>
<table class="memname">
<tr>
<td class="memname">T_return <a class="el" href="classsigc_1_1bound__const__mem__functor6.html">sigc::bound_const_mem_functor6</a>< T_return, T_obj, T_arg1, T_arg2, T_arg3, T_arg4, T_arg5, T_arg6 >::operator() </td>
<td>(</td>
<td class="paramtype">typename type_trait< T_arg1 >::take </td>
<td class="paramname"><em>_A_a1</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">typename type_trait< T_arg2 >::take </td>
<td class="paramname"><em>_A_a2</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">typename type_trait< T_arg3 >::take </td>
<td class="paramname"><em>_A_a3</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">typename type_trait< T_arg4 >::take </td>
<td class="paramname"><em>_A_a4</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">typename type_trait< T_arg5 >::take </td>
<td class="paramname"><em>_A_a5</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">typename type_trait< T_arg6 >::take </td>
<td class="paramname"><em>_A_a6</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Execute the wrapped method operating on the stored instance. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">_A_a1</td><td>Argument to be passed on to the method. </td></tr>
<tr><td class="paramname">_A_a2</td><td>Argument to be passed on to the method. </td></tr>
<tr><td class="paramname">_A_a3</td><td>Argument to be passed on to the method. </td></tr>
<tr><td class="paramname">_A_a4</td><td>Argument to be passed on to the method. </td></tr>
<tr><td class="paramname">_A_a5</td><td>Argument to be passed on to the method. </td></tr>
<tr><td class="paramname">_A_a6</td><td>Argument to be passed on to the method. </td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The return value of the method invocation. </dd></dl>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Mon Jul 25 2011 09:51:25 for libsigc++ by 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
</body>
</html>
|
wiki/docs/2.2/html/classCqrs_1_1Azure_1_1EventHub_1_1EventBus_1_1Configuration_1_1AzureEventPublisherModule_abe9e74df33da64157b86ee33d6338f17.html | cdmdotnet/CQRS | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>CQRS.NET: Cqrs.Azure.EventHub.EventBus.Configuration.AzureEventPublisherModule.RegisterEventPublisher</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX","output/HTML-CSS"],
});
</script><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="ChinChilla-Software-Red.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">CQRS.NET
 <span id="projectnumber">2.2</span>
</div>
<div id="projectbrief">A lightweight enterprise framework to write CQRS, event-sourced and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('classCqrs_1_1Azure_1_1EventHub_1_1EventBus_1_1Configuration_1_1AzureEventPublisherModule_abe9e74df33da64157b86ee33d6338f17.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
<a id="abe9e74df33da64157b86ee33d6338f17"></a>
<h2 class="memtitle"><span class="permalink"><a href="#abe9e74df33da64157b86ee33d6338f17">◆ </a></span>RegisterEventPublisher()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void <a class="el" href="classCqrs_1_1Azure_1_1EventHub_1_1EventBus_1_1Configuration_1_1AzureEventPublisherModule.html">Cqrs.Azure.EventHub.EventBus.Configuration.AzureEventPublisherModule</a>< TAuthenticationToken >.RegisterEventPublisher </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Register the <a class="el" href="namespaceCqrs.html">Cqrs</a> event publisher </p>
</div>
</div>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="namespaceCqrs.html">Cqrs</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Azure.html">Azure</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Azure_1_1EventHub.html">EventHub</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Azure_1_1EventHub_1_1EventBus.html">EventBus</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Azure_1_1EventHub_1_1EventBus_1_1Configuration.html">Configuration</a></li><li class="navelem"><a class="el" href="classCqrs_1_1Azure_1_1EventHub_1_1EventBus_1_1Configuration_1_1AzureEventPublisherModule.html">AzureEventPublisherModule</a></li>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
</ul>
</div>
</body>
</html>
|
3rdparty/axis121/docs/apiDocs/org/apache/axis/attachments/class-use/MultiPartRelatedInputStream.html | simeshev/parabuild-ci | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.4.2_05) on Tue Jun 14 22:27:19 EDT 2005 -->
<TITLE>
Uses of Class org.apache.axis.attachments.MultiPartRelatedInputStream (Axis API)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="Uses of Class org.apache.axis.attachments.MultiPartRelatedInputStream (Axis API)";
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/axis/attachments/MultiPartRelatedInputStream.html" title="class in org.apache.axis.attachments"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="MultiPartRelatedInputStream.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.axis.attachments.MultiPartRelatedInputStream</B></H2>
</CENTER>
No usage of org.apache.axis.attachments.MultiPartRelatedInputStream
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/axis/attachments/MultiPartRelatedInputStream.html" title="class in org.apache.axis.attachments"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="MultiPartRelatedInputStream.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2005 Apache Web Services Project. All Rights Reserved.
</BODY>
</HTML>
|
3rdparty/jaxen-1.1.1/docs/xref/org/jaxen/expr/AllNodeStep.html | simeshev/parabuild-ci | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /><title>AllNodeStep xref</title>
<link type="text/css" rel="stylesheet" href="../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../apidocs/org/jaxen/expr/AllNodeStep.html">View Javadoc</a></div><pre>
<a name="1" href="#1">1</a> <em class="comment">/*</em>
<a name="2" href="#2">2</a> <em class="comment"> * $Header: /home/projects/jaxen/scm/jaxen/src/java/main/org/jaxen/expr/AllNodeStep.java,v 1.6 2006/11/08 15:41:05 elharo Exp $</em>
<a name="3" href="#3">3</a> <em class="comment"> * $Revision: 1.6 $</em>
<a name="4" href="#4">4</a> <em class="comment"> * $Date: 2006/11/08 15:41:05 $</em>
<a name="5" href="#5">5</a> <em class="comment"> *</em>
<a name="6" href="#6">6</a> <em class="comment"> * ====================================================================</em>
<a name="7" href="#7">7</a> <em class="comment"> *</em>
<a name="8" href="#8">8</a> <em class="comment"> * Copyright 2000-2002 bob mcwhirter & James Strachan.</em>
<a name="9" href="#9">9</a> <em class="comment"> * All rights reserved.</em>
<a name="10" href="#10">10</a> <em class="comment"> *</em>
<a name="11" href="#11">11</a> <em class="comment"> * Redistribution and use in source and binary forms, with or without</em>
<a name="12" href="#12">12</a> <em class="comment"> * modification, are permitted provided that the following conditions are</em>
<a name="13" href="#13">13</a> <em class="comment"> * met:</em>
<a name="14" href="#14">14</a> <em class="comment"> * </em>
<a name="15" href="#15">15</a> <em class="comment"> * * Redistributions of source code must retain the above copyright</em>
<a name="16" href="#16">16</a> <em class="comment"> * notice, this list of conditions and the following disclaimer.</em>
<a name="17" href="#17">17</a> <em class="comment"> * </em>
<a name="18" href="#18">18</a> <em class="comment"> * * Redistributions in binary form must reproduce the above copyright</em>
<a name="19" href="#19">19</a> <em class="comment"> * notice, this list of conditions and the following disclaimer in the</em>
<a name="20" href="#20">20</a> <em class="comment"> * documentation and/or other materials provided with the distribution.</em>
<a name="21" href="#21">21</a> <em class="comment"> * </em>
<a name="22" href="#22">22</a> <em class="comment"> * * Neither the name of the Jaxen Project nor the names of its</em>
<a name="23" href="#23">23</a> <em class="comment"> * contributors may be used to endorse or promote products derived </em>
<a name="24" href="#24">24</a> <em class="comment"> * from this software without specific prior written permission.</em>
<a name="25" href="#25">25</a> <em class="comment"> * </em>
<a name="26" href="#26">26</a> <em class="comment"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS</em>
<a name="27" href="#27">27</a> <em class="comment"> * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED</em>
<a name="28" href="#28">28</a> <em class="comment"> * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A</em>
<a name="29" href="#29">29</a> <em class="comment"> * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER</em>
<a name="30" href="#30">30</a> <em class="comment"> * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,</em>
<a name="31" href="#31">31</a> <em class="comment"> * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,</em>
<a name="32" href="#32">32</a> <em class="comment"> * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR</em>
<a name="33" href="#33">33</a> <em class="comment"> * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF</em>
<a name="34" href="#34">34</a> <em class="comment"> * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING</em>
<a name="35" href="#35">35</a> <em class="comment"> * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS</em>
<a name="36" href="#36">36</a> <em class="comment"> * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</em>
<a name="37" href="#37">37</a> <em class="comment"> *</em>
<a name="38" href="#38">38</a> <em class="comment"> * ====================================================================</em>
<a name="39" href="#39">39</a> <em class="comment"> * This software consists of voluntary contributions made by many </em>
<a name="40" href="#40">40</a> <em class="comment"> * individuals on behalf of the Jaxen Project and was originally </em>
<a name="41" href="#41">41</a> <em class="comment"> * created by bob mcwhirter <[email protected]> and </em>
<a name="42" href="#42">42</a> <em class="comment"> * James Strachan <[email protected]>. For more information on the </em>
<a name="43" href="#43">43</a> <em class="comment"> * Jaxen Project, please see <<a href="http://www.jaxen.org/" target="alexandria_uri">http://www.jaxen.org/</a>>.</em>
<a name="44" href="#44">44</a> <em class="comment"> * </em>
<a name="45" href="#45">45</a> <em class="comment"> * $Id: AllNodeStep.java,v 1.6 2006/11/08 15:41:05 elharo Exp $</em>
<a name="46" href="#46">46</a> <em class="comment"> */</em>
<a name="47" href="#47">47</a> <strong>package</strong> <a href="../../../org/jaxen/expr/package-summary.html">org.jaxen.expr</a>;
<a name="48" href="#48">48</a>
<a name="49" href="#49">49</a>
<a name="50" href="#50">50</a> <em>/**<em>*</em></em>
<a name="51" href="#51">51</a> <em> * Represents the XPath node-test <code>node()</code>.</em>
<a name="52" href="#52">52</a> <em> * </em>
<a name="53" href="#53">53</a> <em> */</em>
<a name="54" href="#54">54</a> <strong>public</strong> <strong>interface</strong> <a href="../../../org/jaxen/expr/AllNodeStep.html">AllNodeStep</a> <strong>extends</strong> <a href="../../../org/jaxen/expr/Step.html">Step</a>
<a name="55" href="#55">55</a> {
<a name="56" href="#56">56</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>
|
osp/notifications/templates/notifications/email/intervention_student_message.html | marklocklear/Online-Student-Profile | <p>{{ student.get_full_name }},</p>
<p>An intervention referral has been submitted on your behalf.</p>
|
design/playlist.css | cfx/videojs-playlist | .vjs-playlist {
background-color: black;
position: absolute;
overflow-y: hidden;
overflow-x: auto;
display: none;
}
.vjs-playlist img {
margin: 10px;
border: 3px solid #555;
border-radius: 6px;
-moz-border-radius: 6px;
width: 125px;
height: 95px;
}
.vjs-playlist img:hover {
border: 3px solid #777;
cursor: pointer;
border-radius: 6px;
-moz-border-radius: 6px;
}
/* Scrollbar
---------------------------------------------------------*/
.vjs-playlist.webkit-scrollbar::-webkit-scrollbar {
width: 10px;
height: 10px;
}
.vjs-playlist.webkit-scrollbar::-webkit-scrollbar-button:start:decrement,
.vjs-playlist::-webkit-scrollbar-button:end:increment {
display: none;
}
.vjs-playlist.webkit-scrollbar::-webkit-scrollbar-track-piece {
background-color: #3b3b3b;
-webkit-border-radius: 6px;
}
.vjs-playlist.webkit-scrollbar::-webkit-scrollbar-thumb {
-webkit-border-radius: 6px;
background: #666 no-repeat center;
}
|
src/modules/gallery/admin/add.html | White4Shadow/open-apexx | <form action="action.php" method="post" target="postframe">
<table width="100%" class="table">
<colgroup>
<col width="200" />
<col />
</colgroup>
<tr class="tableheader"><td colspan="2">{LANG[TITLE_GALLERY_ADD]}</td></tr>
{if SET_GALLERY_SUBGALS}<tr>
<td>{LANG[CREATEIN]}:</td>
<td><select name="parent" onchange="refresh_parent(this);" id="selectbox"><option value="root" style="font-weight:bold;">{LANG[ROOT]}</option>{if PARENT}<option value=""></option>{/if}{PARENT}</select></td>
</tr>{/if}
{if SET_SECTIONS}<tr id="row_section">
<td>{LANG[SECTION]}:<br /><small>({LANG[CTRLMULTI]})</small></td>
<td><select name="secid[]" id="seclist" multiple="multiple">{SECTIONS(SECID)}</select></td>
</tr>{/if}
<tr>
<td>{LANG[TITLE]}:</td>
<td><input type="text" name="title" value="{TITLE}" class="input" maxlength="255" size="100" style="width:400px;" /></td>
</tr>
<tr>
<td>{LANG[DESCRIPTION]}: <small>({LANG[OPTIONAL]})</small></td>
<td><textarea name="description" cols="100" rows="8" style="width:98%;">{DESCRIPTION}</textarea></td>
</tr>
<tr id="row_password">
<td>{LANG[PASSWORD]}: <small>({LANG[OPTIONAL]})</small></td>
<td><input type="text" name="password" value="{PASSWORD}" class="input" size="30" style="width:150px;" /></td>
</tr>
<tr>
<td>{LANG[TAGS]}:<br /><small>({LANG[OPTIONAL]}, {LANG[TAGSINFO]})</small></td>
<td><input type="text" name="tags" value="{TAGS}" size="30" class="input" style="width:400px;" /><div id="taglist" class="taglist"></div></td>
</tr>
<tr>
<td>{LANG[META_DESCRIPTION]}: <small>({LANG[OPTIONAL]})</small></td>
<td><textarea name="meta_description" rows="2" style="width:98%;">{META_DESCRIPTION}</textarea></td>
</tr>
{if MODULE_PRODUCTS}<tr>
<td>{LANG[LINKPRODUCT]}: <small>({LANG[OPTIONAL]})</small></td>
<td><select name="prodid">{PRODUCTS(PRODID)}</select></td>
</tr>{/if}
</table>
<table width="100%" class="table" style="margin:10px 0;">
<tr class="tableheader"><td colspan="2">{LANG[OPTIONS]}</td></tr>
<tr>
<td>
{if SET_GALLERY_SEARCHABLE}<input type="checkbox" name="searchable" id="ip_searchable" value="1"{if SEARCHABLE} checked="checked"{/if} /><label for="ip_searchable"> {LANG[SEARCHABLE]}</label><br />{/if}
{if SET_GALLERY_GALCOMS}<input type="checkbox" name="allowcoms" id="ip_allowcoms" value="1"{if ALLOWCOMS} checked="checked"{/if} /><label for="ip_allowcoms"> {LANG[ALLOWCOMS]}</label><br />{/if}
<span id="row_restricted"><input type="checkbox" name="restricted" id="ip_restricted" value="1"{if RESTRICTED} checked="checked"{/if} style="vertical-align:middle;" /><label for="ip_restricted"> {LANG[RESTRICTED]}</label><br /></span>
{if RIGHT_GALLERY_ENABLE}<input type="checkbox" name="pubnow" id="ip_pubnow" value="1"{if PUBNOW} checked="checked"{/if} /><label for="ip_pubnow"> {LANG[PUBNOW]}</label>{/if}
</td>
</tr>
</table>
<table width="100%" class="table">
<tr class="submit"><td colspan="2"><input type="submit" name="apxsubmit" value="{LANG[SUBMIT_ADD]}" accesskey="s" class="button" />{if RIGHT_GALLERY_PADD} <input type="submit" name="submit2" value='{LANG[SUBMIT_ADDPICS]}' class="button" />{/if}</td></tr>
</table>
<input type="hidden" name="id" value="{ID}" />
<input type="hidden" name="action" value="gallery.add" />
<input type="hidden" name="send" value="1" />
<input type="hidden" name="updateparent" value="{UPDATEPARENT}" />
<input type="hidden" name="sectoken" value="{SECTOKEN}" />
{if !SET_GALLERY_SUBGALS}<input type="hidden" name="parent" value="root" />{/if}
</form>
<script type="text/javascript" src="../lib/yui/connection/connection-min.js"></script>
<script type="text/javascript" src="../lib/yui/datasource/datasource-min.js"></script>
<script type="text/javascript" src="../lib/yui/autocomplete/autocomplete-min.js"></script>
<script type="text/javascript" src="../lib/javascript/tagsuggest.js"></script>
<script type="text/javascript" src="../lib/javascript/objecttoolbox.js"></script>
<script type="text/javascript">
function refresh_parent(obj) {
sec=getobject('row_section');
pwd=getobject('row_password');
restr=getobject('row_restricted');
if ( obj.selectedIndex<=1 ) {
if ( sec!=null ) sec.style.display='';
if ( pwd!=null ) pwd.style.display='';
if ( restr!=null ) restr.style.display='';
}
else {
if ( sec!=null ) sec.style.display='none';
if ( pwd!=null ) pwd.style.display='none';
if ( restr!=null ) restr.style.display='none';
}
}
sel=getobject('selectbox');
if ( sel!=null ) refresh_parent(sel);
yEvent.onDOMReady(function() {
new TagSuggest(document.forms[0].tags, yDom.get('taglist'), 200);
{if RIGHT_PRODUCTS_ADD}new ObjectToolbox(document.forms[0].prodid, 'products.add');{/if}
});
</script>
|
examples/patterns/pull-quotes/small.html | anthonydillon/vanilla-framework | ---
layout: default
title: Pull quote / Small
category: _patterns
---
<blockquote class="p-pull-quote--small">
<p class="p-pull-quote__quote">We want to be able to deliver the same high-quality experience on Linux as we do on other platforms. Snaps allow us to do just that, by giving us the ability to push the latest features straight to our users, no matter what device or distribution they happen to use.</p>
<cite class="p-pull-quote__citation">Jonáš Tajrych, Senior Software Engineer at Skype at Microsoft</cite>
</blockquote>
|
3rdparty/tomcat4131/webapps/tomcat-docs/jk2/jk/printer/quickhowto.html | simeshev/parabuild-ci | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/TR/xhtml1/strict">
<head>
<title>Quick Start HowTo</title>
<!--
Copyright 1999-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<meta content="1999-2004 The Apache Software Foundation" name="copyright"/>
<meta content="$Date: 2004/03/04 04:46:34 $" name="last-changed"/>
<meta content="Henri Gomez" name="author"/>
<meta content="[email protected]" name="email"/>
<link href="..//style.css" type="text/css" rel="stylesheet"/>
<link href="../images/tomcat.ico" rel="shortcut icon"/>
</head>
<body link="#525D76" vlink="#525D76" alink="#525D76" text="#000000" bgcolor="#ffffff">
<a name="TOP"/>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr height="1">
<td class="nil" height="1" bgcolor="#ffffff" width="150">
<img hspace="0" vspace="0" height="1" width="150" border="0" src="../images/pixel.gif"/>
</td>
<td class="nil" height="1" bgcolor="#ffffff" width="*">
<img hspace="0" vspace="0" height="1" width="370" border="0" src="../images/pixel.gif"/>
</td>
</tr>
<tr>
<td width="*" colspan="2" class="logo" bgcolor="#ffffff">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="left">
<img align="left" height="48" width="505" border="0" src="../images/jakarta.gif"/>
</td>
<td align="right">
<img align="right" border="0" src="../images/mod_jk.jpg"/>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" width="*" align="right" class="head" bgcolor="#999999">
<nobr>
<a href="http://www.apache.org/" class="head">Apache Software Foundation</a> |
<a href="http://jakarta.apache.org/" class="head">Jakarta Project</a> |
<a href="http://jakarta.apache.org/tomcat/" class="head">Apache Tomcat</a>
</nobr>
</td>
</tr>
<tr>
<td class="body" valign="top" width="*" bgcolor="#ffffff">
<table cellspacing="4" width="100%" border="0">
<tr>
<td nowrap="true" valign="top" align="left">
<h2>Quick Start HowTo</h2>
</td>
<td nowrap="true" valign="top" align="right">
<img border="0" hspace="0" vspace="0" height="1" width="1" src="../images/void.gif"/>
</td>
</tr>
</table>
<a name="Introduction">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="left" valign="top" class="section" bgcolor="#525D76">
<img border="0" vspace="0" hspace="0" align="left" valign="top" src="../images/corner.gif"/>Introduction</td>
</tr>
</table>
</a>
<p class="section">
This document describes the configuration files used by JK on the
Web Server side for the 'impatients':
<ul>
<li>
<b>
<font color="#333333">workers.properties</font>
</b> is a mandatory file used by the webserver and which
is the same for all JK implementations (Apache/IIS/NES).
</li>
<li>
<b>
<font color="#333333">WebServers</font>
</b> add-ons to be set on the webserver side.
</li>
</ul>
</p>
<p class="section">
We'll give here minimum servers configuration and an example <b>
<font color="#333333">workers.properties</font>
</b>
to be able to install and check quickly your configuration.
</p>
<br/>
<a name="Minimum workers.properties">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="left" valign="top" class="section" bgcolor="#525D76">
<img border="0" vspace="0" hspace="0" align="left" valign="top" src="../images/corner.gif"/>Minimum workers.properties</td>
</tr>
</table>
</a>
<p class="section">
Here is a minimum <b>
<font color="#333333">workers.properties</font>
</b>, using just ajp13 to connect your Apache webserver
to the Tomcat engine, complete documentation is available in <b>
<a href="../jk/workershowto.html">Workers HowTo</a>
</b>.
</p>
<p class="section">
<p class="screen">
<div align="center">
<table bgcolor="#cccccc" cellpadding="2" cellspacing="0" border="1" width="80%">
<tr>
<td align="left" bgcolor="#cccccc">
<div class="screen"># Define 1 real worker using ajp13</div>
<code class="screen">
<nobr>worker.list=worker1</nobr>
</code>
<br/>
<div class="screen"># Set properties for worker1 (ajp13)</div>
<code class="screen">
<nobr>worker.worker1.type=ajp13</nobr>
</code>
<br/>
<code class="screen">
<nobr>worker.worker1.host=localhost</nobr>
</code>
<br/>
<code class="screen">
<nobr>worker.worker1.port=8009</nobr>
</code>
<br/>
<code class="screen">
<nobr>worker.worker1.lbfactor=50</nobr>
</code>
<br/>
<code class="screen">
<nobr>worker.worker1.cachesize=10</nobr>
</code>
<br/>
<code class="screen">
<nobr>worker.worker1.cache_timeout=600</nobr>
</code>
<br/>
<code class="screen">
<nobr>worker.worker1.socket_keepalive=1</nobr>
</code>
<br/>
<code class="screen">
<nobr>worker.worker1.socket_timeout=300</nobr>
</code>
<br/>
</td>
</tr>
</table>
</div>
</p>
</p>
<br/>
<a name="Minimum Apache WebServer configuration">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="left" valign="top" class="section" bgcolor="#525D76">
<img border="0" vspace="0" hspace="0" align="left" valign="top" src="../images/corner.gif"/>Minimum Apache WebServer configuration</td>
</tr>
</table>
</a>
<p class="section">
Here is a minimun informations about Apache configuration, a
complete documentation is available in <b>
<a href="../jk/aphowto.html">Apache HowTo</a>
</b>.
</p>
<p class="section">
You should first have <b>
<font color="#333333">mod_jk.so</font>
</b> (unix) or <b>
<font color="#333333">mod_jk.dll</font>
</b> (Windows) installed
in your Apache module directory (see your Apache documentation to locate it).
</p>
<p class="section">
Usual locations for modules directory on Unix:
<ul>
<li>/usr/lib/apache/</li>
<li>/usr/lib/apache2/</li>
<li>/usr/local/apache/libexec/</li>
</ul>
</p>
<p class="section">
Usual locations for modules directory on Windows :
<ul>
<li>C:\Program Files\Apache Group\Apache\modules\</li>
<li>C:\Program Files\Apache Group\Apache2\modules\</li>
</ul>
</p>
<p class="section">
You'll find prebuilt binaries <b>
<a href="http://jakarta.apache.org/site/binindex.cgi/">here</a>
</b>
</p>
<p class="section">
Here is the minimum which should be set in <b>
<font color="#333333">httpd.conf</font>
</b> directly or
included from another file:
</p>
<p class="section">
Usual locations for configuration directory on Unix:
<ul>
<li>/etc/httpd/conf/</li>
<li>/etc/httpd2/conf/</li>
<li>/usr/local/apache/conf/</li>
</ul>
</p>
<p class="section">
Usual locations for configuration directory on Windows :
<ul>
<li>C:\Program Files\Apache Group\Apache\conf\</li>
<li>C:\Program Files\Apache Group\Apache2\conf\</li>
</ul>
</p>
<p class="section">
<p class="screen">
<div align="center">
<table bgcolor="#cccccc" cellpadding="2" cellspacing="0" border="1" width="80%">
<tr>
<td align="left" bgcolor="#cccccc">
<div class="screen"># Load mod_jk module</div>
<div class="screen"># Update this path to match your modules location</div>
<code class="screen">
<nobr>LoadModule jk_module libexec/mod_jk.so</nobr>
</code>
<br/>
<div class="screen"># Declare the module for <IfModule directive></div>
<code class="screen">
<nobr>AddModule mod_jk.c</nobr>
</code>
<br/>
<div class="screen"># Where to find workers.properties</div>
<div class="screen"># Update this path to match your conf directory location (put workers.properties next to httpd.conf)</div>
<code class="screen">
<nobr>JkWorkersFile /etc/httpd/conf/workers.properties</nobr>
</code>
<br/>
<div class="screen"># Where to put jk logs</div>
<div class="screen"># Update this path to match your logs directory location (put mod_jk.log next to access_log)</div>
<code class="screen">
<nobr>JkLogFile /var/log/httpd/mod_jk.log</nobr>
</code>
<br/>
<div class="screen"># Set the jk log level [debug/error/info]</div>
<code class="screen">
<nobr>JkLogLevel info</nobr>
</code>
<br/>
<div class="screen"># Select the log format</div>
<code class="screen">
<nobr>JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "</nobr>
</code>
<br/>
<div class="screen"># JkOptions indicate to send SSL KEY SIZE, </div>
<code class="screen">
<nobr>JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories</nobr>
</code>
<br/>
<div class="screen"># JkRequestLogFormat set the request format </div>
<code class="screen">
<nobr>JkRequestLogFormat "%w %V %T"</nobr>
</code>
<br/>
<div class="screen"># Send everything for context /examples to worker named worker1 (ajp13)</div>
<code class="screen">
<nobr>JkMount /examples/* worker1</nobr>
</code>
<br/>
</td>
</tr>
</table>
</div>
</p>
</p>
<br/>
<a name="Minimum Domino WebServer configuration">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="left" valign="top" class="section" bgcolor="#525D76">
<img border="0" vspace="0" hspace="0" align="left" valign="top" src="../images/corner.gif"/>Minimum Domino WebServer configuration</td>
</tr>
</table>
</a>
<p class="section">
A complete documentation is available in <b>
<a href="../jk/domhowto.html">Domino HowTo</a>
</b>.
</p>
<p class="todo">
This paragraph has not been written yet, but <b>you</b> can contribute to it.
</p>
<br/>
<a name="Minimum IIS WebServer configuration">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="left" valign="top" class="section" bgcolor="#525D76">
<img border="0" vspace="0" hspace="0" align="left" valign="top" src="../images/corner.gif"/>Minimum IIS WebServer configuration</td>
</tr>
</table>
</a>
<p class="section">
A complete documentation is available in <b>
<a href="../jk/iishowto.html">IIS HowTo</a>
</b>.
</p>
<p class="todo">
This paragraph has not been written yet, but <b>you</b> can contribute to it.
</p>
<br/>
<a name="Minimum NES/iPlanet WebServer configuration">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="left" valign="top" class="section" bgcolor="#525D76">
<img border="0" vspace="0" hspace="0" align="left" valign="top" src="../images/corner.gif"/>Minimum NES/iPlanet WebServer configuration</td>
</tr>
</table>
</a>
<p class="section">
A complete documentation is available in <b>
<a href="../jk/neshowto.html">Netscape/iPlanet HowTo</a>
</b>.
</p>
<p class="todo">
This paragraph has not been written yet, but <b>you</b> can contribute to it.
</p>
<br/>
<a name="Test your configuration">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="left" valign="top" class="section" bgcolor="#525D76">
<img border="0" vspace="0" hspace="0" align="left" valign="top" src="../images/corner.gif"/>Test your configuration</td>
</tr>
</table>
</a>
<p class="section">
(Re)start the Web server and browse to the <b>
<a href="../">http://localhost/examples/</a>
</b>
</p>
<br/>
</td>
</tr>
</table>
</body>
</html>
|
templates/frontOffice/modern/components/smarty/ProductInfos/ProductInfos.html | lopes-vincent/thelia | {loop name="product.infos" type="product" id=$product_id limit="1" with_prev_next_info="1" with_prev_next_visible="1"}
<div class="ProductInfos">
<div class="flex justify-between">
{include file="components/smarty/Title/Title.html" type="h1" title=$TITLE class="Title--left mb-6" nofilter=true}
</div>
<div><span class="">{intl l="Reference"} : </span> {$REF}</div>
{if $CHAPO}
<div class="ProductInfos-chapo my-4 text-lg">
<p>{$CHAPO nofilter}</p>
</div>
{/if}
</div>
{/loop}
|
3rdparty/javamail-1.4.2/docs/javadocs/javax/mail/class-use/Transport.html | simeshev/parabuild-ci | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.5.0_16) on Thu Feb 26 13:28:54 PST 2009 -->
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<TITLE>
Uses of Class javax.mail.Transport (JavaMail API documentation)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="Uses of Class javax.mail.Transport (JavaMail API documentation)";
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../javax/mail/Transport.html" title="class in javax.mail"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?javax/mail/class-use/Transport.html" target="_top"><B>FRAMES</B></A>
<A HREF="Transport.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>javax.mail.Transport</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../javax/mail/Transport.html" title="class in javax.mail">Transport</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#com.sun.mail.smtp"><B>com.sun.mail.smtp</B></A></TD>
<TD>An SMTP protocol provider for the JavaMail API
that provides access to an SMTP server. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#javax.mail"><B>javax.mail</B></A></TD>
<TD>The JavaMail<sup><font size="-2">TM</font></sup> API
provides classes that model a mail system. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#javax.mail.event"><B>javax.mail.event</B></A></TD>
<TD>Listeners and events for the JavaMail API. </TD>
</TR>
</TABLE>
<P>
<A NAME="com.sun.mail.smtp"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../javax/mail/Transport.html" title="class in javax.mail">Transport</A> in <A HREF="../../../com/sun/mail/smtp/package-summary.html">com.sun.mail.smtp</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../javax/mail/Transport.html" title="class in javax.mail">Transport</A> in <A HREF="../../../com/sun/mail/smtp/package-summary.html">com.sun.mail.smtp</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/sun/mail/smtp/SMTPSSLTransport.html" title="class in com.sun.mail.smtp">SMTPSSLTransport</A></B></CODE>
<BR>
This class implements the Transport abstract class using SMTP
over SSL for message submission and transport.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/sun/mail/smtp/SMTPTransport.html" title="class in com.sun.mail.smtp">SMTPTransport</A></B></CODE>
<BR>
This class implements the Transport abstract class using SMTP for
message submission and transport.</TD>
</TR>
</TABLE>
<P>
<A NAME="javax.mail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../javax/mail/Transport.html" title="class in javax.mail">Transport</A> in <A HREF="../../../javax/mail/package-summary.html">javax.mail</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../javax/mail/package-summary.html">javax.mail</A> that return <A HREF="../../../javax/mail/Transport.html" title="class in javax.mail">Transport</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../javax/mail/Transport.html" title="class in javax.mail">Transport</A></CODE></FONT></TD>
<TD><CODE><B>Session.</B><B><A HREF="../../../javax/mail/Session.html#getTransport()">getTransport</A></B>()</CODE>
<BR>
Get a Transport object that implements this user's desired
Transport protcol.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../javax/mail/Transport.html" title="class in javax.mail">Transport</A></CODE></FONT></TD>
<TD><CODE><B>Session.</B><B><A HREF="../../../javax/mail/Session.html#getTransport(javax.mail.Address)">getTransport</A></B>(<A HREF="../../../javax/mail/Address.html" title="class in javax.mail">Address</A> address)</CODE>
<BR>
Get a Transport object that can transport a Message to the
specified address type.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../javax/mail/Transport.html" title="class in javax.mail">Transport</A></CODE></FONT></TD>
<TD><CODE><B>Session.</B><B><A HREF="../../../javax/mail/Session.html#getTransport(javax.mail.Provider)">getTransport</A></B>(<A HREF="../../../javax/mail/Provider.html" title="class in javax.mail">Provider</A> provider)</CODE>
<BR>
Get an instance of the transport specified in the Provider.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../javax/mail/Transport.html" title="class in javax.mail">Transport</A></CODE></FONT></TD>
<TD><CODE><B>Session.</B><B><A HREF="../../../javax/mail/Session.html#getTransport(java.lang.String)">getTransport</A></B>(<A HREF="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> protocol)</CODE>
<BR>
Get a Transport object that implements the specified protocol.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../javax/mail/Transport.html" title="class in javax.mail">Transport</A></CODE></FONT></TD>
<TD><CODE><B>Session.</B><B><A HREF="../../../javax/mail/Session.html#getTransport(javax.mail.URLName)">getTransport</A></B>(<A HREF="../../../javax/mail/URLName.html" title="class in javax.mail">URLName</A> url)</CODE>
<BR>
Get a Transport object for the given URLName.</TD>
</TR>
</TABLE>
<P>
<A NAME="javax.mail.event"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../javax/mail/Transport.html" title="class in javax.mail">Transport</A> in <A HREF="../../../javax/mail/event/package-summary.html">javax.mail.event</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Constructors in <A HREF="../../../javax/mail/event/package-summary.html">javax.mail.event</A> with parameters of type <A HREF="../../../javax/mail/Transport.html" title="class in javax.mail">Transport</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../javax/mail/event/TransportEvent.html#TransportEvent(javax.mail.Transport, int, javax.mail.Address[], javax.mail.Address[], javax.mail.Address[], javax.mail.Message)">TransportEvent</A></B>(<A HREF="../../../javax/mail/Transport.html" title="class in javax.mail">Transport</A> transport,
int type,
<A HREF="../../../javax/mail/Address.html" title="class in javax.mail">Address</A>[] validSent,
<A HREF="../../../javax/mail/Address.html" title="class in javax.mail">Address</A>[] validUnsent,
<A HREF="../../../javax/mail/Address.html" title="class in javax.mail">Address</A>[] invalid,
<A HREF="../../../javax/mail/Message.html" title="class in javax.mail">Message</A> msg)</CODE>
<BR>
Constructor.</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../javax/mail/Transport.html" title="class in javax.mail"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?javax/mail/class-use/Transport.html" target="_top"><B>FRAMES</B></A>
<A HREF="Transport.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2009 <a href="http://www.sun.com">Sun Microsystems, Inc.</a>. All Rights Reserved.
</BODY>
</HTML>
|
static/events/2017-vancouver/registration/index.html | gomex/devopsdays-web | <!DOCTYPE html>
<html itemscope lang="en-us">
<head><meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="utf-8">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><meta name="generator" content="Hugo 0.57.2" />
<meta property="og:title" content="Registration" />
<meta name="twitter:title" content="registration"/>
<meta itemprop="name" content="registration"><meta property="og:description" content="Embed registration iframe/link/etc. " />
<meta name="twitter:description" content="Embed registration iframe/link/etc. " />
<meta itemprop="description" content="Embed registration iframe/link/etc. "><meta name="twitter:site" content="@devopsdays">
<meta property="og:type" content="event" />
<meta property="og:url" content="/events/2017-vancouver/registration/" /><meta name="twitter:creator" content="@devopsdaysyvr" /><meta name="twitter:label1" value="Event" />
<meta name="twitter:data1" value="devopsdays Vancouver 2017" /><meta name="twitter:label2" value="Dates" />
<meta name="twitter:data2" value="March 31 - 1, 2017" /><meta property="og:image" content="https://www.devopsdays.org/img/sharing.jpg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://www.devopsdays.org/img/sharing.jpg" />
<meta itemprop="image" content="https://www.devopsdays.org/img/sharing.jpg" />
<meta property="fb:app_id" content="1904065206497317" /><meta itemprop="wordCount" content="3">
<title>devopsdays Vancouver 2017 - register
</title>
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-9713393-1', 'auto');
ga('send', 'pageview');
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
<link href="/css/site.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700" rel="stylesheet"><link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<link href="/events/index.xml" rel="alternate" type="application/rss+xml" title="DevOpsDays" />
<link href="/events/index.xml" rel="feed" type="application/rss+xml" title="DevOpsDays" />
<script src=/js/devopsdays-min.js></script></head>
<body lang="">
<nav class="navbar navbar-expand-md navbar-light">
<a class="navbar-brand" href="/">
<img src="/img/devopsdays-brain.png" height="30" class="d-inline-block align-top" alt="devopsdays Logo">
DevOpsDays
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto"><li class="nav-item global-navigation"><a class = "nav-link" href="/events">events</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/blog">blog</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/sponsor">sponsor</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/speaking">speaking</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/organizing">organizing</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/about">about</a></li></ul>
</div>
</nav>
<nav class="navbar event-navigation navbar-expand-md navbar-light">
<a href="/events/2017-vancouver" class="nav-link">Vancouver</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar2">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse" id="navbar2">
<ul class="navbar-nav"><li class="nav-item active">
<a class="nav-link" href="/events/2017-vancouver/program">program</a>
</li><li class="nav-item active">
<a class="nav-link" href="/events/2017-vancouver/location">location</a>
</li><li class="nav-item active">
<a class="nav-link" href="/events/2017-vancouver/livestream">livestream</a>
</li><li class="nav-item active">
<a class="nav-link" href="https://www.eventbrite.ca/e/devops-days-vancouver-2017-mar-31st-apr-1st-tickets-29634403298">registration</a>
</li><li class="nav-item active">
<a class="nav-link" href="/events/2017-vancouver/contact">contact</a>
</li><li class="nav-item active">
<a class="nav-link" href="/events/2017-vancouver/conduct">conduct</a>
</li><li class="nav-item active">
<a class="nav-link" href="/events/2017-vancouver/policies">policies</a>
</li></ul>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-md-12"><div class="row">
<div class="col-md-12 content-text"><h1>devopsdays Vancouver - registration</h1>
<div style="width:100%; text-align:left;">
Embed registration iframe/link/etc.
</div></div>
</div>
<br /><div class="row cta-row">
<div class="col-md-12"><h4 class="sponsor-cta">Gold Sponsors</h4></div>
</div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://automic.com/"><img src = "/img/sponsors/automic-before-20170605.png" alt = "Automic" title = "Automic" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.boeingvancouver.com/"><img src = "/img/sponsors/boeing-vancouver.png" alt = "Boeing Vancouver" title = "Boeing Vancouver" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://deis.io/"><img src = "/img/sponsors/deis.png" alt = "Deis" title = "Deis" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.demonware.net/"><img src = "/img/sponsors/demonware.png" alt = "Demonware" title = "Demonware" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.pivotal.io"><img src = "/img/sponsors/pivotal-before-20190307.png" alt = "Pivotal" title = "Pivotal" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.salesforce.com/"><img src = "/img/sponsors/salesforce.png" alt = "Salesforce" title = "Salesforce" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://saucelabs.com"><img src = "/img/sponsors/saucelabs.png" alt = "saucelabs" title = "saucelabs" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.sumologic.com/"><img src = "/img/sponsors/sumologic-before-20181203.png" alt = "SumoLogic" title = "SumoLogic" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.trinimbus.com"><img src = "/img/sponsors/trinimbus-before-20180524.png" alt = "TriNimbus" title = "TriNimbus" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.victorops.com"><img src = "/img/sponsors/victorops-before-20180823.png" alt = "VictorOps" title = "VictorOps" class="img-fluid"></a>
</div></div><div class="row cta-row">
<div class="col-md-12"><h4 class="sponsor-cta">Silver Sponsors</h4></div>
</div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://chef.io"><img src = "/img/sponsors/chef.png" alt = "Chef Software, Inc" title = "Chef Software, Inc" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.netapp.com/us/"><img src = "/img/sponsors/netapp.png" alt = "NetApp" title = "NetApp" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.scalar.ca/"><img src = "/img/sponsors/scalar.png" alt = "Scalar" title = "Scalar" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://careers.unbounce.com/"><img src = "/img/sponsors/unbounce.png" alt = "Unbounce" title = "Unbounce" class="img-fluid"></a>
</div></div><div class="row cta-row">
<div class="col-md-12"><h4 class="sponsor-cta">Bronze Sponsors</h4></div>
</div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.itglue.com/"><img src = "/img/sponsors/itglue.png" alt = "IT Glue" title = "IT Glue" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.opsgenie.com"><img src = "/img/sponsors/opsgenie.png" alt = "OpsGenie" title = "OpsGenie" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.samsung.com/"><img src = "/img/sponsors/samsung-rd.png" alt = "Samsung" title = "Samsung" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://getstat.com/"><img src = "/img/sponsors/statsearchanalytics.png" alt = "STAT Search Analytics" title = "STAT Search Analytics" class="img-fluid"></a>
</div></div><div class="row cta-row">
<div class="col-md-12"><h4 class="sponsor-cta">Coffee Sponsors</h4></div>
</div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.ea.com/"><img src = "/img/sponsors/ea.png" alt = "EA" title = "EA" class="img-fluid"></a>
</div></div><div class="row cta-row">
<div class="col-md-12"><h4 class="sponsor-cta">Happy Hour Sponsors</h4></div>
</div><div class="row sponsor-row"></div><div class="row cta-row">
<div class="col-md-12"><h4 class="sponsor-cta">Friends Sponsors</h4></div>
</div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.aytech.ca/"><img src = "/img/sponsors/ay-tech.png" alt = "A.Y Technologies Inc." title = "A.Y Technologies Inc." class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.pearlfishergroup.com/"><img src = "/img/sponsors/pearlfisher-adaptech.png" alt = "The Pearl Fisher Group" title = "The Pearl Fisher Group" class="img-fluid"></a>
</div></div><br />
</div>
</div>
</div></div>
</div>
<nav class="navbar bottom navbar-light footer-nav-row" style="background-color: #bfbfc1;">
<div class = "row">
<div class = "col-md-12 footer-nav-background">
<div class = "row">
<div class = "col-md-6 col-lg-3 footer-nav-col">
<h3 class="footer-nav">@DEVOPSDAYS</h3>
<div>
<a class="twitter-timeline" data-dnt="true" href="https://twitter.com/devopsdays/lists/devopsdays" data-chrome="noheader" height="440"></a>
<script>
! function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0],
p = /^http:/.test(d.location) ? 'http' : 'https';
if (!d.getElementById(id)) {
js = d.createElement(s);
js.id = id;
js.src = p + "://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
}
}(document, "script", "twitter-wjs");
</script>
</div>
</div>
<div class="col-md-6 col-lg-3 footer-nav-col footer-content">
<h3 class="footer-nav">BLOG</h3><a href = "https://www.devopsdays.org/blog/2019/05/10/10-years-of-devopsdays/"><h1 class = "footer-heading">10 years of devopsdays</h1></a><h2 class="footer-heading">by Kris Buytaert - 10 May, 2019</h2><p class="footer-content">It’s hard to believe but it is almost 10 years ago since #devopsdays happened for the first time in Gent. Back then there were almost 70 of us talking about topics that were of interest to both Operations and Development, we were exchanging our ideas and experiences `on how we were improving the quality of software delivery.
Our ideas got started on the crossroads of Open Source, Agile and early Cloud Adoption.</p><a href = "https://www.devopsdays.org/blog/"><h1 class = "footer-heading">Blogs</h1></a><h2 class="footer-heading">10 May, 2019</h2><p class="footer-content"></p><a href="https://www.devopsdays.org/blog/index.xml">Feed</a>
</div>
<div class="col-md-6 col-lg-3 footer-nav-col">
<h3 class="footer-nav">CFP OPEN</h3><a href = "/events/2019-campinas" class = "footer-content">Campinas</a><br /><a href = "/events/2019-macapa" class = "footer-content">Macapá</a><br /><a href = "/events/2019-shanghai" class = "footer-content">Shanghai</a><br /><a href = "/events/2019-recife" class = "footer-content">Recife</a><br /><a href = "/events/2020-charlotte" class = "footer-content">Charlotte</a><br /><a href = "/events/2020-prague" class = "footer-content">Prague</a><br /><a href = "/events/2020-tokyo" class = "footer-content">Tokyo</a><br /><a href = "/events/2020-salt-lake-city" class = "footer-content">Salt Lake City</a><br />
<br />Propose a talk at an event near you!<br />
</div>
<div class="col-md-6 col-lg-3 footer-nav-col">
<h3 class="footer-nav">About</h3>
devopsdays is a worldwide community conference series for anyone interested in IT improvement.<br /><br />
<a href="/about/" class = "footer-content">About devopsdays</a><br />
<a href="/privacy/" class = "footer-content">Privacy Policy</a><br />
<a href="/conduct/" class = "footer-content">Code of Conduct</a>
<br />
<br />
<a href="https://www.netlify.com">
<img src="/img/netlify-light.png" alt="Deploys by Netlify">
</a>
</div>
</div>
</div>
</div>
</nav>
<script>
$(document).ready(function () {
$("#share").jsSocials({
shares: ["email", {share: "twitter", via: 'devopsdaysyvr'}, "facebook", "linkedin"],
text: 'devopsdays Vancouver - 2017',
showLabel: false,
showCount: false
});
});
</script>
</body>
</html>
|
css/freelancer.css | therebelbeta/fontonite | /*!
* Start Bootstrap - Freelancer Bootstrap Theme (http://startbootstrap.com)
* Code licensed under the Apache License v2.0.
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
*/
body {
overflow-x: hidden;
}
p {
font-size: 20px;
}
p.small {
font-size: 16px;
}
a,
a:hover,
a:focus,
a:active,
a.active {
outline: 0;
color: #18bc9c;
}
h1,
h2,
h3,
h4,
h5,
h6 {
text-transform: uppercase;
font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
}
hr.star-light,
hr.star-primary,
hr.star-dark {
margin: 25px auto 30px;
padding: 0;
max-width: 250px;
border: 0;
border-top: solid 5px;
text-align: center;
}
hr.star-light:after,
hr.star-primary:after,
hr.star-dark:after {
content: "\f005";
display: inline-block;
position: relative;
top: -.8em;
padding: 0 .25em;
font-family: FontAwesome;
font-size: 2em;
}
hr.star-light,
hr.star-dark {
border-color: #fff;
}
hr.star-light:after {
color: #fff;
background-color: #18bc9c;
}
hr.star-dark:after {
color: #fff;
background-color: #2c3e50;
}
hr.star-primary {
border-color: #2c3e50;
}
hr.star-primary:after {
color: #2c3e50;
background-color: #fff;
}
.img-centered {
margin: 0 auto;
}
header {
text-align: center;
color: #fff;
background: #18bc9c;
}
header .container {
padding-top: 100px;
padding-bottom: 50px;
}
header img {
display: block;
margin: 0 auto 20px;
}
header .intro-text .name {
display: block;
text-transform: uppercase;
font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 2em;
font-weight: 700;
}
header .intro-text .skills {
font-size: 1.25em;
font-weight: 300;
}
@media(min-width:768px) {
header .container {
padding-top: 200px;
padding-bottom: 100px;
}
header .intro-text .name {
font-size: 4.75em;
}
header .intro-text .skills {
font-size: 1.75em;
}
}
@media(min-width:768px) {
.navbar-fixed-top {
padding: 25px 0;
-webkit-transition: padding .3s;
-moz-transition: padding .3s;
transition: padding .3s;
}
.navbar-fixed-top .navbar-brand {
font-size: 2em;
-webkit-transition: all .3s;
-moz-transition: all .3s;
transition: all .3s;
}
.navbar-fixed-top.navbar-shrink {
padding: 10px 0;
}
.navbar-fixed-top.navbar-shrink .navbar-brand {
font-size: 1.5em;
}
}
.navbar {
text-transform: uppercase;
font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
}
.navbar a:focus {
outline: 0;
}
.navbar .navbar-nav {
letter-spacing: 1px;
}
.navbar .navbar-nav li a:focus {
outline: 0;
}
.navbar-default,
.navbar-inverse {
border: 0;
}
section {
padding: 100px 0;
}
section h2 {
margin: 0;
font-size: 3em;
}
section.success {
color: #fff;
background: #18bc9c;
}
@media(max-width:767px) {
section {
padding: 75px 0;
}
section.first {
padding-top: 75px;
}
}
#portfolio .portfolio-item {
right: 0;
margin: 0 0 15px;
}
#portfolio .portfolio-item .portfolio-link {
display: block;
position: relative;
margin: 0 auto;
max-width: 400px;
}
#portfolio .portfolio-item .portfolio-link .caption {
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
background: rgba(24, 188, 156, .9);
-webkit-transition: all ease .5s;
-moz-transition: all ease .5s;
transition: all ease .5s;
}
#portfolio .portfolio-item .portfolio-link .caption:hover {
opacity: 1;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content {
position: absolute;
top: 50%;
width: 100%;
height: 20px;
margin-top: -12px;
text-align: center;
font-size: 20px;
color: #fff;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content i {
margin-top: -12px;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content h3,
#portfolio .portfolio-item .portfolio-link .caption .caption-content h4 {
margin: 0;
}
#portfolio * {
z-index: 2;
}
@media(min-width:767px) {
#portfolio .portfolio-item {
margin: 0 0 30px;
}
}
.btn-outline {
margin-top: 15px;
border: solid 2px #fff;
font-size: 20px;
color: #fff;
background: 0 0;
transition: all .3s ease-in-out;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active,
.btn-outline.active {
border: solid 2px #fff;
color: #18bc9c;
background: #fff;
}
.floating-label-form-group {
position: relative;
margin-bottom: 0;
padding-bottom: .5em;
}
.floating-label-form-group input,
.floating-label-form-group textarea {
z-index: 1;
position: relative;
padding-right: 0;
padding-left: 0;
border: 0;
border-radius: 0;
font-size: 1.5em;
background: 0 0;
box-shadow: none!important;
resize: none;
}
.floating-label-form-group label {
display: block;
z-index: 0;
position: relative;
top: 2em;
margin: 0;
font-size: .85em;
line-height: 1.764705882em;
vertical-align: middle;
vertical-align: baseline;
opacity: 0;
-webkit-transition: top .3s ease, opacity .3s ease;
-moz-transition: top .3s ease, opacity .3s ease;
-ms-transition: top .3s ease, opacity .3s ease;
transition: top .3s ease, opacity .3s ease;
}
.floating-label-form-group::not(:first-child) {
padding-left: 14px;
}
.floating-label-form-group-with-value label {
top: 0;
opacity: 1;
}
.floating-label-form-group-with-focus label {
color: #18bc9c;
}
form .row:first-child .floating-label-form-group {
}
footer {
color: #fff;
}
footer h3 {
margin-bottom: 30px;
}
footer .footer-above {
padding-top: 50px;
background-color: #2c3e50;
}
footer .footer-col {
margin-bottom: 50px;
}
footer .footer-below {
padding: 25px 0;
background-color: #233140;
}
.btn-social {
display: inline-block;
width: 50px;
height: 50px;
border: 2px solid #fff;
border-radius: 100%;
text-align: center;
font-size: 20px;
line-height: 45px;
}
.btn:focus,
.btn:active,
.btn.active {
outline: 0;
}
.scroll-top {
z-index: 1049;
position: fixed;
right: 2%;
bottom: 2%;
width: 50px;
height: 50px;
}
.scroll-top .btn {
width: 50px;
height: 50px;
border-radius: 100%;
font-size: 20px;
line-height: 28px;
}
.scroll-top .btn:focus {
outline: 0;
}
.portfolio-modal .modal-content {
padding: 100px 0;
min-height: 100%;
border: 0;
border-radius: 0;
text-align: center;
background-clip: border-box;
-webkit-box-shadow: none;
box-shadow: none;
}
.portfolio-modal .modal-content h2 {
margin: 0;
font-size: 3em;
}
.portfolio-modal .modal-content img {
margin-bottom: 30px;
}
.portfolio-modal .modal-content .item-details {
margin: 30px 0;
}
.portfolio-modal .close-modal {
position: absolute;
top: 25px;
right: 25px;
width: 75px;
height: 75px;
background-color: transparent;
cursor: pointer;
}
.portfolio-modal .close-modal:hover {
opacity: .3;
}
.portfolio-modal .close-modal .lr {
z-index: 1051;
width: 1px;
height: 75px;
margin-left: 35px;
background-color: #2c3e50;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.portfolio-modal .close-modal .lr .rl {
z-index: 1052;
width: 1px;
height: 75px;
background-color: #2c3e50;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.portfolio-modal .modal-backdrop {
display: none;
opacity: 0;
}
.bar {
height: 18px;
background: green;
}
/*
* * jQuery File Upload Plugin CSS 1.3.0
* * https://github.com/blueimp/jQuery-File-Upload
* *
* * Copyright 2013, Sebastian Tschan
* * https://blueimp.net
* *
* * Licensed under the MIT license:
* * http://www.opensource.org/licenses/MIT
* */
.fileinput-button {
position: relative;
overflow: hidden;
}
.fileinput-button input {
position: absolute;
top: 0;
right: 0;
margin: 0;
opacity: 0;
-ms-filter: 'alpha(opacity=0)';
font-size: 200px;
direction: ltr;
cursor: pointer;
}
/* Fixes for IE < 8 */
@media screen\9 {
.fileinput-button input {
filter: alpha(opacity=0);
font-size: 100%;
height: 100%;
}
}
|
JGDMS/src/site/resources/old-static-site/doc/internals/org/apache/river/constants/class-use/TxnConstants.html | pfirmstone/river-internet | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_60) on Mon Mar 28 17:12:17 AEST 2016 -->
<title>Uses of Class org.apache.river.constants.TxnConstants (River-Internet vtrunk API Documentation (internals))</title>
<meta name="date" content="2016-03-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.river.constants.TxnConstants (River-Internet vtrunk API Documentation (internals))";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/river/constants/TxnConstants.html" title="class in org.apache.river.constants">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/river/constants/class-use/TxnConstants.html" target="_top">Frames</a></li>
<li><a href="TxnConstants.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.apache.river.constants.TxnConstants" class="title">Uses of Class<br>org.apache.river.constants.TxnConstants</h2>
</div>
<div class="classUseContainer">No usage of org.apache.river.constants.TxnConstants</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/river/constants/TxnConstants.html" title="class in org.apache.river.constants">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/river/constants/class-use/TxnConstants.html" target="_top">Frames</a></li>
<li><a href="TxnConstants.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright 2007-2013, multiple authors.<br>Licensed under the <a href=http://www.apache.org/licenses/LICENSE-2.0 target=child >Apache License, Version 2.0</a>, see the <a href=../../../../../doc-files/NOTICE target=child >NOTICE</a> file for attributions.</small></p>
</body>
</html>
|
JGDMS/src/site/resources/old-static-site/doc/internals/org/apache/river/start/class-use/SharedActivatableServiceDescriptor.html | pfirmstone/JGDMS | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_60) on Mon Mar 28 17:12:30 AEST 2016 -->
<title>Uses of Class org.apache.river.start.SharedActivatableServiceDescriptor (River-Internet vtrunk API Documentation (internals))</title>
<meta name="date" content="2016-03-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.river.start.SharedActivatableServiceDescriptor (River-Internet vtrunk API Documentation (internals))";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/river/start/SharedActivatableServiceDescriptor.html" title="class in org.apache.river.start">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/river/start/class-use/SharedActivatableServiceDescriptor.html" target="_top">Frames</a></li>
<li><a href="SharedActivatableServiceDescriptor.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.apache.river.start.SharedActivatableServiceDescriptor" class="title">Uses of Class<br>org.apache.river.start.SharedActivatableServiceDescriptor</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../org/apache/river/start/SharedActivatableServiceDescriptor.html" title="class in org.apache.river.start">SharedActivatableServiceDescriptor</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.apache.river.tool.envcheck.plugins">org.apache.river.tool.envcheck.plugins</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.river.tool.envcheck.plugins">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../org/apache/river/start/SharedActivatableServiceDescriptor.html" title="class in org.apache.river.start">SharedActivatableServiceDescriptor</a> in <a href="../../../../../org/apache/river/tool/envcheck/plugins/package-summary.html">org.apache.river.tool.envcheck.plugins</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../org/apache/river/tool/envcheck/plugins/package-summary.html">org.apache.river.tool.envcheck.plugins</a> with parameters of type <a href="../../../../../org/apache/river/start/SharedActivatableServiceDescriptor.html" title="class in org.apache.river.start">SharedActivatableServiceDescriptor</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>private <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></td>
<td class="colLast"><span class="typeNameLabel">CheckPersistence.</span><code><span class="memberNameLink"><a href="../../../../../org/apache/river/tool/envcheck/plugins/CheckPersistence.html#checkDir-java.lang.String-org.apache.river.start.SharedActivatableServiceDescriptor-">checkDir</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> dir,
<a href="../../../../../org/apache/river/start/SharedActivatableServiceDescriptor.html" title="class in org.apache.river.start">SharedActivatableServiceDescriptor</a> d)</code>
<div class="block">Perform a check on the given persistence directory.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><span class="typeNameLabel">CheckPersistence.</span><code><span class="memberNameLink"><a href="../../../../../org/apache/river/tool/envcheck/plugins/CheckPersistence.html#checkDirectory-org.apache.river.start.SharedActivatableServiceDescriptor-">checkDirectory</a></span>(<a href="../../../../../org/apache/river/start/SharedActivatableServiceDescriptor.html" title="class in org.apache.river.start">SharedActivatableServiceDescriptor</a> d)</code>
<div class="block">Launch a subtask for the given descriptor to obtain all the
<code>persistenceDirectory</code> entries.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><span class="typeNameLabel">CheckPersistence.</span><code><span class="memberNameLink"><a href="../../../../../org/apache/river/tool/envcheck/plugins/CheckPersistence.html#checkEntries-java.lang.String:A-org.apache.river.start.SharedActivatableServiceDescriptor-java.lang.String-">checkEntries</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] entries,
<a href="../../../../../org/apache/river/start/SharedActivatableServiceDescriptor.html" title="class in org.apache.river.start">SharedActivatableServiceDescriptor</a> d,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> source)</code>
<div class="block">Check <code>entries</code> for validity.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/river/start/SharedActivatableServiceDescriptor.html" title="class in org.apache.river.start">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/river/start/class-use/SharedActivatableServiceDescriptor.html" target="_top">Frames</a></li>
<li><a href="SharedActivatableServiceDescriptor.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright 2007-2013, multiple authors.<br>Licensed under the <a href=http://www.apache.org/licenses/LICENSE-2.0 target=child >Apache License, Version 2.0</a>, see the <a href=../../../../../doc-files/NOTICE target=child >NOTICE</a> file for attributions.</small></p>
</body>
</html>
|
usef-javadoc/energy/usef/agr/model/class-use/SynchronisationConnection.html | USEF-Foundation/ri.usef.energy | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_102) on Thu Sep 29 16:37:39 CEST 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class energy.usef.agr.model.SynchronisationConnection (usef-root-pom 1.3.6 API)</title>
<meta name="date" content="2016-09-29">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class energy.usef.agr.model.SynchronisationConnection (usef-root-pom 1.3.6 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?energy/usef/agr/model/class-use/SynchronisationConnection.html" target="_top">Frames</a></li>
<li><a href="SynchronisationConnection.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class energy.usef.agr.model.SynchronisationConnection" class="title">Uses of Class<br>energy.usef.agr.model.SynchronisationConnection</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">SynchronisationConnection</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#energy.usef.agr.model">energy.usef.agr.model</a></td>
<td class="colLast">
<div class="block">Model classes of the Aggregator.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#energy.usef.agr.repository">energy.usef.agr.repository</a></td>
<td class="colLast">
<div class="block">Repository classes of the Aggregator.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#energy.usef.agr.service.business">energy.usef.agr.service.business</a></td>
<td class="colLast">
<div class="block">Business classes of the Aggregator.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="energy.usef.agr.model">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">SynchronisationConnection</a> in <a href="../../../../../energy/usef/agr/model/package-summary.html">energy.usef.agr.model</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../energy/usef/agr/model/package-summary.html">energy.usef.agr.model</a> that return <a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">SynchronisationConnection</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">SynchronisationConnection</a></code></td>
<td class="colLast"><span class="typeNameLabel">SynchronisationConnectionStatus.</span><code><span class="memberNameLink"><a href="../../../../../energy/usef/agr/model/SynchronisationConnectionStatus.html#getSynchronisationConnection--">getSynchronisationConnection</a></span>()</code> </td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../energy/usef/agr/model/package-summary.html">energy.usef.agr.model</a> with parameters of type <a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">SynchronisationConnection</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">SynchronisationConnectionStatus.</span><code><span class="memberNameLink"><a href="../../../../../energy/usef/agr/model/SynchronisationConnectionStatus.html#setSynchronisationConnection-energy.usef.agr.model.SynchronisationConnection-">setSynchronisationConnection</a></span>(<a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">SynchronisationConnection</a> synchronisationConnection)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="energy.usef.agr.repository">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">SynchronisationConnection</a> in <a href="../../../../../energy/usef/agr/repository/package-summary.html">energy.usef.agr.repository</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../energy/usef/agr/repository/package-summary.html">energy.usef.agr.repository</a> that return <a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">SynchronisationConnection</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">SynchronisationConnection</a></code></td>
<td class="colLast"><span class="typeNameLabel">SynchronisationConnectionRepository.</span><code><span class="memberNameLink"><a href="../../../../../energy/usef/agr/repository/SynchronisationConnectionRepository.html#findByEntityAddress-java.lang.String-">findByEntityAddress</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> entityAddress)</code>
<div class="block">Gets Synchronisation Connection entity by its entity address.</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../energy/usef/agr/repository/package-summary.html">energy.usef.agr.repository</a> that return types with arguments of type <a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">SynchronisationConnection</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">SynchronisationConnection</a>></code></td>
<td class="colLast"><span class="typeNameLabel">SynchronisationConnectionRepository.</span><code><span class="memberNameLink"><a href="../../../../../energy/usef/agr/repository/SynchronisationConnectionRepository.html#findAll--">findAll</a></span>()</code>
<div class="block">Gets all the connections.</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../energy/usef/agr/repository/package-summary.html">energy.usef.agr.repository</a> with parameters of type <a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">SynchronisationConnection</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">SynchronisationConnectionStatusRepository.</span><code><span class="memberNameLink"><a href="../../../../../energy/usef/agr/repository/SynchronisationConnectionStatusRepository.html#deleteFor-energy.usef.agr.model.SynchronisationConnection-">deleteFor</a></span>(<a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">SynchronisationConnection</a> synchronisationConnection)</code>
<div class="block">Deletes all the <a href="../../../../../energy/usef/agr/model/SynchronisationConnectionStatus.html" title="class in energy.usef.agr.model"><code>SynchronisationConnectionStatus</code></a> object for a .</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="energy.usef.agr.service.business">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">SynchronisationConnection</a> in <a href="../../../../../energy/usef/agr/service/business/package-summary.html">energy.usef.agr.service.business</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../energy/usef/agr/service/business/package-summary.html">energy.usef.agr.service.business</a> that return types with arguments of type <a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">SynchronisationConnection</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">SynchronisationConnection</a>>></code></td>
<td class="colLast"><span class="typeNameLabel">AgrPlanboardBusinessService.</span><code><span class="memberNameLink"><a href="../../../../../energy/usef/agr/service/business/AgrPlanboardBusinessService.html#findConnectionsPerCRO--">findConnectionsPerCRO</a></span>()</code>
<div class="block">Finds all <a href="../../../../../energy/usef/agr/model/CommonReferenceOperator.html" title="class in energy.usef.agr.model"><code>CommonReferenceOperator</code></a>s and <a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model"><code>SynchronisationConnection</code></a>s and put them in a Map, all
<a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model"><code>SynchronisationConnection</code></a>s are send to all <a href="../../../../../energy/usef/agr/model/CommonReferenceOperator.html" title="class in energy.usef.agr.model"><code>CommonReferenceOperator</code></a>s.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../energy/usef/agr/model/SynchronisationConnection.html" title="class in energy.usef.agr.model">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?energy/usef/agr/model/class-use/SynchronisationConnection.html" target="_top">Frames</a></li>
<li><a href="SynchronisationConnection.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2016. All rights reserved.</small></p>
</body>
</html>
|
windows/win32/paramiko-1.14.0/docs/search.html | mytliulei/DCNRobotInstallPackages | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Search — Paramiko documentation</title>
<link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="_static/searchtools.js"></script>
<link rel="top" title="Paramiko documentation" href="index.html" />
<script type="text/javascript">
jQuery(function() { Search.loadIndex("searchindex.js"); });
</script>
<script type="text/javascript" id="searchindexloader"></script>
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9">
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li><a href="index.html">Paramiko documentation</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<h1 id="search-documentation">Search</h1>
<div id="fallback" class="admonition warning">
<script type="text/javascript">$('#fallback').hide();</script>
<p>
Please activate JavaScript to enable the search
functionality.
</p>
</div>
<p>
From here you can search these documents. Enter your search
words into the box below and click "search". Note that the search
function will automatically search for all of the words. Pages
containing fewer words won't appear in the result list.
</p>
<form action="" method="get">
<input type="text" name="q" value="" />
<input type="submit" value="search" />
<span id="search-progress" style="padding-left: 10px"></span>
</form>
<div id="search-results">
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Paramiko</a></h1>
<p class="blurb">A Python implementation of SSHv2.</p>
<p>
<iframe src="http://ghbtns.com/github-btn.html?user=paramiko&repo=paramiko&type=watch&count=true&size=large"
allowtransparency="true" frameborder="0" scrolling="0" width="200px" height="35px"></iframe>
</p>
<p>
<a href="https://travis-ci.org/paramiko/paramiko">
<img
alt="https://secure.travis-ci.org/paramiko/paramiko.png?branch=master"
src="https://secure.travis-ci.org/paramiko/paramiko.png?branch=master"
>
</a>
</p>
<h3>Navigation</h3>
<ul>
<li class="toctree-l1"><a class="reference internal" href="api/channel.html">Channel</a></li>
<li class="toctree-l1"><a class="reference internal" href="api/client.html">Client</a></li>
<li class="toctree-l1"><a class="reference internal" href="api/message.html">Message</a></li>
<li class="toctree-l1"><a class="reference internal" href="api/packet.html">Packetizer</a></li>
<li class="toctree-l1"><a class="reference internal" href="api/transport.html">Transport</a></li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="api/agent.html">SSH Agents</a></li>
<li class="toctree-l1"><a class="reference internal" href="api/hostkeys.html">Host keys / <tt class="docutils literal"><span class="pre">known_hosts</span></tt> files</a></li>
<li class="toctree-l1"><a class="reference internal" href="api/keys.html">Key handling</a></li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="api/config.html">Configuration</a></li>
<li class="toctree-l1"><a class="reference internal" href="api/proxy.html"><tt class="docutils literal"><span class="pre">ProxyCommand</span></tt> support</a></li>
<li class="toctree-l1"><a class="reference internal" href="api/server.html">Server implementation</a></li>
<li class="toctree-l1"><a class="reference internal" href="api/sftp.html">SFTP</a></li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="api/buffered_pipe.html">Buffered pipes</a></li>
<li class="toctree-l1"><a class="reference internal" href="api/file.html">Buffered files</a></li>
<li class="toctree-l1"><a class="reference internal" href="api/pipe.html">Cross-platform pipe implementations</a></li>
<li class="toctree-l1"><a class="reference internal" href="api/ssh_exception.html">Exceptions</a></li>
</ul>
<hr />
<ul>
<li class="toctree-l1"><a href="http://www.paramiko.org">Main website</a></li>
</ul>
<h3>Donate</h3>
<p>
Consider supporting the authors on <a href="https://www.gittip.com/">Gittip</a>:
<iframe style="border: 0; margin: 5px 0 -5px 0; padding: 0;"
src="https://www.gittip.com/bitprophet/widget.html"
width="48pt" height="20pt"></iframe>
</p>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer">
©2014 Jeff Forcier.
|
Powered by <a href="http://sphinx-doc.org/">Sphinx 1.2.2</a>
& <a href="https://github.com/bitprophet/alabaster">Alabaster 0.6.0</a>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-18486793-2']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html> |
www/performance-reports/General/serialize/report.html | aadamowski/fi.java.net | <?xml version="1.0" encoding="UTF-8"?>
<html xmlns:extrep="http://www.sun.com/japex/extendedTestSuiteReport" xmlns:rep="http://www.sun.com/japex/testSuiteReport" xmlns="http://www.w3.org/1999/xhtml">
<link href="report.css" type="text/css" rel="stylesheet"/>
<body>
<table border="0" cellpadding="2">
<tr>
<td valign="middle" width="90">
<p>
<a href="https://japex.dev.java.net">
<img src="small_japex.gif" align="middle" border="0"/>
</a>
</p>
</td>
<td valign="middle">
<h1>Japex Report: FI-serialize</h1>
</td>
</tr>
</table>
<h2>Global Parameters</h2>
<ul>
<li>chartType: barchart</li>
<li>classPath: <table width=750><tr><td>japex/dist/jdsl/FastInfoset.jar;
japex/dist/jdsl/activation.jar;
japex/dist/jdsl/jaxb-api.jar;
japex/dist/jdsl/jaxb-impl.jar;
japex/dist/jdsl/jaxb-xjc.jar;
japex/dist/jdsl/jaxb1-impl.jar;
japex/dist/jdsl/jdsl.jar;
japex/dist/jdsl/jsr173_api.jar;
japex/dist/jdsl/resolver.jar;
japex/dist/jdsl/sjsxp.jar;
japex/dist/jdsl/xercesImpl.jar;
japex/dist/jdsl/xml-apis.jar</td></tr></table></li>
<li>configFile: serialize.xml</li>
<li>dateTime: 23 Jan 2006/13:44:19 EST</li>
<li>includeWarmupRun: false</li>
<li>numberOfThreads: 1</li>
<li>osArchitecture: x86</li>
<li>osName: SunOS</li>
<li>reportsDirectory: reports</li>
<li>resultAxis: normal</li>
<li>resultAxisX: normal</li>
<li>resultUnit: ms</li>
<li>resultUnitX: kbs</li>
<li>runsPerDriver: 1</li>
<li>runTime: 5</li>
<li>version: 1.000</li>
<li>vmInfo: Sun Microsystems Inc. 1.5.0_04-b05</li>
<li>warmupTime: 5</li>
</ul>
<h2>Result Summary
(ms)</h2>
<table width="80%" border="1">
<thead>
<tr>
<th width="15%">
<b>driver</b>
</th>
<th>
<b>resultAritMean</b>
</th>
<th>
<b>resultHarmMean</b>
</th>
<th>
<b>resultGeomMean</b>
</th>
<th>
<b>driverClass</b>
</th>
</tr>
</thead>
<tbody>
<tr>
<td align="right">FastInfosetDOMDriver</td>
<td align="right">
<nobr>10.702</nobr>
</td>
<td align="right">
<nobr>0.121</nobr>
</td>
<td align="right">
<nobr>0.963</nobr>
</td>
<td align="right">
<nobr>com.sun.japex.jdsl.xml.serialize.dom.FastInfosetDOMDriver</nobr>
</td>
</tr>
<tr>
<td align="right">FastInfosetDOM24IndexedContentDriver</td>
<td align="right">
<nobr>10.978</nobr>
</td>
<td align="right">
<nobr>0.123</nobr>
</td>
<td align="right">
<nobr>0.979</nobr>
</td>
<td align="right">
<nobr>com.sun.japex.jdsl.xml.serialize.dom.FastInfosetDOMDriver</nobr>
</td>
</tr>
<tr>
<td align="right">FastInfosetDOMExtVocab24IndexedContentDriver</td>
<td align="right">
<nobr>10.981</nobr>
</td>
<td align="right">
<nobr>0.064</nobr>
</td>
<td align="right">
<nobr>0.794</nobr>
</td>
<td align="right">
<nobr>com.sun.japex.jdsl.xml.serialize.dom.FastInfosetDOMDriver</nobr>
</td>
</tr>
<tr>
<td align="right">XercesDOMXercesXMLSerializerDriver</td>
<td align="right">
<nobr>20.996</nobr>
</td>
<td align="right">
<nobr>0.178</nobr>
</td>
<td align="right">
<nobr>1.550</nobr>
</td>
<td align="right">
<nobr>com.sun.japex.jdsl.xml.serialize.dom.XercesDOMXercesXMLSerializerDriver</nobr>
</td>
</tr>
</tbody>
</table>
<br/>
<br/>
<center>
<img src="result.jpg"/>
</center>
<br/>
<br/>
<h2>Driver: FastInfosetDOMDriver</h2>
<p>
<ul>
<li>jdsl.attributeValueSizeLimit: n/a</li>
<li>jdsl.characterContentChunkSizeLimit: n/a</li>
<li>jdsl.externalVocabulary: n/a</li>
</ul>
</p>
<table width="80%" border="1">
<thead>
<tr>
<th>
<b>testCase</b>
</th>
<th>
<b>resultValue</b>
</th>
<th>
<b>xmlfile</b>
</th>
</tr>
</thead>
<tbody>
<tr>
<td align="right">inv1.xml</td>
<td align="right">
<nobr>0.119</nobr>
</td>
<td align="left">
<nobr>data/inv1.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv10.xml</td>
<td align="right">
<nobr>0.246</nobr>
</td>
<td align="left">
<nobr>data/inv10.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv50.xml</td>
<td align="right">
<nobr>0.828</nobr>
</td>
<td align="left">
<nobr>data/inv50.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv100.xml</td>
<td align="right">
<nobr>1.556</nobr>
</td>
<td align="left">
<nobr>data/inv100.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv500.xml</td>
<td align="right">
<nobr>10.087</nobr>
</td>
<td align="left">
<nobr>data/inv500.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv1000.xml</td>
<td align="right">
<nobr>20.269</nobr>
</td>
<td align="left">
<nobr>data/inv1000.xml</nobr>
</td>
</tr>
<tr>
<td align="right">soap1.xml</td>
<td align="right">
<nobr>0.025</nobr>
</td>
<td align="left">
<nobr>data/soap1.xml</nobr>
</td>
</tr>
<tr>
<td align="right">soap2.xml</td>
<td align="right">
<nobr>0.027</nobr>
</td>
<td align="left">
<nobr>data/soap2.xml</nobr>
</td>
</tr>
<tr>
<td align="right">soap3.xml</td>
<td align="right">
<nobr>0.028</nobr>
</td>
<td align="left">
<nobr>data/soap3.xml</nobr>
</td>
</tr>
<tr>
<td align="right">soap4.xml</td>
<td align="right">
<nobr>3.133</nobr>
</td>
<td align="left">
<nobr>data/soap4.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db10.xml</td>
<td align="right">
<nobr>0.049</nobr>
</td>
<td align="left">
<nobr>data/db10.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db50.xml</td>
<td align="right">
<nobr>0.207</nobr>
</td>
<td align="left">
<nobr>data/db50.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db100.xml</td>
<td align="right">
<nobr>0.410</nobr>
</td>
<td align="left">
<nobr>data/db100.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db500.xml</td>
<td align="right">
<nobr>2.034</nobr>
</td>
<td align="left">
<nobr>data/db500.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db1000.xml</td>
<td align="right">
<nobr>5.473</nobr>
</td>
<td align="left">
<nobr>data/db1000.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db10000.xml</td>
<td align="right">
<nobr>60.034</nobr>
</td>
<td align="left">
<nobr>data/db10000.xml</nobr>
</td>
</tr>
<tr>
<td align="right">xsl1.xml</td>
<td align="right">
<nobr>0.037</nobr>
</td>
<td align="left">
<nobr>data/xsl1.xml</nobr>
</td>
</tr>
<tr>
<td align="right">xsl2.xml</td>
<td align="right">
<nobr>0.175</nobr>
</td>
<td align="left">
<nobr>data/xsl2.xml</nobr>
</td>
</tr>
<tr>
<td align="right">xsl3.xml</td>
<td align="right">
<nobr>0.567</nobr>
</td>
<td align="left">
<nobr>data/xsl3.xml</nobr>
</td>
</tr>
<tr>
<td align="right">xsl4.xml</td>
<td align="right">
<nobr>11.067</nobr>
</td>
<td align="left">
<nobr>data/xsl4.xml</nobr>
</td>
</tr>
<tr>
<td align="right">periodic.xml</td>
<td align="right">
<nobr>1.925</nobr>
</td>
<td align="left">
<nobr>data/periodic.xml</nobr>
</td>
</tr>
<tr>
<td align="right">weblog.xml</td>
<td align="right">
<nobr>68.896</nobr>
</td>
<td align="left">
<nobr>data/weblog.xml</nobr>
</td>
</tr>
<tr>
<td align="right">factbook.xml</td>
<td align="right">
<nobr>58.955</nobr>
</td>
<td align="left">
<nobr>data/factbook.xml</nobr>
</td>
</tr>
</tbody>
</table>
<br/>
<h2>Driver: FastInfosetDOM24IndexedContentDriver</h2>
<p>
<ul>
<li>jdsl.attributeValueSizeLimit: 24</li>
<li>jdsl.characterContentChunkSizeLimit: 24</li>
<li>jdsl.externalVocabulary: n/a</li>
</ul>
</p>
<table width="80%" border="1">
<thead>
<tr>
<th>
<b>testCase</b>
</th>
<th>
<b>resultValue</b>
</th>
<th>
<b>xmlfile</b>
</th>
</tr>
</thead>
<tbody>
<tr>
<td align="right">inv1.xml</td>
<td align="right">
<nobr>0.123</nobr>
</td>
<td align="left">
<nobr>data/inv1.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv10.xml</td>
<td align="right">
<nobr>0.247</nobr>
</td>
<td align="left">
<nobr>data/inv10.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv50.xml</td>
<td align="right">
<nobr>0.801</nobr>
</td>
<td align="left">
<nobr>data/inv50.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv100.xml</td>
<td align="right">
<nobr>1.511</nobr>
</td>
<td align="left">
<nobr>data/inv100.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv500.xml</td>
<td align="right">
<nobr>9.842</nobr>
</td>
<td align="left">
<nobr>data/inv500.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv1000.xml</td>
<td align="right">
<nobr>19.648</nobr>
</td>
<td align="left">
<nobr>data/inv1000.xml</nobr>
</td>
</tr>
<tr>
<td align="right">soap1.xml</td>
<td align="right">
<nobr>0.024</nobr>
</td>
<td align="left">
<nobr>data/soap1.xml</nobr>
</td>
</tr>
<tr>
<td align="right">soap2.xml</td>
<td align="right">
<nobr>0.028</nobr>
</td>
<td align="left">
<nobr>data/soap2.xml</nobr>
</td>
</tr>
<tr>
<td align="right">soap3.xml</td>
<td align="right">
<nobr>0.029</nobr>
</td>
<td align="left">
<nobr>data/soap3.xml</nobr>
</td>
</tr>
<tr>
<td align="right">soap4.xml</td>
<td align="right">
<nobr>3.164</nobr>
</td>
<td align="left">
<nobr>data/soap4.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db10.xml</td>
<td align="right">
<nobr>0.051</nobr>
</td>
<td align="left">
<nobr>data/db10.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db50.xml</td>
<td align="right">
<nobr>0.222</nobr>
</td>
<td align="left">
<nobr>data/db50.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db100.xml</td>
<td align="right">
<nobr>0.434</nobr>
</td>
<td align="left">
<nobr>data/db100.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db500.xml</td>
<td align="right">
<nobr>2.081</nobr>
</td>
<td align="left">
<nobr>data/db500.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db1000.xml</td>
<td align="right">
<nobr>5.551</nobr>
</td>
<td align="left">
<nobr>data/db1000.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db10000.xml</td>
<td align="right">
<nobr>57.967</nobr>
</td>
<td align="left">
<nobr>data/db10000.xml</nobr>
</td>
</tr>
<tr>
<td align="right">xsl1.xml</td>
<td align="right">
<nobr>0.040</nobr>
</td>
<td align="left">
<nobr>data/xsl1.xml</nobr>
</td>
</tr>
<tr>
<td align="right">xsl2.xml</td>
<td align="right">
<nobr>0.176</nobr>
</td>
<td align="left">
<nobr>data/xsl2.xml</nobr>
</td>
</tr>
<tr>
<td align="right">xsl3.xml</td>
<td align="right">
<nobr>0.560</nobr>
</td>
<td align="left">
<nobr>data/xsl3.xml</nobr>
</td>
</tr>
<tr>
<td align="right">xsl4.xml</td>
<td align="right">
<nobr>11.448</nobr>
</td>
<td align="left">
<nobr>data/xsl4.xml</nobr>
</td>
</tr>
<tr>
<td align="right">periodic.xml</td>
<td align="right">
<nobr>2.043</nobr>
</td>
<td align="left">
<nobr>data/periodic.xml</nobr>
</td>
</tr>
<tr>
<td align="right">weblog.xml</td>
<td align="right">
<nobr>71.351</nobr>
</td>
<td align="left">
<nobr>data/weblog.xml</nobr>
</td>
</tr>
<tr>
<td align="right">factbook.xml</td>
<td align="right">
<nobr>65.148</nobr>
</td>
<td align="left">
<nobr>data/factbook.xml</nobr>
</td>
</tr>
</tbody>
</table>
<br/>
<h2>Driver: FastInfosetDOMExtVocab24IndexedContentDriver</h2>
<p>
<ul>
<li>jdsl.attributeValueSizeLimit: 24</li>
<li>jdsl.characterContentChunkSizeLimit: 24</li>
<li>jdsl.externalVocabulary: true</li>
</ul>
</p>
<table width="80%" border="1">
<thead>
<tr>
<th>
<b>testCase</b>
</th>
<th>
<b>resultValue</b>
</th>
<th>
<b>xmlfile</b>
</th>
</tr>
</thead>
<tbody>
<tr>
<td align="right">inv1.xml</td>
<td align="right">
<nobr>0.090</nobr>
</td>
<td align="left">
<nobr>data/inv1.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv10.xml</td>
<td align="right">
<nobr>0.209</nobr>
</td>
<td align="left">
<nobr>data/inv10.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv50.xml</td>
<td align="right">
<nobr>0.742</nobr>
</td>
<td align="left">
<nobr>data/inv50.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv100.xml</td>
<td align="right">
<nobr>1.408</nobr>
</td>
<td align="left">
<nobr>data/inv100.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv500.xml</td>
<td align="right">
<nobr>9.339</nobr>
</td>
<td align="left">
<nobr>data/inv500.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv1000.xml</td>
<td align="right">
<nobr>19.285</nobr>
</td>
<td align="left">
<nobr>data/inv1000.xml</nobr>
</td>
</tr>
<tr>
<td align="right">soap1.xml</td>
<td align="right">
<nobr>0.014</nobr>
</td>
<td align="left">
<nobr>data/soap1.xml</nobr>
</td>
</tr>
<tr>
<td align="right">soap2.xml</td>
<td align="right">
<nobr>0.012</nobr>
</td>
<td align="left">
<nobr>data/soap2.xml</nobr>
</td>
</tr>
<tr>
<td align="right">soap3.xml</td>
<td align="right">
<nobr>0.014</nobr>
</td>
<td align="left">
<nobr>data/soap3.xml</nobr>
</td>
</tr>
<tr>
<td align="right">soap4.xml</td>
<td align="right">
<nobr>2.887</nobr>
</td>
<td align="left">
<nobr>data/soap4.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db10.xml</td>
<td align="right">
<nobr>0.043</nobr>
</td>
<td align="left">
<nobr>data/db10.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db50.xml</td>
<td align="right">
<nobr>0.201</nobr>
</td>
<td align="left">
<nobr>data/db50.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db100.xml</td>
<td align="right">
<nobr>0.401</nobr>
</td>
<td align="left">
<nobr>data/db100.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db500.xml</td>
<td align="right">
<nobr>1.952</nobr>
</td>
<td align="left">
<nobr>data/db500.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db1000.xml</td>
<td align="right">
<nobr>5.246</nobr>
</td>
<td align="left">
<nobr>data/db1000.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db10000.xml</td>
<td align="right">
<nobr>62.476</nobr>
</td>
<td align="left">
<nobr>data/db10000.xml</nobr>
</td>
</tr>
<tr>
<td align="right">xsl1.xml</td>
<td align="right">
<nobr>0.014</nobr>
</td>
<td align="left">
<nobr>data/xsl1.xml</nobr>
</td>
</tr>
<tr>
<td align="right">xsl2.xml</td>
<td align="right">
<nobr>0.139</nobr>
</td>
<td align="left">
<nobr>data/xsl2.xml</nobr>
</td>
</tr>
<tr>
<td align="right">xsl3.xml</td>
<td align="right">
<nobr>0.513</nobr>
</td>
<td align="left">
<nobr>data/xsl3.xml</nobr>
</td>
</tr>
<tr>
<td align="right">xsl4.xml</td>
<td align="right">
<nobr>11.289</nobr>
</td>
<td align="left">
<nobr>data/xsl4.xml</nobr>
</td>
</tr>
<tr>
<td align="right">periodic.xml</td>
<td align="right">
<nobr>1.952</nobr>
</td>
<td align="left">
<nobr>data/periodic.xml</nobr>
</td>
</tr>
<tr>
<td align="right">weblog.xml</td>
<td align="right">
<nobr>72.356</nobr>
</td>
<td align="left">
<nobr>data/weblog.xml</nobr>
</td>
</tr>
<tr>
<td align="right">factbook.xml</td>
<td align="right">
<nobr>61.988</nobr>
</td>
<td align="left">
<nobr>data/factbook.xml</nobr>
</td>
</tr>
</tbody>
</table>
<br/>
<h2>Driver: XercesDOMXercesXMLSerializerDriver</h2>
<p>
<ul>
<li>jdsl.attributeValueSizeLimit: n/a</li>
<li>jdsl.characterContentChunkSizeLimit: n/a</li>
<li>jdsl.externalVocabulary: n/a</li>
</ul>
</p>
<table width="80%" border="1">
<thead>
<tr>
<th>
<b>testCase</b>
</th>
<th>
<b>resultValue</b>
</th>
<th>
<b>xmlfile</b>
</th>
</tr>
</thead>
<tbody>
<tr>
<td align="right">inv1.xml</td>
<td align="right">
<nobr>0.158</nobr>
</td>
<td align="left">
<nobr>data/inv1.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv10.xml</td>
<td align="right">
<nobr>0.377</nobr>
</td>
<td align="left">
<nobr>data/inv10.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv50.xml</td>
<td align="right">
<nobr>1.358</nobr>
</td>
<td align="left">
<nobr>data/inv50.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv100.xml</td>
<td align="right">
<nobr>2.592</nobr>
</td>
<td align="left">
<nobr>data/inv100.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv500.xml</td>
<td align="right">
<nobr>15.100</nobr>
</td>
<td align="left">
<nobr>data/inv500.xml</nobr>
</td>
</tr>
<tr>
<td align="right">inv1000.xml</td>
<td align="right">
<nobr>30.568</nobr>
</td>
<td align="left">
<nobr>data/inv1000.xml</nobr>
</td>
</tr>
<tr>
<td align="right">soap1.xml</td>
<td align="right">
<nobr>0.040</nobr>
</td>
<td align="left">
<nobr>data/soap1.xml</nobr>
</td>
</tr>
<tr>
<td align="right">soap2.xml</td>
<td align="right">
<nobr>0.042</nobr>
</td>
<td align="left">
<nobr>data/soap2.xml</nobr>
</td>
</tr>
<tr>
<td align="right">soap3.xml</td>
<td align="right">
<nobr>0.046</nobr>
</td>
<td align="left">
<nobr>data/soap3.xml</nobr>
</td>
</tr>
<tr>
<td align="right">soap4.xml</td>
<td align="right">
<nobr>4.801</nobr>
</td>
<td align="left">
<nobr>data/soap4.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db10.xml</td>
<td align="right">
<nobr>0.078</nobr>
</td>
<td align="left">
<nobr>data/db10.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db50.xml</td>
<td align="right">
<nobr>0.329</nobr>
</td>
<td align="left">
<nobr>data/db50.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db100.xml</td>
<td align="right">
<nobr>0.647</nobr>
</td>
<td align="left">
<nobr>data/db100.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db500.xml</td>
<td align="right">
<nobr>3.180</nobr>
</td>
<td align="left">
<nobr>data/db500.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db1000.xml</td>
<td align="right">
<nobr>7.617</nobr>
</td>
<td align="left">
<nobr>data/db1000.xml</nobr>
</td>
</tr>
<tr>
<td align="right">db10000.xml</td>
<td align="right">
<nobr>76.696</nobr>
</td>
<td align="left">
<nobr>data/db10000.xml</nobr>
</td>
</tr>
<tr>
<td align="right">xsl1.xml</td>
<td align="right">
<nobr>0.038</nobr>
</td>
<td align="left">
<nobr>data/xsl1.xml</nobr>
</td>
</tr>
<tr>
<td align="right">xsl2.xml</td>
<td align="right">
<nobr>0.285</nobr>
</td>
<td align="left">
<nobr>data/xsl2.xml</nobr>
</td>
</tr>
<tr>
<td align="right">xsl3.xml</td>
<td align="right">
<nobr>0.988</nobr>
</td>
<td align="left">
<nobr>data/xsl3.xml</nobr>
</td>
</tr>
<tr>
<td align="right">xsl4.xml</td>
<td align="right">
<nobr>19.432</nobr>
</td>
<td align="left">
<nobr>data/xsl4.xml</nobr>
</td>
</tr>
<tr>
<td align="right">periodic.xml</td>
<td align="right">
<nobr>4.164</nobr>
</td>
<td align="left">
<nobr>data/periodic.xml</nobr>
</td>
</tr>
<tr>
<td align="right">weblog.xml</td>
<td align="right">
<nobr>136.872</nobr>
</td>
<td align="left">
<nobr>data/weblog.xml</nobr>
</td>
</tr>
<tr>
<td align="right">factbook.xml</td>
<td align="right">
<nobr>177.500</nobr>
</td>
<td align="left">
<nobr>data/factbook.xml</nobr>
</td>
</tr>
</tbody>
</table>
<br/>
<h2>Results Per Test</h2>
<br/>
<center>
<img src="testcase0.jpg"/>
</center>
<br/>
<br/>
<center>
<img src="testcase1.jpg"/>
</center>
<br/>
<br/>
<center>
<img src="testcase2.jpg"/>
</center>
<br/>
<br/>
<center>
<img src="testcase3.jpg"/>
</center>
<br/>
<br/>
<center>
<img src="testcase4.jpg"/>
</center>
<br/>
<br/>
<br/>
<small>
<hr/>
<font size="-2">
Generated using <a href="https://japex.dev.java.net">Japex</a> version
1.00</font>
</small>
</body>
</html>
|
docs/dev/dollar-script/apidocs/dollar/internal/runtime/script/api/class-use/HasKeyword.html | neilellis/dollar | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (9-Debian) on Thu Sep 28 23:13:23 GMT 2017 -->
<title>Uses of Interface dollar.internal.runtime.script.api.HasKeyword (dollar-script 0.4.5195 API)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="date" content="2017-09-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
<script type="text/javascript" src="../../../../../../jquery/jszip/dist/jszip.min.js"></script>
<script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
<!--[if IE]>
<script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
<![endif]-->
<script type="text/javascript" src="../../../../../../jquery/jquery-1.10.2.js"></script>
<script type="text/javascript" src="../../../../../../jquery/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Interface dollar.internal.runtime.script.api.HasKeyword (dollar-script 0.4.5195 API)";
}
}
catch(err) {
}
//-->
var pathtoroot = "../../../../../../";loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<div class="fixedNav">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../dollar/internal/runtime/script/api/HasKeyword.html" title="interface in dollar.internal.runtime.script.api">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?dollar/internal/runtime/script/api/class-use/HasKeyword.html" target="_top">Frames</a></li>
<li><a href="HasKeyword.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<ul class="navListSearch">
<li><span>SEARCH: </span>
<input type="text" id="search" value=" " disabled="disabled">
<input type="reset" id="reset" value=" " disabled="disabled">
</li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
</div>
<div class="navPadding"> </div>
<script type="text/javascript"><!--
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
//-->
</script>
<div class="header">
<h2 title="Uses of Interface dollar.internal.runtime.script.api.HasKeyword" class="title">Uses of Interface<br>dollar.internal.runtime.script.api.HasKeyword</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../../dollar/internal/runtime/script/api/HasKeyword.html" title="interface in dollar.internal.runtime.script.api">HasKeyword</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="#dollar.internal.runtime.script.parser">dollar.internal.runtime.script.parser</a></th>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="dollar.internal.runtime.script.parser">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../dollar/internal/runtime/script/api/HasKeyword.html" title="interface in dollar.internal.runtime.script.api">HasKeyword</a> in <a href="../../../../../../dollar/internal/runtime/script/parser/package-summary.html">dollar.internal.runtime.script.parser</a></h3>
<table class="useSummary" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../../../dollar/internal/runtime/script/parser/package-summary.html">dollar.internal.runtime.script.parser</a> that implement <a href="../../../../../../dollar/internal/runtime/script/api/HasKeyword.html" title="interface in dollar.internal.runtime.script.api">HasKeyword</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../../../../dollar/internal/runtime/script/parser/KeywordDef.html" title="class in dollar.internal.runtime.script.parser">KeywordDef</a></span></code></th>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../../../../dollar/internal/runtime/script/parser/Op.html" title="class in dollar.internal.runtime.script.parser">Op</a></span></code></th>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../dollar/internal/runtime/script/api/HasKeyword.html" title="interface in dollar.internal.runtime.script.api">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?dollar/internal/runtime/script/api/class-use/HasKeyword.html" target="_top">Frames</a></li>
<li><a href="HasKeyword.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2017. All rights reserved.</small></p>
</body>
</html>
|
docs/api/org/apache/nutch/crawl/class-use/CrawlDbMerger.html | yahoo/anthelion | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_23) on Fri Nov 23 14:03:50 GMT 2012 -->
<TITLE>
Uses of Class org.apache.nutch.crawl.CrawlDbMerger (apache-nutch 1.6 API)
</TITLE>
<META NAME="date" CONTENT="2012-11-23">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.nutch.crawl.CrawlDbMerger (apache-nutch 1.6 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/nutch/crawl/CrawlDbMerger.html" title="class in org.apache.nutch.crawl"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/nutch/crawl//class-useCrawlDbMerger.html" target="_top"><B>FRAMES</B></A>
<A HREF="CrawlDbMerger.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.nutch.crawl.CrawlDbMerger</B></H2>
</CENTER>
No usage of org.apache.nutch.crawl.CrawlDbMerger
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/nutch/crawl/CrawlDbMerger.html" title="class in org.apache.nutch.crawl"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/nutch/crawl//class-useCrawlDbMerger.html" target="_top"><B>FRAMES</B></A>
<A HREF="CrawlDbMerger.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2012 The Apache Software Foundation
</BODY>
</HTML>
|
doc/0.9.13-incubating/guacamole-ext/org/apache/guacamole/net/event/class-use/AuthenticationSuccessEvent.html | mike-jumper/incubator-guacamole-website | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_121) on Sun Jul 02 12:07:17 PDT 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.apache.guacamole.net.event.AuthenticationSuccessEvent (guacamole-ext 0.9.13-incubating API)</title>
<meta name="date" content="2017-07-02">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.guacamole.net.event.AuthenticationSuccessEvent (guacamole-ext 0.9.13-incubating API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/apache/guacamole/net/event/AuthenticationSuccessEvent.html" title="class in org.apache.guacamole.net.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/guacamole/net/event/class-use/AuthenticationSuccessEvent.html" target="_top">Frames</a></li>
<li><a href="AuthenticationSuccessEvent.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.apache.guacamole.net.event.AuthenticationSuccessEvent" class="title">Uses of Class<br>org.apache.guacamole.net.event.AuthenticationSuccessEvent</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../../org/apache/guacamole/net/event/AuthenticationSuccessEvent.html" title="class in org.apache.guacamole.net.event">AuthenticationSuccessEvent</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.apache.guacamole.net.event.listener">org.apache.guacamole.net.event.listener</a></td>
<td class="colLast">
<div class="block">Provides classes for hooking into various events that take place as
users log into and use the Guacamole web application.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.guacamole.net.event.listener">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/apache/guacamole/net/event/AuthenticationSuccessEvent.html" title="class in org.apache.guacamole.net.event">AuthenticationSuccessEvent</a> in <a href="../../../../../../org/apache/guacamole/net/event/listener/package-summary.html">org.apache.guacamole.net.event.listener</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/apache/guacamole/net/event/listener/package-summary.html">org.apache.guacamole.net.event.listener</a> with parameters of type <a href="../../../../../../org/apache/guacamole/net/event/AuthenticationSuccessEvent.html" title="class in org.apache.guacamole.net.event">AuthenticationSuccessEvent</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="typeNameLabel">AuthenticationSuccessListener.</span><code><span class="memberNameLink"><a href="../../../../../../org/apache/guacamole/net/event/listener/AuthenticationSuccessListener.html#authenticationSucceeded-org.apache.guacamole.net.event.AuthenticationSuccessEvent-">authenticationSucceeded</a></span>(<a href="../../../../../../org/apache/guacamole/net/event/AuthenticationSuccessEvent.html" title="class in org.apache.guacamole.net.event">AuthenticationSuccessEvent</a> e)</code>
<div class="block">Event hook which fires immediately after a user's authentication attempt
succeeds.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/apache/guacamole/net/event/AuthenticationSuccessEvent.html" title="class in org.apache.guacamole.net.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/guacamole/net/event/class-use/AuthenticationSuccessEvent.html" target="_top">Frames</a></li>
<li><a href="AuthenticationSuccessEvent.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2017. All rights reserved.</small></p>
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-75289145-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>
|
Application/User/View/gooraye/Index/index.html | h136799711/2015weitonghui | <include file="Index/header" />
<style type="text/css">
</style>
<!-- 右边内容 START -->
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 " style="padding:20px">
<if condition="$userinfo['wechat_card_num'] - $thisUser['wechat_card_num'] gt 0 " >
<a class="btn btn-primary" onclick="location.href='{gr-:U('Index/add')}';">添加微信公众号</a>
<span class="text-info" >您还可以创建{gr-$userinfo['wechat_card_num'] - $thisUser['wechat_card_num']}个微信公众号</span>
<else />
</if>
<!-- 公众号列表 START-->
<div class=" " >
<table class="table table-condensed table-bordered table-striped" border="0" cellSpacing="0" cellPadding="0" width="100%">
<thead>
<tr>
<th>公众号名称</th>
<th style="text-align:center">用户组</th>
<th>到期时间</th>
<!-- <th>已定义/上限</th> -->
<!-- <th>请求数</th> -->
<th>操作</th>
</tr>
</thead>
<tbody>
<tr></tr>
<volist name="info" id="vo">
<tr>
<td><p><a href="{gr-:U('Function/index',array('id'=>$vo['id'],'token'=>$vo['token']))}" title="点击进入功能管理"><img src="{gr-$vo.headerpic}" width="40" height="40"></a></p><p>{gr-$vo.wxname}</p></td>
<td align="center">{gr-$thisGroup.name}</td>
<td>{gr-$viptime|date="Y-m-d",###} <!-- <a href="###" onclick="alert('请联系我们,电话0575-89974522')" id="smemberss" class="btn btn-flat btn-link btn-sm text-info"><em>如何续费</em></a> --></td>
<td class="norightborder">
<a class="btn btn-lg btn-primary" href="{gr-:U('Function/index',array('id'=>$vo['id'],'token'=>$vo['token']))}" class="btn btn-primary" >进入管理</a>
<a target="_blank" href="{gr-:U('Home/Index/bind',array('token'=>$vo['token'],'encodingaeskey'=>$vo['encodingaeskey']))}" class="btn btn-primary btn-sm" >绑定公众号</a>
<a class="btn btn-warning btn-sm" href="{gr-:U('Index/edit',array('id'=>$vo['id']))}"><i class="mdi-editor-mode-edit"></i>编辑</a>
<a href="javascript:drop_confirm('您确定要删除吗?', '{gr-:U('Index/del',array('id'=>$vo['id']))}');" class="btn btn-danger btn-sm"><i class="mdi-action-delete"></i>删除</a>
</td>
</tr>
</volist>
</tbody>
</table>
</div>
<!-- 公众号列表 END-->
<!-- 分页 START -->
<div class="pageNavigator right">
<div class="pages"></div>
</div>
<!-- 分页 END-->
</div>
<include file="Public/footer"/> |
REPSI_Tool_02.00_Development/doc/api/index-files/index-12.html | walter-weinmann/repsi-tool | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.5.0_10) on Mon Feb 26 03:04:16 CET 2007 -->
<TITLE>
S-Index (REPSI Tool)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="S-Index (REPSI Tool)";
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="index-11.html"><B>PREV LETTER</B></A>
<A HREF="index-13.html"><B>NEXT LETTER</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../index.html?index-filesindex-12.html" target="_top"><B>FRAMES</B></A>
<A HREF="index-12.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<A HREF="index-1.html">C</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">M</A> <A HREF="index-8.html">N</A> <A HREF="index-9.html">O</A> <A HREF="index-10.html">P</A> <A HREF="index-11.html">R</A> <A HREF="index-12.html">S</A> <A HREF="index-13.html">T</A> <HR>
<A NAME="_S_"><!-- --></A><H2>
<B>S</B></H2>
<DL>
<DT><A HREF="../edu/ou/weinmann/repsi/model/util/Global.html#SEPARATOR_COMMA_SPACE_SINGLE_QUOTE"><B>SEPARATOR_COMMA_SPACE_SINGLE_QUOTE</B></A> -
Static variable in interface edu.ou.weinmann.repsi.model.util.<A HREF="../edu/ou/weinmann/repsi/model/util/Global.html" title="interface in edu.ou.weinmann.repsi.model.util">Global</A>
<DD>Separator - comma, space & single quote.
<DT><A HREF="../edu/ou/weinmann/repsi/model/util/Global.html#SEPARATOR_SINGLE_QUOTE_COMMA_SPACE_SINGLE_QUOTE"><B>SEPARATOR_SINGLE_QUOTE_COMMA_SPACE_SINGLE_QUOTE</B></A> -
Static variable in interface edu.ou.weinmann.repsi.model.util.<A HREF="../edu/ou/weinmann/repsi/model/util/Global.html" title="interface in edu.ou.weinmann.repsi.model.util">Global</A>
<DD>Separator - single quote, comma, space & single quote.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html#setAppliedEndAction(java.util.Date, java.util.Date, long)"><B>setAppliedEndAction(Date, Date, long)</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">TrialRunActionMapper</A>
<DD>Updates in the database the columns
<code>APPLIED_DURATION_MICRO_SECOND</code>,
<code>APPLIED_END_TIME</code>, and <code>APPLIED_START_TIME</code>.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html#setAppliedEndActionError(java.lang.String)"><B>setAppliedEndActionError(String)</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">TrialRunActionMapper</A>
<DD>Updates in the database the columns <code>APPLIED_ERROR_MESSAGE</code>
and <code>APPLIED_STATUS</code>.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html#setAppliedStartAction(java.lang.String, java.lang.String)"><B>setAppliedStartAction(String, String)</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">TrialRunActionMapper</A>
<DD>Updates in the database the columns
<code>APPLIED_PATTERN_SELECT_STMNT</code> and
<code>APPLIED_STATUS</code>.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/CalibrationMapper.html#setComparison(java.lang.String, java.lang.String)"><B>setComparison(String, String)</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/CalibrationMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">CalibrationMapper</A>
<DD>Updates in the database the columns <code>COMPARISON_EQUALS</code> and
<code>COMPARISON_MESSAGE</code>.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html#setComparison(java.lang.String, java.lang.String)"><B>setComparison(String, String)</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">TrialRunActionMapper</A>
<DD>Updates in the database the columns <code>COMPARISON_EQUALS</code> and
<code>COMPARISON_MESSAGE</code>.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/CalibrationMapper.html#setDescription(java.lang.String)"><B>setDescription(String)</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/CalibrationMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">CalibrationMapper</A>
<DD>Updates in the database the columns <code>DESCRIPTION</code>.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunMapper.html#setDescription(java.lang.String)"><B>setDescription(String)</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">TrialRunMapper</A>
<DD>Updates in the database the columns <code>DESCRIPTION</code>.
<DT><A HREF="../edu/ou/weinmann/repsi/model/trial/util/ResultSetComparator.html#setDescription(java.lang.String, int)"><B>setDescription(String, int)</B></A> -
Method in class edu.ou.weinmann.repsi.model.trial.util.<A HREF="../edu/ou/weinmann/repsi/model/trial/util/ResultSetComparator.html" title="class in edu.ou.weinmann.repsi.model.trial.util">ResultSetComparator</A>
<DD>Sets the description at the required position.
<DT><A HREF="../edu/ou/weinmann/repsi/model/util/DatabaseAccessor.html#setFetchSize(int)"><B>setFetchSize(int)</B></A> -
Method in class edu.ou.weinmann.repsi.model.util.<A HREF="../edu/ou/weinmann/repsi/model/util/DatabaseAccessor.html" title="class in edu.ou.weinmann.repsi.model.util">DatabaseAccessor</A>
<DD>Creates a <code>Statement</code> object associtated with this
<code>Connnection</code> object.
<DT><A HREF="../edu/ou/weinmann/repsi/model/calibration/Calibration.html#setObject(java.lang.String)"><B>setObject(String)</B></A> -
Method in class edu.ou.weinmann.repsi.model.calibration.<A HREF="../edu/ou/weinmann/repsi/model/calibration/Calibration.html" title="class in edu.ou.weinmann.repsi.model.calibration">Calibration</A>
<DD>Sets the type of the <code>Calibration</code> object.
<DT><A HREF="../edu/ou/weinmann/repsi/model/trial/util/ResultSetComparator.html#setOrderBy(java.lang.String, int)"><B>setOrderBy(String, int)</B></A> -
Method in class edu.ou.weinmann.repsi.model.trial.util.<A HREF="../edu/ou/weinmann/repsi/model/trial/util/ResultSetComparator.html" title="class in edu.ou.weinmann.repsi.model.trial.util">ResultSetComparator</A>
<DD>Sets the order by clause at the required position.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/CalibrationMapper.html#setPatternSqlIdiomName(java.lang.String)"><B>setPatternSqlIdiomName(String)</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/CalibrationMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">CalibrationMapper</A>
<DD>Updates in the database the columns <code>PATTERN_SQL_IDIOM_NAME</code>.
<DT><A HREF="../edu/ou/weinmann/repsi/model/util/Configurator.html#setProperty(java.lang.String, java.lang.String)"><B>setProperty(String, String)</B></A> -
Method in class edu.ou.weinmann.repsi.model.util.<A HREF="../edu/ou/weinmann/repsi/model/util/Configurator.html" title="class in edu.ou.weinmann.repsi.model.util">Configurator</A>
<DD>sets the value of a given property key.
<DT><A HREF="../edu/ou/weinmann/repsi/model/trial/util/ResultSetComparator.html#setSelectStmnt(java.lang.String, int)"><B>setSelectStmnt(String, int)</B></A> -
Method in class edu.ou.weinmann.repsi.model.trial.util.<A HREF="../edu/ou/weinmann/repsi/model/trial/util/ResultSetComparator.html" title="class in edu.ou.weinmann.repsi.model.trial.util">ResultSetComparator</A>
<DD>Sets the <code>SELECT</code> statement at the required position.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html#setSequenceNumberAction(long)"><B>setSequenceNumberAction(long)</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">TrialRunActionMapper</A>
<DD>Sets the current action sequence number.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunProtocolMapper.html#setSequenceNumberAction(long)"><B>setSequenceNumberAction(long)</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunProtocolMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">TrialRunProtocolMapper</A>
<DD>Sets the current action sequence number.
<DT><A HREF="../edu/ou/weinmann/repsi/model/trial/util/ResultSetComparator.html#setSqlSyntaxCode(java.lang.String)"><B>setSqlSyntaxCode(String)</B></A> -
Method in class edu.ou.weinmann.repsi.model.trial.util.<A HREF="../edu/ou/weinmann/repsi/model/trial/util/ResultSetComparator.html" title="class in edu.ou.weinmann.repsi.model.trial.util">ResultSetComparator</A>
<DD>Sets the <code>SQL</code> syntax code.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/CalibrationMapper.html#setSqlSyntaxCodeTqp(java.lang.String)"><B>setSqlSyntaxCodeTqp(String)</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/CalibrationMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">CalibrationMapper</A>
<DD>Updates in the database the columns <code>SQL_SYNTAX_CODE_TTQP</code>.
<DT><A HREF="../edu/ou/weinmann/repsi/model/database/Database.html#setSqlSyntaxSource(java.lang.String)"><B>setSqlSyntaxSource(String)</B></A> -
Method in class edu.ou.weinmann.repsi.model.database.<A HREF="../edu/ou/weinmann/repsi/model/database/Database.html" title="class in edu.ou.weinmann.repsi.model.database">Database</A>
<DD>Sets the type of the SQL syntax version.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/CalibrationMapper.html#setStatus()"><B>setStatus()</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/CalibrationMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">CalibrationMapper</A>
<DD>Updates in the database the columns <code>END_TIME</code> and
<code>STATUS_CODE</code>.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunMapper.html#setStatus(java.lang.String)"><B>setStatus(String)</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">TrialRunMapper</A>
<DD>Updates in the database the columns <code>END_TIME</code> and
<code>STATUS_CODE</code>.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html#setTableName(java.lang.String)"><B>setTableName(String)</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">TrialRunActionMapper</A>
<DD>Updates in the database the column <code>TABLE_NAME</code>.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html#setUnappliedEndAction(java.util.Date, java.util.Date, long)"><B>setUnappliedEndAction(Date, Date, long)</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">TrialRunActionMapper</A>
<DD>Updates in the database the columns
<code>UNAPPLIED_DURATION_MICRO_SECOND</code>,
<code>UNAPPLIED_END_TIME</code>, and <code>UNAPPLIED_START_TIME</code>.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html#setUnappliedEndActionError(java.lang.String)"><B>setUnappliedEndActionError(String)</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">TrialRunActionMapper</A>
<DD>Updates in the database the columns <code>UNAPPLIED_ERROR_MESSAGE</code>
and <code>UNAPPLIED_STATUS</code>.
<DT><A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html#setUnappliedStartAction(java.lang.String, java.lang.String)"><B>setUnappliedStartAction(String, String)</B></A> -
Method in class edu.ou.weinmann.repsi.model.mapper.<A HREF="../edu/ou/weinmann/repsi/model/mapper/TrialRunActionMapper.html" title="class in edu.ou.weinmann.repsi.model.mapper">TrialRunActionMapper</A>
<DD>Updates in the database the columns
<code>UNAPPLIED_PATTERN_SELECT_STMNT</code> and
<code>UNAPPLIED_STATUS</code>.
<DT><A HREF="../edu/ou/weinmann/repsi/model/trial/metadata/Columns.html#sizeColumns()"><B>sizeColumns()</B></A> -
Method in class edu.ou.weinmann.repsi.model.trial.metadata.<A HREF="../edu/ou/weinmann/repsi/model/trial/metadata/Columns.html" title="class in edu.ou.weinmann.repsi.model.trial.metadata">Columns</A>
<DD>Returns the number of columns in this database table.
<DT><A HREF="../edu/ou/weinmann/repsi/model/util/Global.html#SQL_COLUMN_TYPE_CHAR"><B>SQL_COLUMN_TYPE_CHAR</B></A> -
Static variable in interface edu.ou.weinmann.repsi.model.util.<A HREF="../edu/ou/weinmann/repsi/model/util/Global.html" title="interface in edu.ou.weinmann.repsi.model.util">Global</A>
<DD>SQL column type - CHAR.
<DT><A HREF="../edu/ou/weinmann/repsi/model/util/Global.html#SQL_COLUMN_TYPE_VARCHAR2"><B>SQL_COLUMN_TYPE_VARCHAR2</B></A> -
Static variable in interface edu.ou.weinmann.repsi.model.util.<A HREF="../edu/ou/weinmann/repsi/model/util/Global.html" title="interface in edu.ou.weinmann.repsi.model.util">Global</A>
<DD>SQL column type - VARCHAR2.
<DT><A HREF="../edu/ou/weinmann/repsi/model/util/Global.html#SQL_SYNTAX_CODE_ORACLE_10G"><B>SQL_SYNTAX_CODE_ORACLE_10G</B></A> -
Static variable in interface edu.ou.weinmann.repsi.model.util.<A HREF="../edu/ou/weinmann/repsi/model/util/Global.html" title="interface in edu.ou.weinmann.repsi.model.util">Global</A>
<DD>SQL syntax code - Oracle 10g Release 2.
<DT><A HREF="../edu/ou/weinmann/repsi/model/util/Global.html#SQL_SYNTAX_CODE_SQL_99"><B>SQL_SYNTAX_CODE_SQL_99</B></A> -
Static variable in interface edu.ou.weinmann.repsi.model.util.<A HREF="../edu/ou/weinmann/repsi/model/util/Global.html" title="interface in edu.ou.weinmann.repsi.model.util">Global</A>
<DD>SQL syntax code - standard SQL:1999.
<DT><A HREF="../edu/ou/weinmann/repsi/model/util/SQLRewriter.html" title="class in edu.ou.weinmann.repsi.model.util"><B>SQLRewriter</B></A> - Class in <A HREF="../edu/ou/weinmann/repsi/model/util/package-summary.html">edu.ou.weinmann.repsi.model.util</A><DD>Adapts the syntactical variations of different SQL versions by rewriting the
SQL statements.<DT><A HREF="../edu/ou/weinmann/repsi/model/util/SQLRewriter.html#SQLRewriter()"><B>SQLRewriter()</B></A> -
Constructor for class edu.ou.weinmann.repsi.model.util.<A HREF="../edu/ou/weinmann/repsi/model/util/SQLRewriter.html" title="class in edu.ou.weinmann.repsi.model.util">SQLRewriter</A>
<DD>Constructs a <code>SQLRewriter</code> object.
<DT><A HREF="../edu/ou/weinmann/repsi/model/database/Database.html#startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)"><B>startElement(String, String, String, Attributes)</B></A> -
Method in class edu.ou.weinmann.repsi.model.database.<A HREF="../edu/ou/weinmann/repsi/model/database/Database.html" title="class in edu.ou.weinmann.repsi.model.database">Database</A>
<DD>Receive notification of the start of an element.
</DL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="index-11.html"><B>PREV LETTER</B></A>
<A HREF="index-13.html"><B>NEXT LETTER</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../index.html?index-filesindex-12.html" target="_top"><B>FRAMES</B></A>
<A HREF="index-12.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<A HREF="index-1.html">C</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">E</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">M</A> <A HREF="index-8.html">N</A> <A HREF="index-9.html">O</A> <A HREF="index-10.html">P</A> <A HREF="index-11.html">R</A> <A HREF="index-12.html">S</A> <A HREF="index-13.html">T</A> <HR>
</BODY>
</HTML>
|
apidocs/1.1.1.Final/org/togglz/core/proxy/package-frame.html | togglz/togglz-site | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_09-icedtea) on Sat Mar 30 09:57:52 CET 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>org.togglz.core.proxy (Togglz 1.1.1.Final API)</title>
<meta name="date" content="2013-03-30">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
</head>
<body>
<h1 class="bar"><a href="../../../../org/togglz/core/proxy/package-summary.html" target="classFrame">org.togglz.core.proxy</a></h1>
<div class="indexContainer">
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="FeatureProxyInvocationHandler.html" title="class in org.togglz.core.proxy" target="classFrame">FeatureProxyInvocationHandler</a></li>
</ul>
</div>
</body>
</html>
|
2010 - Portfolio V4/templates/styles/02_form.css | studiodev/archives | form.style {
clear: both;
}
form.style label {
width:100px;
display:block;
float:left;
padding-top:4px;
font-size:14px;
color:#FFF;
text-align:right;
padding-right:30px;
}
form.style label.long {
width: auto;
display: inline;
float:none;
padding: 0;
}
form.style input, form.style textarea {
padding:3px 6px 3px 6px;
font-size:14px;
background-color:#EEE;
border:2px solid #999;
font-family:"Trebuchet MS";
color:#0099FF;
width:200px;
}
form.style textarea { width: 300px}
form.style input.radio {width: 30px;}
form.style input:focus, form.style textarea:focus {
border-color:#00A8FF
}
form.style input.submit {
color:#FFF;
background-color:#0F414F;
border-color:#000000;
width:100px;
}
form.style fieldset {
border:0
}
form.style h2 {
margin-bottom:25px;
margin-top:10px;
width: 60%;
border-bottom: 1px dashed #00A8FF;
padding-bottom: 7px;
padding-left:10px;
font-size:20px
}
.contact_l {
margin-left:80px !important; margin-left: 50px;
width: 250px;
float:left
} .contact_l img { vertical-align: middle;}
.contact_d {
width: 500px;
float:left
} |
src/main/java/me/qyh/blog/plugin/comment/template/commentWidget.html | mhlx/mblog | <data name="commentPage" th:currentPage="${param.currentPage}"
th:moduleType="${param.moduleType}" th:moduleId="${param.moduleId}" th:mode="${param.mode}" th:asc="${param.asc}"/>
<fragment name="评论" /> |
priv/public/ui/app-classic/mn_admin/mn_servers/failover_dialog/mn_servers_failover_dialog.html | ceejatec/ns_server | <div id="failover_confirmation_dialog" style="width:711px">
<h1 class="dialog_corner_radius">Confirm Node Fail Over for {{serversFailOverDialogCtl.node.hostname}}</h1>
<div>
<div mn-spinner="serversFailOverDialogCtl.viewLoading">
<div class="pas_20">
<div class="failover_warning pat_20">
<div ng-show="!serversFailOverDialogCtl.status.down && !serversFailOverDialogCtl.status.dataless">
<h2>Fail Over Options</h2>
<label>
<input
type="radio"
name="failOver"
ng-model="serversFailOverDialogCtl.status.failOver"
value="startGracefulFailover"
ng-disabled="!serversFailOverDialogCtl.status.gracefulFailoverPossible">
<span>Graceful Fail Over (default).</span>
</label>
<label>
<input
type="radio"
name="failOver"
ng-model="serversFailOverDialogCtl.status.failOver"
value="failOver">
<span>Hard Fail Over - If you use hard failover option on a functioning node it may result in data loss. This is because failover will immediately remove the node from the cluster and any data that has not yet been replicated to other nodes may be permanently lost if it had not been persisted to disk.</span>
</label>
<div
class="warning js_gracefull_failover_message"
style="margin-bottom: 15px;"
ng-if="!serversFailOverDialogCtl.status.gracefulFailoverPossible">
<strong>Attention</strong> – Graceful fail over option is not available either because node is unreachable or replica vbucket cannot be activated gracefully.
</div>
<div
class="warning js_warning"
style="margin-top: 15px;"
ng-show="serversFailOverDialogCtl.status.backfill && (serversFailOverDialogCtl.status.failOver === 'failOver')">
<strong>Attention</strong> – A significant amount of data stored on this node
does not yet have replica (backup) copies! Failing over the node now will
irrecoverably lose that data when the incomplete replica is
activated and this node is removed from the cluster. It is
recommended to select "Remove Server" and rebalance to
safely remove the node without any data loss.
<label>
<input
type="checkbox"
name="confirmation"
ng-model="serversFailOverDialogCtl.status.confirmation">
Please confirm Failover.
</label>
</div>
<div
class="warning js_warning"
style="margin-top: 15px;"
ng-show="!serversFailOverDialogCtl.status.backfill && (serversFailOverDialogCtl.status.failOver === 'failOver')">
<strong>Warning</strong> – Failing over the node will remove it from the cluster and activate a replica.
Operations currently in flight and not yet replicated, will be lost. Rebalancing will be required
to add the node back into the cluster. Consider using "Remove from Cluster" and rebalancing instead of Failover,
to avoid any loss of data. Please confirm Failover.
</div>
</div>
<div ng-show="serversFailOverDialogCtl.status.down && !serversFailOverDialogCtl.status.dataless">
<div
class="warning"
ng-show="serversFailOverDialogCtl.status.backfill">
<strong>Attention</strong> – There are not replica (backup) copies of all data
on this node! Failing over the node now will irrecoverably
lose that data when the incomplete replica is activated and
this node is removed from the cluster. If the node might
come back online, it is recommended to wait.
Check this box if you want to failover the node, despite the resulting data loss
<label>
<input
type="checkbox"
name="confirmation"
ng-model="serversFailOverDialogCtl.status.confirmation"> Please confirm Failover.</label>
</div>
<div class="warning" ng-show="!serversFailOverDialogCtl.status.backfill">
<strong>Warning</strong> – Failing over the node will remove it from the cluster and activate a replica.
Operations not replicated before the node became unresponsive, will be lost.
Rebalancing will be required to add the node back into the cluster. Please confirm Failover.
</div>
</div>
<div class="failover_warning pat_20" ng-if="serversFailOverDialogCtl.status.dataless">
<div class="warning">
<strong>Note</strong> – Failing over this node (which has no data) will remove it from the cluster.
Rebalancing will be required to add the node back into the cluster. Please confirm Failover.
</div>
</div>
</div>
</div>
<div class="right save_cancel">
<button
type="submit"
class="save_button float_right"
ng-click="serversFailOverDialogCtl.onSubmit()"
ng-model="button"
ng-disabled="serversFailOverDialogCtl.isFailOverBtnDisabled()">Fail Over</button>
<a class="close casper_close_failover_confirmation_dialog cancel_button float_right" ng-click="$dismiss()">Cancel</a>
</div>
</div>
</div>
</div> |
docs/jdiff-cloudera/changes/constructors_index_additions.html | simplegeo/hadoop | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN""http://www.w3.org/TR/REC-html40/frameset.dtd">
<HTML>
<HEAD>
<meta name="generator" content="JDiff v1.0.9">
<!-- Generated by the JDiff Javadoc doclet -->
<!-- (http://www.jdiff.org) -->
<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
<TITLE>
Constructor Additions Index
</TITLE>
<LINK REL="stylesheet" TYPE="text/css" HREF="../stylesheet-jdiff.css" TITLE="Style">
</HEAD>
<BODY>
<a NAME="topheader"></a>
<table summary="Index for Constructors" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#FFFFCC">
<font size="+1"><a href="constructors_index_all.html" class="staysblack">All Constructors</a></font>
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF">
<FONT SIZE="-1">
<A HREF="constructors_index_removals.html" class="hiddenlink">Removals</A>
</FONT>
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF">
<FONT SIZE="-1">
<b>Additions</b>
</FONT>
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF">
<FONT SIZE="-1">
<A HREF="constructors_index_changes.html"class="hiddenlink">Changes</A>
</FONT>
</td>
</tr>
<tr>
<td>
<font size="-2"><b>Bold</b> is New, <strike>strike</strike> is deleted</font>
</td>
</tr>
</table><br>
<A NAME="C"></A>
<br><font size="+2">C</font>
<a href="#F"><font size="-2">F</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<br>
<nobr><A HREF="org.apache.hadoop.io.compress.bzip2.CBZip2InputStream.html#org.apache.hadoop.io.compress.bzip2.CBZip2InputStream.ctor_added(java.io.InputStream, org.apache.hadoop.io.compress.SplittableCompressionCodec.READ_MODE)" class="hiddenlink" target="rightframe"><b>CBZip2InputStream</b>
(<code>InputStream, READ_MODE</code>)</A></nobr> constructor<br>
<A NAME="F"></A>
<br><font size="+2">F</font>
<a href="#C"><font size="-2">C</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<br>
<i>FsPermission</i><br>
<nobr><A HREF="org.apache.hadoop.fs.permission.FsPermission.html#org.apache.hadoop.fs.permission.FsPermission.ctor_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>FsPermission</b>
(<code>String</code>)</A></nobr> constructor<br>
<nobr><A HREF="org.apache.hadoop.fs.permission.FsPermission.html#org.apache.hadoop.fs.permission.FsPermission.ctor_added(org.apache.hadoop.fs.permission.FsAction, org.apache.hadoop.fs.permission.FsAction, org.apache.hadoop.fs.permission.FsAction, boolean)" class="hiddenlink" target="rightframe"><b>FsPermission</b>
(<code>FsAction, FsAction, FsAction, boolean</code>)</A></nobr> constructor<br>
<A NAME="H"></A>
<br><font size="+2">H</font>
<a href="#C"><font size="-2">C</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<br>
<i>HttpServer</i><br>
<nobr><A HREF="org.apache.hadoop.http.HttpServer.html#org.apache.hadoop.http.HttpServer.ctor_added(java.lang.String, java.lang.String, int, boolean, org.apache.hadoop.conf.Configuration, org.apache.hadoop.security.authorize.AccessControlList)" class="hiddenlink" target="rightframe"><b>HttpServer</b>
(<code>String, String, int, boolean, Configuration, AccessControlList</code>)</A></nobr> constructor<br>
<nobr><A HREF="org.apache.hadoop.http.HttpServer.html#org.apache.hadoop.http.HttpServer.ctor_added(java.lang.String, java.lang.String, int, boolean, org.apache.hadoop.conf.Configuration, org.apache.hadoop.security.authorize.AccessControlList, org.mortbay.jetty.Connector)" class="hiddenlink" target="rightframe"><b>HttpServer</b>
(<code>String, String, int, boolean, Configuration, AccessControlList, Connector</code>)</A></nobr> constructor<br>
<nobr><A HREF="org.apache.hadoop.http.HttpServer.html#org.apache.hadoop.http.HttpServer.ctor_added(java.lang.String, java.lang.String, int, boolean, org.apache.hadoop.conf.Configuration, org.mortbay.jetty.Connector)" class="hiddenlink" target="rightframe"><b>HttpServer</b>
(<code>String, String, int, boolean, Configuration, Connector</code>)</A></nobr> constructor<br>
<A NAME="I"></A>
<br><font size="+2">I</font>
<a href="#C"><font size="-2">C</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<br>
<i>InvalidJobConfException</i><br>
<nobr><A HREF="org.apache.hadoop.mapred.InvalidJobConfException.html#org.apache.hadoop.mapred.InvalidJobConfException.ctor_added(java.lang.String, java.lang.Throwable)" class="hiddenlink" target="rightframe"><b>InvalidJobConfException</b>
(<code>String, Throwable</code>)</A></nobr> constructor<br>
<nobr><A HREF="org.apache.hadoop.mapred.InvalidJobConfException.html#org.apache.hadoop.mapred.InvalidJobConfException.ctor_added(java.lang.Throwable)" class="hiddenlink" target="rightframe"><b>InvalidJobConfException</b>
(<code>Throwable</code>)</A></nobr> constructor<br>
<A NAME="P"></A>
<br><font size="+2">P</font>
<a href="#C"><font size="-2">C</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<br>
<nobr><A HREF="org.apache.hadoop.fs.Path.html#org.apache.hadoop.fs.Path.ctor_added(java.net.URI)" class="hiddenlink" target="rightframe"><b>Path</b>
(<code>URI</code>)</A></nobr> constructor<br>
<nobr><A HREF="org.apache.hadoop.util.ProcfsBasedProcessTree.html#org.apache.hadoop.util.ProcfsBasedProcessTree.ctor_added(java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>ProcfsBasedProcessTree</b>
(<code>String, boolean</code>)</A></nobr> constructor<br>
<A NAME="R"></A>
<br><font size="+2">R</font>
<a href="#C"><font size="-2">C</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<br>
<nobr><A HREF="org.apache.hadoop.ipc.RPC.Server.html#org.apache.hadoop.ipc.RPC.Server.ctor_added(java.lang.Object, org.apache.hadoop.conf.Configuration, java.lang.String, int, int, boolean, org.apache.hadoop.security.token.SecretManager)" class="hiddenlink" target="rightframe"><b>RPC.Server</b>
(<code>Object, Configuration, String, int, int, boolean, SecretManager</code>)</A></nobr> constructor<br>
<A NAME="S"></A>
<br><font size="+2">S</font>
<a href="#C"><font size="-2">C</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<br>
<nobr><A HREF="org.apache.hadoop.ipc.Server.html#org.apache.hadoop.ipc.Server.ctor_added(java.lang.String, int, java.lang.Class, int, org.apache.hadoop.conf.Configuration, java.lang.String, org.apache.hadoop.security.token.SecretManager)" class="hiddenlink" target="rightframe"><b>Server</b>
(<code>String, int, Class, int, Configuration, String, SecretManager</code>)</A></nobr> constructor<br>
<nobr><A HREF="org.apache.hadoop.util.Shell.ShellCommandExecutor.html#org.apache.hadoop.util.Shell.ShellCommandExecutor.ctor_added(java.lang.String[], java.io.File, java.util.Map, long)" class="hiddenlink" target="rightframe"><b>Shell.ShellCommandExecutor</b>
(<code>String[], File, Map, long</code>)</A></nobr> constructor<br>
<A NAME="Z"></A>
<br><font size="+2">Z</font>
<a href="#C"><font size="-2">C</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<br>
<nobr><A HREF="org.apache.hadoop.io.compress.zlib.ZlibCompressor.html#org.apache.hadoop.io.compress.zlib.ZlibCompressor.ctor_added(org.apache.hadoop.conf.Configuration)" class="hiddenlink" target="rightframe"><b>ZlibCompressor</b>
(<code>Configuration</code>)</A></nobr> constructor<br>
</BODY>
</HTML>
|
src/client/hglove/css/layout.css | javimosch/bastack | .container-fluid,
.container {
padding-right: 0px;
padding-left: 0px;
margin-right: auto;
margin-left: auto;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
position: relative;
min-height: 1px;
padding-right: 0px;
padding-left: 0px;
}
.wrap__content {
position: relative;
}
/*big bootstrap overwrite*/
.row {
margin-right: 0px;
margin-left: 0px;
}
@media only screen and (min-width: 768px) {
.container {
width: inherit;
}
}
@media only screen and (min-width: 992px) {
.container {
width: 970px;
}
}
@media only screen and (min-width: 1200px) {
.container {
width: 1170px;
}
}
/* Sticky footer styles
-------------------------------------------------- */
html,
body {
height: 100%;
background-color: white;
font-family: 'Nunito', sans-serif;
}
/* Wrapper for page content to push down footer */
#wrap {
min-height: 100%;
height: auto;
/* Negative indent footer by its height */
margin: 0 auto -100px;
/* Pad bottom by footer height */
padding: 0 0 100px;
}
/* Set the fixed height of the footer here */
#footer {
height: 100px;
background-color: #DC73FF;
}
|
references/opennlp-docs/apidocs/opennlp-tools/opennlp/tools/ml/model/class-use/SequenceStreamEventStream.html | ericmguimaraes/COMP0378 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="pt">
<head>
<!-- Generated by javadoc (version 1.7.0_71) on Tue Jun 16 10:36:54 BRT 2015 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class opennlp.tools.ml.model.SequenceStreamEventStream (Apache OpenNLP Tools 1.6.0 API)</title>
<meta name="date" content="2015-06-16">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class opennlp.tools.ml.model.SequenceStreamEventStream (Apache OpenNLP Tools 1.6.0 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../opennlp/tools/ml/model/SequenceStreamEventStream.html" title="class in opennlp.tools.ml.model">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?opennlp/tools/ml/model/class-use/SequenceStreamEventStream.html" target="_top">Frames</a></li>
<li><a href="SequenceStreamEventStream.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class opennlp.tools.ml.model.SequenceStreamEventStream" class="title">Uses of Class<br>opennlp.tools.ml.model.SequenceStreamEventStream</h2>
</div>
<div class="classUseContainer">No usage of opennlp.tools.ml.model.SequenceStreamEventStream</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../opennlp/tools/ml/model/SequenceStreamEventStream.html" title="class in opennlp.tools.ml.model">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?opennlp/tools/ml/model/class-use/SequenceStreamEventStream.html" target="_top">Frames</a></li>
<li><a href="SequenceStreamEventStream.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
</html>
|
saddle-core/target/scala-2.10/api/org/saddle/groupby/package.html | saddle/saddle | <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>groupby - org.saddle.groupby</title>
<meta name="description" content="groupby - org.saddle.groupby" />
<meta name="keywords" content="groupby org.saddle.groupby" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link href="../../../lib/template.css" media="screen" type="text/css" rel="stylesheet" />
<link href="../../../lib/diagrams.css" media="screen" type="text/css" rel="stylesheet" id="diagrams-css" />
<script type="text/javascript">
if(top === self) {
var url = '../../../index.html';
var hash = 'org.saddle.groupby.package';
var anchor = window.location.hash;
var anchor_opt = '';
if (anchor.length >= 1)
anchor_opt = '@' + anchor.substring(1);
window.location.href = url + '#' + hash + anchor_opt;
}
</script>
</head>
<body class="value">
<div id="definition">
<img src="../../../lib/package_big.png" />
<p id="owner"><a href="../../package.html" class="extype" name="org">org</a>.<a href="../package.html" class="extype" name="org.saddle">saddle</a></p>
<h1>groupby</h1>
</div>
<h4 id="signature" class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">package</span>
</span>
<span class="symbol">
<span class="name">groupby</span>
</span>
</h4>
<div id="comment" class="fullcommenttop"></div>
<div id="mbrsel">
<div id="textfilter"><span class="pre"></span><span class="input"><input id="mbrsel-input" type="text" accesskey="/" /></span><span class="post"></span></div>
<div id="visbl">
<span class="filtertype">Visibility</span>
<ol><li class="public in"><span>Public</span></li><li class="all out"><span>All</span></li></ol>
</div>
</div>
<div id="template">
<div id="allMembers">
<div id="types" class="types members">
<h3>Type Members</h3>
<ol><li name="org.saddle.groupby.FrameGrouper" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="FrameGrouper[Z,X,Y,T]extendsAnyRef"></a>
<a id="FrameGrouper[Z,X,Y,T]:FrameGrouper[Z,X,Y,T]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">class</span>
</span>
<span class="symbol">
<a href="FrameGrouper.html"><span class="name">FrameGrouper</span></a><span class="tparams">[<span name="Z">Z</span>, <span name="X">X</span>, <span name="Y">Y</span>, <span name="T">T</span>]</span><span class="result"> extends <span class="extype" name="scala.AnyRef">AnyRef</span></span>
</span>
</h4>
<p class="comment cmt">Helper class to do combine or transform after a groupBy
</p>
</li><li name="org.saddle.groupby.IndexGrouper" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="IndexGrouper[Y]extendsAnyRef"></a>
<a id="IndexGrouper[Y]:IndexGrouper[Y]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">class</span>
</span>
<span class="symbol">
<a href="IndexGrouper.html"><span class="name">IndexGrouper</span></a><span class="tparams">[<span name="Y">Y</span>]</span><span class="result"> extends <span class="extype" name="scala.AnyRef">AnyRef</span></span>
</span>
</h4>
<p class="comment cmt">Creates groups for each unique key in an index
</p>
</li><li name="org.saddle.groupby.SeriesGrouper" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="SeriesGrouper[Y,X,T]extendsIndexGrouper[Y]"></a>
<a id="SeriesGrouper[Y,X,T]:SeriesGrouper[Y,X,T]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">class</span>
</span>
<span class="symbol">
<a href="SeriesGrouper.html"><span class="name">SeriesGrouper</span></a><span class="tparams">[<span name="Y">Y</span>, <span name="X">X</span>, <span name="T">T</span>]</span><span class="result"> extends <a href="IndexGrouper.html" class="extype" name="org.saddle.groupby.IndexGrouper">IndexGrouper</a>[<span class="extype" name="org.saddle.groupby.SeriesGrouper.Y">Y</span>]</span>
</span>
</h4>
<p class="comment cmt">Helper class to do combine or transform after a groupBy
</p>
</li></ol>
</div>
<div id="values" class="values members">
<h3>Value Members</h3>
<ol><li name="org.saddle.groupby.FrameGrouper" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="FrameGrouper"></a>
<a id="FrameGrouper:FrameGrouper"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">object</span>
</span>
<span class="symbol">
<a href="FrameGrouper$.html"><span class="name">FrameGrouper</span></a>
</span>
</h4>
</li><li name="org.saddle.groupby.IndexGrouper" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="IndexGrouper"></a>
<a id="IndexGrouper:IndexGrouper"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">object</span>
</span>
<span class="symbol">
<a href="IndexGrouper$.html"><span class="name">IndexGrouper</span></a>
</span>
</h4>
</li><li name="org.saddle.groupby.SeriesGrouper" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="SeriesGrouper"></a>
<a id="SeriesGrouper:SeriesGrouper"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">object</span>
</span>
<span class="symbol">
<a href="SeriesGrouper$.html"><span class="name">SeriesGrouper</span></a>
</span>
</h4>
</li></ol>
</div>
</div>
<div id="inheritedMembers">
</div>
<div id="groupedMembers">
<div class="group" name="Ungrouped">
<h3>Ungrouped</h3>
</div>
</div>
</div>
<div id="tooltip"></div>
<div id="footer"> </div>
<script defer="defer" type="text/javascript" id="jquery-js" src="../../../lib/jquery.js"></script><script defer="defer" type="text/javascript" id="jquery-ui-js" src="../../../lib/jquery-ui.js"></script><script defer="defer" type="text/javascript" id="tools-tooltip-js" src="../../../lib/tools.tooltip.js"></script><script defer="defer" type="text/javascript" id="template-js" src="../../../lib/template.js"></script>
</body>
</html> |
references/opennlp-docs/apidocs/opennlp-tools/opennlp/tools/doccat/package-frame.html | ericmguimaraes/COMP0378 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="pt">
<head>
<!-- Generated by javadoc (version 1.7.0_71) on Tue Jun 16 10:37:20 BRT 2015 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>opennlp.tools.doccat (Apache OpenNLP Tools 1.6.0 API)</title>
<meta name="date" content="2015-06-16">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<h1 class="bar"><a href="../../../opennlp/tools/doccat/package-summary.html" target="classFrame">opennlp.tools.doccat</a></h1>
<div class="indexContainer">
<h2 title="Interfaces">Interfaces</h2>
<ul title="Interfaces">
<li><a href="DoccatEvaluationMonitor.html" title="interface in opennlp.tools.doccat" target="classFrame"><i>DoccatEvaluationMonitor</i></a></li>
<li><a href="DocumentCategorizer.html" title="interface in opennlp.tools.doccat" target="classFrame"><i>DocumentCategorizer</i></a></li>
<li><a href="FeatureGenerator.html" title="interface in opennlp.tools.doccat" target="classFrame"><i>FeatureGenerator</i></a></li>
</ul>
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="BagOfWordsFeatureGenerator.html" title="class in opennlp.tools.doccat" target="classFrame">BagOfWordsFeatureGenerator</a></li>
<li><a href="DoccatCrossValidator.html" title="class in opennlp.tools.doccat" target="classFrame">DoccatCrossValidator</a></li>
<li><a href="DoccatFactory.html" title="class in opennlp.tools.doccat" target="classFrame">DoccatFactory</a></li>
<li><a href="DoccatModel.html" title="class in opennlp.tools.doccat" target="classFrame">DoccatModel</a></li>
<li><a href="DocumentCategorizerEvaluator.html" title="class in opennlp.tools.doccat" target="classFrame">DocumentCategorizerEvaluator</a></li>
<li><a href="DocumentCategorizerEventStream.html" title="class in opennlp.tools.doccat" target="classFrame">DocumentCategorizerEventStream</a></li>
<li><a href="DocumentCategorizerME.html" title="class in opennlp.tools.doccat" target="classFrame">DocumentCategorizerME</a></li>
<li><a href="DocumentSample.html" title="class in opennlp.tools.doccat" target="classFrame">DocumentSample</a></li>
<li><a href="DocumentSampleStream.html" title="class in opennlp.tools.doccat" target="classFrame">DocumentSampleStream</a></li>
<li><a href="NGramFeatureGenerator.html" title="class in opennlp.tools.doccat" target="classFrame">NGramFeatureGenerator</a></li>
</ul>
</div>
</body>
</html>
|
jive-sdk-service/generator/examples/example-basecamp/tiles/BaseCamp-ProjectInfo/public/action.html | jivesoftware/jive-sdk | <html>
<head>
<link rel="stylesheet" type="text/css" href="{{{host}}}/stylesheets/bootstrap.min.css">
<script src="{{{host}}}/javascripts/jquery-1.8.3.js"></script>
<script src="{{{host}}}/javascripts/oauth2client.js"></script>
<script src="{{{host}}}/{{{TILE_NAME}}}/javascripts/action.js"></script>
<script>
$(document).ready( function() {
doIt( '{{{host}}}');
});
</script>
</head>
<body>
<div id="j-card-authentication" class="j-card" style='display: none'>
<h2>Expanded Project Information ..</h2>
<p>
<p>The remote system (Basecamp) requires you to grant access before proceeding</p>
<!---
Project:
<label id="projectA"><b>Placeholder for Project</b> </label>
<br>
Description:
<label id="descriptionA"><b>Placeholder for Description</b> </label>
<br>
<a id="BasecampLinkA" href="https://basecamp.com" target="_blank" >Vist this project at Basecamp</a>
-->
</p>
<br><br>
<button class="btn btn-primary" id="oauth">Grant Access</button>
<button class="btn btn-primary" id="btn_doneA">Exit</button>
</div>
<div id="j-card-action" class="j-card" style='display: none'>
<h3>Expanded Project Information ..</h3>
<p>
<h5><u>Project:</u></h5><br>
<label id="projectB">Placeholder for Project</label>
<br><br>
<h5><u>Description:</u></h5> <br>
<label id="descriptionB">Placeholder for Description</label>
<br><br><br>
<a id="BasecampLinkB" href="https://basecamp.com" target="_blank" >Vist this project at Basecamp</a>
</p>
<button class="btn btn-primary" id="btn_done">Close Window</button>
</div>
</body>
</html>
|
app/assets/client/src/app/search/searchuser.tpl.html | liviuignat/PlayScalaAngularOAuth | <div class="container userContainer">
<div class="row">
<input type="text" ng-model="model.data.search" placeholder="Search user..." ng-change="model.search()" autofocus>
</div>
<div class="row userContainer-row" ng-click="model.userSelect(user)" ng-show="model.users.length" ng-repeat="user in model.users">
{{user.firstName}} {{user.lastName}}
</div>
<div class="row userContainer-row" ng-show="!model.users.length">
No user found ...
</div>
</div>
|
core/templates/dev/head/base.html | mit0110/oppia | {% macro warnings_and_loader() -%}
<div ng-cloak>
<div class="oppia-toast-container toast-top-center">
<div ng-repeat="warning in (alertsService.warnings | limitTo:5) track by $index" class="toast toast-warning oppia-toast">
<button type="button" class="toast-close-button" ng-click="alertsService.deleteWarning(warning)" role="button">×</button>
<div class="toast-message">
<[warning.content]>
</div>
</div>
</div>
<div>
<div ng-repeat="message in alertsService.messages track by $index">
<alert-message message-object="message" message-index="$index"></alert-message>
</div>
</div>
<div ng-show="loadingMessage" class="oppia-loading-fullpage">
<div class="oppia-align-center">
<span translate="<[loadingMessage]>"></span>
<span class="oppia-loading-dot-one">.</span>
<span class="oppia-loading-dot-two">.</span>
<span class="oppia-loading-dot-three">.</span>
</div>
</div>
<div ng-show="!loadingMessage">
{% block content %}{% endblock %}
{% block footer %}{% endblock %}
</div>
</div>
{%- endmacro %}
<!DOCTYPE html>
<html ng-app="oppia" ng-controller="Base" itemscope itemtype="http://schema.org/Organization">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<!-- Tiles for Internet Explorer. -->
<meta name="application-name" content="{{SITE_NAME}}">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-square70x70logo" content="{{DOMAIN_URL}}/images/logo/msapplication-tiny.png">
<meta name="msapplication-square150x150logo" content="{{DOMAIN_URL}}/images/logo/msapplication-square.png">
<meta name="msapplication-wide310x150logo" content="{{DOMAIN_URL}}/images/logo/msapplication-wide.png">
<meta name="msapplication-square310x310logo" content="{{DOMAIN_URL}}/images/logo/msapplication-large.png">
<!-- The itemprops are for G+ sharing. -->
<meta itemprop="name" content="{{meta_name}}">
<meta itemprop="description" content="{{meta_description}}">
<!-- The og tags are for Facebook sharing. -->
<meta property="og:title" content="{{meta_name}}">
<meta property="og:site_name" content="Oppia">
<meta property="og:url" content="{{FULL_URL}}">
<meta property="og:description" content="{{meta_description}}">
<meta property="og:type" content="article">
<meta property="og:image" content="{{DOMAIN_URL}}/images/logo/288x288_logo_mint.png">
<link rel="apple-touch-icon" href="/images/logo/favicon.png">
<!-- The title is bound to the rootScope. The content of the block
maintitle can be a string or a translation id. If it is a translation it
will be replaced by its translation when the page is loading. If it is a
string it would be displayed as is. This is the only way to translate
the page title because the head of the file is outside the scope of
any other controller. -->
<title itemprop="name" translate="{% block maintitle %}Oppia{% endblock maintitle %}"></title>
{% block base_url %}{% endblock base_url %}
{% block header_css %}
{% include 'header_css_libs.html' %}
{% endblock header_css %}
<script>
var GLOBALS = {
ADDITIONAL_ANGULAR_MODULES: [],
csrf_token: JSON.parse('{{csrf_token|js_string}}'),
csrf_token_i18n: JSON.parse('{{csrf_token_i18n|js_string}}'),
csrf_token_create_exploration: JSON.parse('{{csrf_token_create_exploration|js_string}}'),
DEV_MODE: JSON.parse('{{DEV_MODE|js_string}}'),
INVALID_NAME_CHARS: JSON.parse('{{INVALID_NAME_CHARS|js_string}}'),
ACTIVITY_STATUS_PRIVATE: JSON.parse(
'{{ACTIVITY_STATUS_PRIVATE|js_string}}'),
ACTIVITY_STATUS_PUBLIC: JSON.parse(
'{{ACTIVITY_STATUS_PUBLIC|js_string}}'),
ACTIVITY_STATUS_PUBLICIZED: JSON.parse(
'{{ACTIVITY_STATUS_PUBLICIZED|js_string}}'),
ALL_CATEGORIES: JSON.parse('{{ALL_CATEGORIES|js_string}}'),
ALL_LANGUAGE_CODES: JSON.parse('{{ALL_LANGUAGE_CODES|js_string}}'),
DEFAULT_LANGUAGE_CODE: JSON.parse(
'{{DEFAULT_LANGUAGE_CODE|js_string}}'),
RTE_COMPONENT_SPECS: JSON.parse('{{RTE_COMPONENT_SPECS|js_string}}'),
CAN_SEND_ANALYTICS_EVENTS: JSON.parse(
'{{CAN_SEND_ANALYTICS_EVENTS|js_string}}'),
/* A list of functions to be called when an exploration is completed. */
POST_COMPLETION_HOOKS: [],
SYSTEM_USERNAMES: JSON.parse('{{SYSTEM_USERNAMES|js_string}}'),
userIsLoggedIn: JSON.parse('{{user_is_logged_in|js_string}}'),
preferredSiteLanguageCode: JSON.parse('{{preferred_site_language_code|js_string}}'),
SUPPORTED_SITE_LANGUAGES: JSON.parse('{{SUPPORTED_SITE_LANGUAGES|js_string}}')
};
{% if additional_angular_modules %}
GLOBALS.ADDITIONAL_ANGULAR_MODULES = JSON.parse('{{additional_angular_modules|js_string}}');
{% endif %}
</script>
{% block header_js %}
{% include 'header_js_libs.html' %}
{% endblock header_js %}
{{BEFORE_END_HEAD_TAG_HOOK}}
</head>
<body>
{% if iframed %}
{{ warnings_and_loader() }}
{% else %}
<div class="oppia-base-container" ng-class="{'oppia-sidebar-menu-open': sidebarIsShown, 'oppia-sidebar-menu-closed': !sidebarIsShown}">
<div class="oppia-content-container">
<div id="wrapper">
<div class="oppia-main-body">
<!-- Top navigation. -->
<nav class="navbar navbar-default oppia-navbar oppia-prevent-selection" role="navigation">
<div class="navbar-container">
<div class="navbar-header protractor-test-navbar-header pull-left">
<a ng-if="windowIsNarrow" ng-click="openSidebar()" class="navbar-brand oppia-navbar-menu oppia-transition-200">
<i class="material-icons oppia-navbar-menu-icon"></i>
</a>
<a class="oppia-navbar-brand-name oppia-transition-200" href="/" focus-on="<[LABEL_FOR_CLEARING_FOCUS]>">
<img src="/images/logo/288x128_logo_white.png" class="oppia-logo" ng-class="windowIsNarrow ? 'oppia-logo-small' : 'oppia-logo-wide'">
</a>
<!-- This is needed for the correct image to appear when an exploration is shared using G+. -->
<a style="display: none;">
<img src="/images/logo/288x128_logo_mint.png" itemprop="image">
</a>
</div>
{% if nav_mode != 'signup' %}
<div ng-cloak class="navbar-header pull-right">
<ul class="nav oppia-navbar-nav oppia-navbar-profile">
{% if username %}
<li class="dropdown pull-right">
<a class="dropdown-toggle oppia-navbar-dropdown-toggle" data-toggle="dropdown" ng-mouseover="onMouseoverProfilePictureOrDropdown($event)" ng-mouseleave="onMouseoutProfilePictureOrDropdown($event)">
<div class="oppia-navbar-profile-picture-container" ng-cloak>
{% if profile_picture_data_url %}
<img src="{{profile_picture_data_url}}" class="oppia-navbar-profile-picture img-circle">
<span class="caret" style="margin-top: 10px;"></span>
{% else %}
<i class="material-icons md-40" style="margin-top: -1px;"></i>
<span class="caret" style="margin-top: -26px;"></span>
{% endif %}
<div class="oppia-navbar-dashboard-indicator ng-cloak" ng-if="numUnseenNotifications > 0">
<span class="oppia-navbar-dashboard-indicator-text">
<[numUnseenNotifications]>
</span>
</div>
<div style="display: none;" class="oppia-user-email">
{{user_email}}
</div>
{% if is_admin or is_moderator %}
<div class="oppia-navbar-role-indicator">
{% if is_admin %}
<!-- "right: 4px;" is necessary here but not in moderator to prevent 'A' from appearing off-center because 'A' is slightly thinner than 'M' in this font -->
<span class="oppia-navbar-role-text" style="right: 4px;">A</span>
{% elif is_moderator %}
<span class="oppia-navbar-role-text">M</span>
{% endif %}
</div>
{% endif %}
</div>
</a>
<ul class="dropdown-menu ng-cloak oppia-navbar-dropdown" role="menu" ng-mouseover="onMouseoverProfilePictureOrDropdown($event)" ng-mouseleave="onMouseoutProfilePictureOrDropdown($event)" ng-show="profileDropdownIsActive">
<li>
<a ng-click="onMouseoutProfilePictureOrDropdown($event)" href="/profile/{{username}}">
<strong>{{username}}</strong>
</a>
</li>
<hr class="oppia-top-right-menu-item-separator">
<li>
<a ng-click="onMouseoutProfilePictureOrDropdown($event)" href="/dashboard">
<span translate="I18N_TOPNAV_DASHBOARD"></span>
</a>
</li>
<li>
<a ng-click="onMouseoutProfilePictureOrDropdown($event)" href="/notifications_dashboard">
<span translate="I18N_TOPNAV_NOTIFICATIONS"></span>
<span ng-if="numUnseenNotifications > 0">
(<[numUnseenNotifications]>)
</span>
</a>
</li>
<li>
<a ng-click="onMouseoutProfilePictureOrDropdown($event)" href="/preferences">
<span translate="I18N_TOPNAV_PREFERENCES"></span>
</a>
</li>
{% if is_moderator %}
<li>
<a ng-click="onMouseoutProfilePictureOrDropdown($event)" href="/moderator" target="_blank">
<span translate="I18N_TOPNAV_MODERATOR_PAGE"></span>
</a>
</li>
{% endif %}
{% if is_super_admin %}
<li>
<a ng-click="onMouseoutProfilePictureOrDropdown($event)" href="/admin" target="_blank">
<span translate="I18N_TOPNAV_ADMIN_PAGE"></span>
</a>
</li>
{% endif %}
<hr class="oppia-top-right-menu-item-separator">
<li>
<a ng-click="onMouseoutProfilePictureOrDropdown($event)" href="{{logout_url}}">
<span translate="I18N_TOPNAV_LOGOUT"></span>
</a>
</li>
</ul>
</li>
{% else %}
<li class="dropdown oppia-navbar-clickable-dropdown pull-right">
<div class="oppia-navbar-button-container" style="margin-right: 10px;">
<button class="btn oppia-navbar-button"
ng-click="onLoginButtonClicked('{{login_url}}')">
<span translate="I18N_TOPNAV_SIGN_IN"></span>
<span class="caret"></span>
</button>
</div>
<ul class="dropdown-menu oppia-navbar-dropdown" role="menu" style="margin-right: 15px; padding: 0;" ng-mouseover="onMouseoverDropdownMenu($event)" ng-mouseleave="onMouseoutDropdownMenu($event)">
<li>
<a href style="padding: 0; width: 200px;" ng-click="onLoginButtonClicked('{{login_url}}')">
<img src="/images/signin/Red-signin-Long-base-44dp.png">
</a>
</li>
</ul>
</li>
{% endif %}
</ul>
<ul class="nav oppia-navbar-nav">
{% if nav_mode != 'create' and nav_mode != 'explore' %}
<ul ng-if="windowIsNarrow" class="nav oppia-navbar-tabs-narrow">
<create-activity-button></create-activity-button>
</ul>
<ul ng-if="!windowIsNarrow" class="nav oppia-navbar-tabs">
<create-activity-button></create-activity-button>
{% if SHOW_CUSTOM_PAGES %}
<li class="oppia-clickable-navbar-element pull-right">
<a class="oppia-navbar-tab" href="/forum" translate="I18N_TOPNAV_FORUM">
</a>
</li>
{% endif %}
<li class="dropdown oppia-navbar-clickable-dropdown pull-right">
<a class="oppia-navbar-tab">
<span translate="I18N_TOPNAV_ABOUT"></span>
<span class="caret"></span>
</a>
<ul class="dropdown-menu oppia-navbar-dropdown" ng-mouseover="onMouseoverDropdownMenu($event)" ng-mouseleave="onMouseoutDropdownMenu($event)">
<li><a href="/about" translate="I18N_TOPNAV_ABOUT_OPPIA"></a></li>
<li><a href="/teach" translate="I18N_TOPNAV_TEACH_WITH_OPPIA"></a></li>
{% for additional_link in SIDEBAR_MENU_ADDITIONAL_LINKS %}
<li><a href="{{additional_link['link']}}" target="_blank">{{additional_link['name']}}</a></li>
{% endfor %}
{% if SHOW_CUSTOM_PAGES %}
<li><a href="/terms" translate="I18N_TOPNAV_TERMS_OF_SERVICE"></a></li>
<li><a href="/privacy" translate="I18N_TOPNAV_PRIVACY_POLICY"></a></li>
{% endif %}
</ul>
</li>
<li class="oppia-clickable-navbar-element pull-right">
<a class="oppia-navbar-tab" href="/library" translate="I18N_TOPNAV_LIBRARY"></a>
</li>
</ul>
{% endif %}
</ul>
</div>
{% endif %}
<div class="collapse navbar-collapse ng-cloak">
{% block navbar_breadcrumb %}
{% endblock navbar_breadcrumb %}
{% block local_top_nav_options %}
{% endblock %}
</div>
</div>
</nav>
<div class="oppia-top-of-page-padding">
</div>
{{ warnings_and_loader() }}
</div>
<noscript>
<div class="oppia-page-cards-container">
<div class="md-default-theme oppia-page-card oppia-long-text">
<h2>
<span translate="I18N_SPLASH_JAVASCRIPT_ERROR_TITLE"></span>
<i class="material-icons"></i>
</h2>
<p translate="I18N_SPLASH_JAVASCRIPT_ERROR_DESCRIPTION"
translate-values="{hrefUrl: 'http://www.enable-javascript.com/'}"></p>
<p translate="I18N_SPLASH_JAVASCRIPT_ERROR_THANKS"></p>
</div>
</div>
</noscript>
{% include 'side_nav.html' %}
</div>
</div>
</div>
{% if DEV_MODE %}
<div class="oppia-dev-mode">
Dev Mode
</div>
{% endif %}
{% if SITE_FEEDBACK_FORM_URL %}
<a href="{{SITE_FEEDBACK_FORM_URL}}" target="_blank"
class="oppia-site-feedback oppia-transition-200">
<i class="material-icons md-18" style="vertical-align: middle;"></i>
<span translate="I18N_SPLASH_SITE_FEEDBACK"></span>
</i>
</a>
{% endif %}
{% endif %}
{% include 'directives.html' %}
{% include 'forms/form_builder_templates.html' %}
{% include 'footer_js_libs.html' %}
{% include 'components/collection_summary_tile_directive.html' %}
{% include 'components/exploration_summary_tile_directive.html' %}
{% include 'components/rating_display.html' %}
{% include 'components/create_activity_button_directive.html' %}
{% include 'components/activity_tiles_infinity_grid_directive.html' %}
{% include 'components/loading_dots_directive.html' %}
<script>
{{ include_js_file('app.js') }}
{{ include_js_file('base.js') }}
{{ include_js_file('directives.js') }}
{{ include_js_file('filters.js') }}
{{ include_js_file('i18n.js') }}
{{ include_js_file('forms/formBuilder.js') }}
{{ include_js_file('services/alertsService.js') }}
{{ include_js_file('services/explorationContextService.js') }}
{{ include_js_file('services/autoplayedVideosService.js') }}
{{ include_js_file('services/searchService.js') }}
{{ include_js_file('components/ActivityTilesInfinityGridDirective.js') }}
{{ include_js_file('components/AlertMessageDirective.js') }}
{{ include_js_file('components/CollectionCreationService.js') }}
{{ include_js_file('components/CollectionSummaryTileDirective.js') }}
{{ include_js_file('components/CreateActivityButtonDirective.js') }}
{{ include_js_file('components/ExplorationCreationService.js') }}
{{ include_js_file('components/ExplorationSummaryTileDirective.js') }}
{{ include_js_file('components/LoadingDotsDirective.js') }}
{{ include_js_file('components/ObjectEditorDirective.js') }}
{{ include_js_file('components/RatingComputationService.js')}}
{{ include_js_file('components/RatingDisplayDirective.js')}}
{{ include_js_file('components/Select2DropdownDirective.js') }}
{{ include_js_file('domain/utilities/UrlInterpolationService.js') }}
{{ include_js_file('expressions/expressionSyntaxTree.js') }}
{{ include_js_file('expressions/evaluator.js') }}
{{ include_js_file('expressions/parser.js') }}
{{ include_js_file('domain/utilities/UrlInterpolationService.js') }}
{{ OBJECT_EDITORS_JS }}
</script>
{% block footer_js %}
{% endblock footer_js %}
{{BEFORE_END_BODY_TAG_HOOK}}
</body>
</html>
|
doc/src/Parser.coffee.html | sjorek/goatee-rules | <!DOCTYPE html><html lang="en"><head><title>src/Parser</title></head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"><meta name="groc-relative-root" content="../"><meta name="groc-document-path" content="src/Parser.coffee"><meta name="groc-project-path" content="src/Parser.coffee"><meta name="groc-github-url" content="https://github.com/sjorek/goatee-rules.js"><link rel="stylesheet" type="text/css" media="all" href="../assets/style.css"><script type="text/javascript" src="../assets/behavior.js"></script><body><div id="meta"><div class="file-path"><a href="https://github.com/sjorek/goatee-rules.js/blob/master/src/Parser.coffee">src/Parser.coffee</a></div></div><div id="document"><div class="segment"><div class="code folded"><div class="wrapper marker"><span class="c1">### </span></div><div class="wrapper"><span class="hljs-comment">###
BSD 3-Clause License
Copyright (c) 2017, Stephan Jorek
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
###</span>
<span class="hljs-keyword">try</span>
exports = <span class="hljs-built_in">require</span> <span class="hljs-string">'./ParserImpl'</span>
<span class="hljs-keyword">catch</span>
exports = <span class="hljs-literal">null</span>
<span class="hljs-keyword">if</span> exports <span class="hljs-keyword">is</span> <span class="hljs-literal">null</span>
Grammar = <span class="hljs-built_in">require</span> <span class="hljs-string">'./Grammar'</span>
exports = <span class="hljs-built_in">module</span>?.exports ? <span class="hljs-keyword">this</span></div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h1 id="parser">Parser</h1>
<hr>
<p>A thin compatibillity layer providing an
“on-the-fly” generated goatee-rules parser.</p></div></div></div><div class="segment"><div class="comments doc-section doc-section-static"><div class="wrapper"><p><span class='doc-section-header'>Static property parser of type <em>Parser</em></span></p>
<hr></div></div><div class="code"><div class="wrapper"> exports.parser = parser = Grammar.createParser()</div></div></div><div class="segment"><div class="comments doc-section"><div class="wrapper"><p><span class='doc-section-header'> class Parser and namespace GoateeScript</span></p>
<hr></div></div><div class="code"><div class="wrapper"> exports.Parser = parser.Parser</div></div></div><div class="segment"><div class="comments doc-section doc-section-static"><div class="wrapper"><p><span class='doc-section-header'>Static function parse</span></p>
<hr></div></div><div class="code"><div class="wrapper"> exports.parse = <span class="hljs-function"><span class="hljs-params">()</span> -></span> parser.parse.apply(parser, arguments)</div></div></div><div class="segment"><div class="comments doc-section doc-section-static"><div class="wrapper"><p><span class='doc-section-header'>Static function main</span></p>
<hr>
<p>Parameters:</p>
<ul>
<li><strong>args must be an Array.</strong></li>
</ul></div></div><div class="code"><div class="wrapper"> exports.main = <span class="hljs-function"><span class="hljs-params">(args)</span> -></span>
<span class="hljs-keyword">if</span> <span class="hljs-keyword">not</span> args[<span class="hljs-number">1</span>]
<span class="hljs-built_in">console</span>.log <span class="hljs-string">"Usage: <span class="hljs-subst">#{args[<span class="hljs-number">0</span>]}</span> FILE"</span>
process.exit <span class="hljs-number">1</span>
source = <span class="hljs-built_in">require</span>(<span class="hljs-string">'fs'</span>).readFileSync(
<span class="hljs-built_in">require</span>(<span class="hljs-string">'path'</span>).normalize(args[<span class="hljs-number">1</span>]), <span class="hljs-string">"utf8"</span>
)
parser.parse(source)
<span class="hljs-built_in">module</span>.exports = exports</div></div></div><div class="segment"><div class="comments "><div class="wrapper"><p>execute main automatically</p></div></div><div class="code"><div class="wrapper"><span class="hljs-keyword">if</span> (<span class="hljs-built_in">module</span> <span class="hljs-keyword">isnt</span> <span class="hljs-literal">undefined</span> && <span class="hljs-built_in">require</span>.main <span class="hljs-keyword">is</span> <span class="hljs-built_in">module</span>)
exports.main process.argv.slice(<span class="hljs-number">1</span>)</div></div></div></div></body></html> |
docs/apidocs/net/sourceforge/pmd/typeresolution/rules/imports/package-tree.html | iconnor/pmd | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_22) on Wed Sep 14 22:21:32 CEST 2011 -->
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<TITLE>
net.sourceforge.pmd.typeresolution.rules.imports Class Hierarchy (PMD 4.2.6 API)
</TITLE>
<META NAME="date" CONTENT="2011-09-14">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="net.sourceforge.pmd.typeresolution.rules.imports Class Hierarchy (PMD 4.2.6 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../net/sourceforge/pmd/typeresolution/rules/package-tree.html"><B>PREV</B></A>
<A HREF="../../../../../../net/sourceforge/pmd/typeresolution/visitors/package-tree.html"><B>NEXT</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?net/sourceforge/pmd/typeresolution/rules/imports/package-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
Hierarchy For Package net.sourceforge.pmd.typeresolution.rules.imports
</H2>
</CENTER>
<DL>
<DT><B>Package Hierarchies:</B><DD><A HREF="../../../../../../overview-tree.html">All Packages</A></DL>
<HR>
<H2>
Class Hierarchy
</H2>
<UL>
<LI TYPE="circle">java.lang.Object<UL>
<LI TYPE="circle">net.sourceforge.pmd.<A HREF="../../../../../../net/sourceforge/pmd/CommonAbstractRule.html" title="class in net.sourceforge.pmd"><B>CommonAbstractRule</B></A> (implements net.sourceforge.pmd.<A HREF="../../../../../../net/sourceforge/pmd/Rule.html" title="interface in net.sourceforge.pmd">Rule</A>)
<UL>
<LI TYPE="circle">net.sourceforge.pmd.<A HREF="../../../../../../net/sourceforge/pmd/AbstractJavaRule.html" title="class in net.sourceforge.pmd"><B>AbstractJavaRule</B></A> (implements net.sourceforge.pmd.ast.<A HREF="../../../../../../net/sourceforge/pmd/ast/JavaParserVisitor.html" title="interface in net.sourceforge.pmd.ast">JavaParserVisitor</A>)
<UL>
<LI TYPE="circle">net.sourceforge.pmd.<A HREF="../../../../../../net/sourceforge/pmd/AbstractRule.html" title="class in net.sourceforge.pmd"><B>AbstractRule</B></A><UL>
<LI TYPE="circle">net.sourceforge.pmd.rules.imports.<A HREF="../../../../../../net/sourceforge/pmd/rules/imports/UnusedImportsRule.html" title="class in net.sourceforge.pmd.rules.imports"><B>UnusedImportsRule</B></A><UL>
<LI TYPE="circle">net.sourceforge.pmd.typeresolution.rules.imports.<A HREF="../../../../../../net/sourceforge/pmd/typeresolution/rules/imports/UnusedImports.html" title="class in net.sourceforge.pmd.typeresolution.rules.imports"><B>UnusedImports</B></A></UL>
</UL>
</UL>
</UL>
</UL>
</UL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../net/sourceforge/pmd/typeresolution/rules/package-tree.html"><B>PREV</B></A>
<A HREF="../../../../../../net/sourceforge/pmd/typeresolution/visitors/package-tree.html"><B>NEXT</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?net/sourceforge/pmd/typeresolution/rules/imports/package-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2002-2011 InfoEther. All Rights Reserved.
</BODY>
</HTML>
|
docs/apidocs/com/cloudera/oryx/api/serving/package-frame.html | OryxProject/oryx | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>com.cloudera.oryx.api.serving (Oryx 2.8.0 API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<h1 class="bar"><a href="../../../../../com/cloudera/oryx/api/serving/package-summary.html" target="classFrame">com.cloudera.oryx.api.serving</a></h1>
<div class="indexContainer">
<h2 title="Interfaces">Interfaces</h2>
<ul title="Interfaces">
<li><a href="HasCSV.html" title="interface in com.cloudera.oryx.api.serving" target="classFrame"><span class="interfaceName">HasCSV</span></a></li>
<li><a href="ServingModel.html" title="interface in com.cloudera.oryx.api.serving" target="classFrame"><span class="interfaceName">ServingModel</span></a></li>
<li><a href="ServingModelManager.html" title="interface in com.cloudera.oryx.api.serving" target="classFrame"><span class="interfaceName">ServingModelManager</span></a></li>
</ul>
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="AbstractServingModelManager.html" title="class in com.cloudera.oryx.api.serving" target="classFrame">AbstractServingModelManager</a></li>
<li><a href="OryxResource.html" title="class in com.cloudera.oryx.api.serving" target="classFrame">OryxResource</a></li>
</ul>
<h2 title="Exceptions">Exceptions</h2>
<ul title="Exceptions">
<li><a href="OryxServingException.html" title="class in com.cloudera.oryx.api.serving" target="classFrame">OryxServingException</a></li>
</ul>
</div>
</body>
</html>
|
solr-4.4.0/docs/solr-solrj/org/apache/solr/client/solrj/response/class-use/RangeFacet.Count.html | tenaciousjzh/titan-solr-cloud-test | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_51) on Fri Jul 19 02:59:04 EDT 2013 -->
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<TITLE>
Uses of Class org.apache.solr.client.solrj.response.RangeFacet.Count (Solr 4.4.0 API)
</TITLE>
<META NAME="date" CONTENT="2013-07-19">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.solr.client.solrj.response.RangeFacet.Count (Solr 4.4.0 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/solr/client/solrj/response/RangeFacet.Count.html" title="class in org.apache.solr.client.solrj.response"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/solr/client/solrj/response//class-useRangeFacet.Count.html" target="_top"><B>FRAMES</B></A>
<A HREF="RangeFacet.Count.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.solr.client.solrj.response.RangeFacet.Count</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../../../../../org/apache/solr/client/solrj/response/RangeFacet.Count.html" title="class in org.apache.solr.client.solrj.response">RangeFacet.Count</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.solr.client.solrj.response"><B>org.apache.solr.client.solrj.response</B></A></TD>
<TD>Convenience classes for dealing with various types of Solr responses. </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.solr.client.solrj.response"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../../../org/apache/solr/client/solrj/response/RangeFacet.Count.html" title="class in org.apache.solr.client.solrj.response">RangeFacet.Count</A> in <A HREF="../../../../../../../org/apache/solr/client/solrj/response/package-summary.html">org.apache.solr.client.solrj.response</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../org/apache/solr/client/solrj/response/package-summary.html">org.apache.solr.client.solrj.response</A> that return types with arguments of type <A HREF="../../../../../../../org/apache/solr/client/solrj/response/RangeFacet.Count.html" title="class in org.apache.solr.client.solrj.response">RangeFacet.Count</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://download.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A><<A HREF="../../../../../../../org/apache/solr/client/solrj/response/RangeFacet.Count.html" title="class in org.apache.solr.client.solrj.response">RangeFacet.Count</A>></CODE></FONT></TD>
<TD><CODE><B>RangeFacet.</B><B><A HREF="../../../../../../../org/apache/solr/client/solrj/response/RangeFacet.html#getCounts()">getCounts</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/solr/client/solrj/response/RangeFacet.Count.html" title="class in org.apache.solr.client.solrj.response"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/solr/client/solrj/response//class-useRangeFacet.Count.html" target="_top"><B>FRAMES</B></A>
<A HREF="RangeFacet.Count.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.</i>
<script src='../../../../../../../prettify.js' type='text/javascript'></script>
<script type='text/javascript'>
(function(){
var oldonload = window.onload;
if (typeof oldonload != 'function') {
window.onload = prettyPrint;
} else {
window.onload = function() {
oldonload();
prettyPrint();
}
}
})();
</script>
</BODY>
</HTML>
|
app/elements/coder/challenge/page/ccc/nav-level-element.html | coduno/app | <link rel="import" href="../../../../../bower_components/paper-spinner/paper-spinner.html">
<dom-module id="nav-level-element">
<style>
:host{
display: block;
height: 100%;
}
.circle {
width: 25px;
height: 25px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
border-radius: 15px;
}
.empty{
line-height:25px;
}
.current{
background: #87CEFA;
}
.green{
background: #86C67C;
}
.gray{
border: 1px solid black;
}
.wrapper{
text-align:center;
margin: 7px;
}
</style>
<template>
<div class="wrapper" on-click="_onClick">
<div class$="{{divClass}}">
<span class="empty"></span>
</div>
</div>
</template>
<script>
Polymer({
is: 'nav-level-element',
properties:{
divClass: {
type: String,
notify: true,
value: 'circle gray'
},
state: {
value: 'default'
}
},
observers: [
'_stateChanged(state)'
],
_onClick: function(){
this.fire('task-switch', this.index);
},
_stateChanged: function(state){
if(state === 'completed'){
this.divClass = 'circle green';
}else if(state === 'current'){
this.divClass = 'circle current';
}else{
this.divClass = 'circle gray';
}
},
setState: function(state){
this.state = state;
}
});
</script>
</dom-module>
|
docs/public/generate/index.html | aleksandr-vin/go-swagger | <!DOCTYPE html>
<html lang="en-us">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
<title>Generates</title>
<link href="//fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css" type="text/css" media="screen,projection">
<link href="//goswagger.io//css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link rel="stylesheet" href="//goswagger.io//css/prism.css" />
<style type="text/css">
footer.page-footer{background-image: url(//goswagger.io//images/default.png);}
</style>
</head>
<body>
<ul id="slide-out" class="side-nav">
<li><a href="//goswagger.io/"><i class="mdi-action-home left"></i>Home</a></li>
<li><a href="//goswagger.io//generate/spec/"><i class="mdi-action-loyalty left"></i>Swagger.json</a></li>
<li><a href="//goswagger.io//generate/client/"><i class="mdi-action-polymer left"></i>Generate Client</a></li>
<li><a href="//goswagger.io//generate/server/"><i class="mdi-action-perm-data-setting left"></i>Generate Server</a></li>
<li><a href="//goswagger.io//usage/validate/"><i class="mdi-action-perm-media left"></i>Validate Spec</a></li>
</ul>
<div id="index-banner" class="parallax-container">
<a data-activates="slide-out" class="btn-floating button-collapse" style="top: 5px; left: 5px;"><i class="mdi-navigation-menu"></i></a>
<div class="section no-pad-bot">
<div class="container">
<h1 class="header center teal-text text-lighten-2"><a href="//goswagger.io/">go-swagger toolkit</a></h1>
<div class="row center">
<h5 class="header col s12 light">Swagger 2.0 describes your API's for you, so you don't have to</h5>
</div>
<div class="row center">
<a href="https://github.com/go-swagger/go-swagger"><img src="//goswagger.io//images/github2-dreamstale35.png"></a>
</div>
</div>
</div>
<div class="parallax">
<img src="//goswagger.io//images/default.png">
</div>
</div>
<div class="container">
<div class="section">
<div class="row">
<div class="col m4 s12">
<div class="card-panel">
<h4><a href="//goswagger.io/generate/spec/">swagger.json generation</a></h4>
<p>
<a href="//goswagger.io//categories/generate/">generate</a>
</p>
<p><p>The toolkit has a command that will let you generate a swagger spec document from your code.
The command integrates with go doc comments, and makes use of structs when it needs to know of
types.</p>
</p>
<p>
9 Nov 2015
</p>
</div>
</div>
<div class="col m4 s12">
<div class="card-panel">
<h4><a href="//goswagger.io/generate/client/">Generate an API client</a></h4>
<p>
<a href="//goswagger.io//categories/generate/">generate</a>
<a href="//goswagger.io//categories/client/">client</a>
</p>
<p><p>The toolkit has a command that will let you generate a client.</p>
</p>
<p>
23 Oct 2015
</p>
</div>
</div>
<div class="col m4 s12">
<div class="card-panel">
<h4><a href="//goswagger.io/generate/server/">Generate a server for a swagger spec</a></h4>
<p>
<a href="//goswagger.io//categories/generate/">generate</a>
<a href="//goswagger.io//categories/server/">server</a>
</p>
<p><p>The toolkit has a command that will let you generate a docker friendly server with support for TLS.
You can configure it through environment variables that are commonly used on PaaS services.</p>
</p>
<p>
22 Nov 2015
</p>
</div>
</div>
</div>
<div class="row">
<div class="col m4 s12">
<div class="card-panel">
<h4><a href="//goswagger.io/generate/spec/meta/">swagger:meta</a></h4>
<p>
<a href="//goswagger.io//categories/spec/">spec</a>
</p>
<p>The swagger:meta annotation flags a file as source for metadata about the API. This is typically a doc.go file with your package documentation. You can specify a Consumes and Produces key which has a new content type on each line Schemes is a tag that is required and allows for a comma separated string composed of: http, https, ws or wss Host and BasePath can be specified but those values will be defaults, they should get substituted when serving the swagger spec.</p>
<p>
14 Nov 2015
<a href="//goswagger.io//tags/meta-data/">#meta data</a>
</p>
</div>
</div>
<div class="col m4 s12">
<div class="card-panel">
<h4><a href="//goswagger.io/generate/spec/route/">swagger:route</a></h4>
<p>
<a href="//goswagger.io//categories/spec/">spec</a>
</p>
<p><p>A <strong>swagger:route</strong> annotation links a path to a method.
This operation gets a unique id, which is used in various places as method name.
One such usage is in method names for client generation for example.</p>
<p>Because there are many routers available, this tool does not try to parse the paths
you provided to your routing library of choice. So you have to specify your path pattern
yourself in valid swagger syntax.</p>
</p>
<p>
14 Nov 2015
<a href="//goswagger.io//tags/operations/">#operations</a>
</p>
</div>
</div>
<div class="col m4 s12">
<div class="card-panel">
<h4><a href="//goswagger.io/generate/spec/params/">swagger:params</a></h4>
<p>
<a href="//goswagger.io//categories/spec/">spec</a>
</p>
<p><p>The <strong>swagger:params</strong> annotation links a struct to one or more operations. The params in the resulting swagger spec can be composed of several structs.
There are no guarantees given on how property name overlaps are resolved when several structs apply to the same operation.
This tag works very similar to the swagger:model tag except that it produces valid parameter objects instead of schema
objects.</p>
</p>
<p>
14 Nov 2015
<a href="//goswagger.io//tags/operations/">#operations</a>
</p>
</div>
</div>
</div>
<div class="row">
<div class="col m4 s12">
<div class="card-panel">
<h4><a href="//goswagger.io/generate/spec/response/">swagger:response</a></h4>
<p>
<a href="//goswagger.io//categories/spec/">spec</a>
</p>
<p><p>Reads a struct decorated with <strong>swagger:response</strong> and uses that information to fill up the headers and the schema for a response.
A swagger:route can specify a response name for a status code and then the matching response will be used for that operation in the swagger definition.</p>
</p>
<p>
14 Nov 2015
<a href="//goswagger.io//tags/operations/">#operations</a>
</p>
</div>
</div>
<div class="col m4 s12">
<div class="card-panel">
<h4><a href="//goswagger.io/generate/spec/model/">swagger:model</a></h4>
<p>
<a href="//goswagger.io//categories/spec/">spec</a>
</p>
<p><p>A <strong>swagger:model</strong> annotation optionally gets a model name as extra data on the line.
when this appears anywhere in a comment for a struct, then that struct becomes a schema
in the definitions object of swagger.</p>
</p>
<p>
14 Nov 2015
<a href="//goswagger.io//tags/definitions/">#definitions</a>
</p>
</div>
</div>
<div class="col m4 s12">
<div class="card-panel">
<h4><a href="//goswagger.io/generate/spec/allOf/">swagger:allOf</a></h4>
<p>
<a href="//goswagger.io//categories/spec/">spec</a>
</p>
<p><p>Marks an embedded type as a member for allOf</p>
</p>
<p>
14 Nov 2015
<a href="//goswagger.io//tags/polymorphism/">#polymorphism</a>
</p>
</div>
</div>
</div>
<div class="row">
<div class="col s3 m1">
<a class="btn-floating btn-large disabled"><i class="mdi-navigation-arrow-back"></i></a>
</div>
<div class="col s6 m10 center"> </div>
<div class="col s3 m1">
<a class="btn-floating btn-large waves-effect waves-light" href="/generate/page/2/"><i class="mdi-navigation-arrow-forward"></i></a>
</div>
</div>
</div>
</div>
<footer class="page-footer">
<div class="footer-copyright">
<div class="container">
© 2015 go-swagger contributors
<div class="right">Design <a class="grey-text text-lighten-4" href="http://pdevty.github.io/blog/">pdevty</a></div>
</div>
</div>
</footer>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script>
<script src="//goswagger.io//js/init.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/prism/0.0.1/prism.min.js"></script>
</body>
</html>
|
templates/index.html | timlyo/personalWebsite | {% extends "partials/layout.html" %}
{% block body %}
<div class="ui container">
<div class="ui padded segment raised">
<h1>About Me</h1>
<p>I am a software developer with an interest in artificial intelligence and machine
learning.</p>
<p>I try to write some interesting things, be it software or articles. One day I hope to manage it.</p>
</div>
</div>
{% endblock %}
|
any23-core/src/test/resources/microformats/hcalendar/example1.html | venukb/any23 | <html>
<head>
</head>
<body>
<div class="vevent">
<h5 class="summary">Annual Employee Review</h5>
<div>posted on <abbr class="dtstamp" title="19970901T1300Z">September 1, 1997</abbr></div>
<div>UID: <span class="uid">[email protected]</span></div>
<div>Dates: <abbr class="dtstart" title="19970903T163000Z">Septempter 3, 1997, 16:30</abbr> -
<abbr class="dtend" title="19970903T190000Z">19:00 UTC</abbr></div>
<div>This meeting is <strong class="class">private</strong>.</div>
<div>Filed under:</div>
<ul>
<li class="category">Business</li>
<li class="category">Human Resources</li>
</ul>
</div>
</body>
</html> |
Application/User/View/gooraye/Map/setLatLng.html | h136799711/2015weitonghui | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content" content ="text/html; charset=utf-8" />
<title> 微通汇系统</title>
<meta http-equiv="MSThemeCompatible" content = "Yes" />
<script src="__JS__/common.js" type="text/javascript"></script>
<script src="__STATIC__/jquery-1.11.1.min.js" type="text/javascript"></script>
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak={gr-:$apikey}"></script>
<script src="__STATIC__/artDialog/jquery.artDialog.js?skin=default"></script>
<script src="__STATIC__/artDialog/plugins/iframeTools.js"></script>
<style type="text/css">
body, html,#allmap {width: 100%;height: 100%;overflow: hidden;margin:0;}
#allmap {width: 100%;height: 100%;overflow: hidden;margin:0;}
#l-map{height:100%;width:78%;float: left;border-right:2px solid #bcbcbc;}
#r-result{height:100%;width:20%;float:left;}
.search{
padding: 6px;
font-size: 14px;
margin: 5px;
color: #993300;
}
.search a{
background-color: #5d5d5d;
color: #fff;
margin-left: 5px;
border-radius: 3px;
padding: 5px;
}
.searchkeyword{
border: #606060 2px solid;
padding: 5px;
}
</style>
</head>
<body id="nv_member">
<input type="hidden" id="longitude" value="0" />
<input type="hidden" id="latitude" value="0" />
<div class="search" style="margin:0">全国范围内搜索:<input type="text" id="keyword" class="searchkeyword" /><a href="#" onclick="searchLoc();return false;">搜索</a> <a id="ok" style="float:none;background-color:#f40" href="###" >设定好就点我吧</a> 把跳动的点[拖动到或点击]你的公司地址或其它地址。</div>
<div id="l-map"></div>
<div id="r-result">搜索结果展示</div>
<script type="text/javascript">
function G(id) {
return document.getElementById(id);
}
if (art.dialog.data('longitude')) {
G('longitude').value = art.dialog.data('longitude');// 获取由主页面传递过来的数据
G('latitude').value = art.dialog.data('latitude');
};
// 关闭并返回数据到主页面
document.getElementById('ok').onclick = function () {
var origin = artDialog.open.origin;
var longitudeinput = origin.document.getElementById('longitude');
var latitudeinput = origin.document.getElementById('latitude');
longitudeinput.value = $('#longitude').attr('value');
latitudeinput.value = $('#latitude').attr('value');
art.dialog.close();
};
var map = new BMap.Map("l-map");
var myCity = new BMap.LocalCity();
myCity.get(createAniMarker);
var point = new BMap.Point($('#longitude').val(),$('#latitude').val());
map.centerAndZoom(point,12);
map.enableScrollWheelZoom(); //启用滚轮放大缩小
//右键菜单
var menu = new BMap.ContextMenu();
var txtMenuItem = [
{
text:'卫星视图',
callback:function(){ map.setMapType(BMAP_HYBRID_MAP);}
}
];
for(var i=0; i < txtMenuItem.length; i++){
menu.addItem(new BMap.MenuItem(txtMenuItem[i].text,txtMenuItem[i].callback,100));
}
map.addContextMenu(menu);
//搜索
var local = new BMap.LocalSearch("全国", {
renderOptions: {
map: map,
panel : "r-result",
autoViewport: true,
selectFirstResult: false
},
onSearchComplete:searchComplete
});
function searchLoc(keyword){
$key = (arguments[0] ) || G("keyword").value;
local.search($key);
}
function searchComplete(){
var result = local.getResults();
if(result && result.getPoi(0) ){
var pp = local.getResults().getPoi(0).point; //获取第一个智能搜索的结果
// console.log(pp);
map.centerAndZoom(pp, 18);
map.clearOverlays();
marker = new BMap.Marker(pp);
map.addOverlay(marker); //添加标注
marker.setAnimation(BMAP_ANIMATION_BOUNCE);
$('#longitude').attr('value',pp.lng);
$('#latitude').attr('value',pp.lat);
}
}
//创建标注
var marker = {};
function createAniMarker(result){
// map.clearOverlays();
if(result){
var cityName = result.name;
}
if($('#longitude').val()==0||$('#longitude').val()==''){
if(cityName){
map.setCenter(cityName);
}
p = new BMap.Point(result.center.lng,result.center.lat);
}else{
p = new BMap.Point($('#longitude').val(),$('#latitude').val());
}
marker = new BMap.Marker(p);
marker.enableDragging();
map.addOverlay(marker);
marker.setAnimation(BMAP_ANIMATION_BOUNCE);
marker.addEventListener("dragend", function(e){
$('#longitude').attr('value',e.point.lng)
$('#latitude').attr('value',e.point.lat)
})
}
//点击事件
map.addEventListener("click",function(e){
map.removeOverlay(marker);
$("#longitude").attr("value",e.point.lng);
$("#latitude").attr("value",e.point.lat);
createAniMarker();
// alert(e.point.lng + "," + e.point.lat);
});
//智能提示
var ac = new BMap.Autocomplete( //建立一个自动完成的对象
{"input" : "keyword"
,"location" : map
});
ac.addEventListener("onhighlight", function(e) { //鼠标放在下拉列表上的事件
var str = "";
var _value = e.fromitem.value;
var value = "";
if (e.fromitem.index > -1) {
value = _value.province + _value.city + _value.district + _value.street + _value.business;
}
str = "FromItem<br />index = " + e.fromitem.index + "<br />value = " + value;
value = "";
if (e.toitem.index > -1) {
_value = e.toitem.value;
value = _value.province + _value.city + _value.district + _value.street + _value.business;
}
str += "<br />ToItem<br />index = " + e.toitem.index + "<br />value = " + value;
// G("searchResultPanel").innerHTML = str;
});
var myValue;
ac.addEventListener("onconfirm", function(e) { //鼠标点击下拉列表后的事件
var _value = e.item.value;
myValue = _value.province + _value.city + _value.district + _value.street + _value.business;
// G("searchResultPanel").innerHTML ="onconfirm<br />index = " + e.item.index + "<br />myValue = " + myValue;
setPlace();
});
//设置地点
function setPlace(){
map.clearOverlays(); //清除地图上所有覆盖物
// function myFun(){
// var pp = local.getResults().getPoi(0).point; //获取第一个智能搜索的结果
// map.centerAndZoom(pp, 18);
// marker = new BMap.Marker(pp);
// map.addOverlay(marker); //添加标注
// marker.setAnimation(BMAP_ANIMATION_BOUNCE);
// }
searchLoc(myValue);
}
//console.log(marker);
</script>
</body>
</html> |
src/app/legal/commercial-license-oem.component.html | slamby/slamby-website | <pm-header></pm-header>
<div class="container">
<legalMenu></legalMenu>
<div class="body">
<h1>Extension to the slamby api commercial license for royalty free distribution (oem)</h1>
<h2>1. Definitions</h2>
<p>When used in this Agreement, the following terms shall have the respective meanings indicated, such meanings to be applicable to both the singular and plural forms of the terms defined:</p>
<ul>
<li>“We” or “Us” or “Slamby” or “Our” or the “Company” refers to Slamby-Semantics Ltd.</li>
<li>“You” and “Your” and “User” refers to the entity and/or individual person, natural or legal, consenting to, and entering into, this Agreement.</li>
<li>"Licensor" means Slamby.</li>
<li>"Software" means (a) all of the contents of the files, disk(s), disk image(s), Docker containers or other media with which this Agreement is provided, including but not limited to ((i) digital images (ii) related explanatory written materials or files ("Documentation"); and (iii) fonts; and (b) upgrades, modified versions, updates, additions, and copies of the Software, if any, licensed to you by Slamby (collectively, "Updates").</li>
<li>"Use" or "Using" means to access, install, download, copy or otherwise benefit from using the functionality of the Software.</li>
<li>"Licensee" means You or Your Company, unless otherwise indicated.</li>
<li>"System" means Windows OS, GNU/Linux or Mac OS X, Docker or any virtual machine.</li>
</ul>
<h2>2. General Use</h2>
<p>As long as the Licensee complies with the terms of this extension of End User License Agreement (the "Agreement") and the Agreement itself, the Licensor grants the Licensee a non-exclusive right to install and Use the Software for the purposes described in the Documentation under the following conditions:</p>
<p>The Software may be installed and used by the Licensee for business, commercial and money-earning purposes.</p>
<p>This License can be deployed on any number of systems.</p>
<p>The Software under this License may be incorporated into software/hardware projects sold by the Licensee.</p>
<p>The Licensee may physically or electronically distribute the Software to his manufacturing and service partners but only as an intermediary product, requiring incorporation of the Software into the software or hardware developed by the Licensee in cases when the manufacturing process involves the Licensee's partner's job to complete the project before distributing it to end-users.</p>
<p>The Licensee or his manufacturing and service partners may reproduce and physically or electronically distribute the Software only as an integral part of or incorporated into their software or hardware product.</p>
<p>This License entitles the Licensee to the unlimited redistribution of the Licensor's technology as a part of the Licensee's product.</p>
<p>This License is royalty-free, i.e. the Licensee does not need to pay a fee per every order of his product with the incorporated Licensor's technology.</p>
<p>This License cannot be used by the Licensee to develop a software application that would compete with products marketed by the Licensor.</p>
<h2>3. Intellectual Property Rights</h2>
<p>3.1 This License does not transmit any intellectual rights on the Software. The Software and any copies that the Licensee is authorized by the Licensor to make are the intellectual property of and are owned by the Licensor.</p>
<p>3.2 The Software is protected by copyright, including without limitation by Copyright Law and international treaty provisions.</p>
<p>3.3 Any copies that the Licensee is permitted to make pursuant to this Agreement must contain the same copyright and other proprietary notices that appear on or in the Software.</p>
<p>3.4 Any information supplied by the Licensor or obtained by the Licensee, as permitted hereunder, may only be used by the Licensee for the purpose described herein and may not be disclosed to any third party or used to create any software which is substantially similar to the expression of the Software.</p>
<p>3.5 Trademarks shall be used in accordance with accepted trademark practice, including identification of trademarks owners' names. Trademarks can only be used to identify printed output produced by the Software and such use of any trademark does not give the Licensee any rights of ownership in that trademark.</p>
<h2>License Transfer</h2>
<p>4.1 This License is non-transferable. The Licensee may not transfer the rights to Use the Software to third parties (another person or legal entity).</p>
<p>4.2 The Licensee may not rent, lease, sub-license, lend or transfer any versions or copies of the Software to third parties (another person or legal entity).</p>
<p>4.3 The Licensee may make a back-up copy of the Software, provided a backup copy is not installed or used on any system not belonging to the Licensee. The Licensee may not transfer the rights to install or use a backup copy of the Software to third parties (another person or legal entity).</p>
</div>
</div> |
packages/hbase-0.98.7-hadoop2/docs/xref-test/org/apache/hadoop/hbase/regionserver/TestReversibleScanners.html | gsoundar/mambo-ec2-deploy | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>TestReversibleScanners xref</title>
<link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../../testapidocs/org/apache/hadoop/hbase/regionserver/TestReversibleScanners.html">View Javadoc</a></div><pre>
<a class="jxr_linenumber" name="1" href="#1">1</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="2" href="#2">2</a> <em class="jxr_javadoccomment"> * Copyright The Apache Software Foundation</em>
<a class="jxr_linenumber" name="3" href="#3">3</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="4" href="#4">4</a> <em class="jxr_javadoccomment"> * Licensed to the Apache Software Foundation (ASF) under one or more</em>
<a class="jxr_linenumber" name="5" href="#5">5</a> <em class="jxr_javadoccomment"> * contributor license agreements. See the NOTICE file distributed with this</em>
<a class="jxr_linenumber" name="6" href="#6">6</a> <em class="jxr_javadoccomment"> * work for additional information regarding copyright ownership. The ASF</em>
<a class="jxr_linenumber" name="7" href="#7">7</a> <em class="jxr_javadoccomment"> * licenses this file to you under the Apache License, Version 2.0 (the</em>
<a class="jxr_linenumber" name="8" href="#8">8</a> <em class="jxr_javadoccomment"> * "License"); you may not use this file except in compliance with the License.</em>
<a class="jxr_linenumber" name="9" href="#9">9</a> <em class="jxr_javadoccomment"> * You may obtain a copy of the License at</em>
<a class="jxr_linenumber" name="10" href="#10">10</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="11" href="#11">11</a> <em class="jxr_javadoccomment"> * <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
<a class="jxr_linenumber" name="12" href="#12">12</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="13" href="#13">13</a> <em class="jxr_javadoccomment"> * Unless required by applicable law or agreed to in writing, software</em>
<a class="jxr_linenumber" name="14" href="#14">14</a> <em class="jxr_javadoccomment"> * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT</em>
<a class="jxr_linenumber" name="15" href="#15">15</a> <em class="jxr_javadoccomment"> * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the</em>
<a class="jxr_linenumber" name="16" href="#16">16</a> <em class="jxr_javadoccomment"> * License for the specific language governing permissions and limitations</em>
<a class="jxr_linenumber" name="17" href="#17">17</a> <em class="jxr_javadoccomment"> * under the License.</em>
<a class="jxr_linenumber" name="18" href="#18">18</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="19" href="#19">19</a> <strong class="jxr_keyword">package</strong> org.apache.hadoop.hbase.regionserver;
<a class="jxr_linenumber" name="20" href="#20">20</a>
<a class="jxr_linenumber" name="21" href="#21">21</a> <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.junit.Assert.assertEquals;
<a class="jxr_linenumber" name="22" href="#22">22</a> <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.junit.Assert.assertFalse;
<a class="jxr_linenumber" name="23" href="#23">23</a> <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.junit.Assert.assertTrue;
<a class="jxr_linenumber" name="24" href="#24">24</a>
<a class="jxr_linenumber" name="25" href="#25">25</a> <strong class="jxr_keyword">import</strong> java.io.IOException;
<a class="jxr_linenumber" name="26" href="#26">26</a> <strong class="jxr_keyword">import</strong> java.util.ArrayList;
<a class="jxr_linenumber" name="27" href="#27">27</a> <strong class="jxr_keyword">import</strong> java.util.Collections;
<a class="jxr_linenumber" name="28" href="#28">28</a> <strong class="jxr_keyword">import</strong> java.util.List;
<a class="jxr_linenumber" name="29" href="#29">29</a> <strong class="jxr_keyword">import</strong> java.util.Map;
<a class="jxr_linenumber" name="30" href="#30">30</a> <strong class="jxr_keyword">import</strong> java.util.NavigableSet;
<a class="jxr_linenumber" name="31" href="#31">31</a> <strong class="jxr_keyword">import</strong> java.util.Random;
<a class="jxr_linenumber" name="32" href="#32">32</a>
<a class="jxr_linenumber" name="33" href="#33">33</a> <strong class="jxr_keyword">import</strong> org.apache.commons.logging.Log;
<a class="jxr_linenumber" name="34" href="#34">34</a> <strong class="jxr_keyword">import</strong> org.apache.commons.logging.LogFactory;
<a class="jxr_linenumber" name="35" href="#35">35</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.conf.Configuration;
<a class="jxr_linenumber" name="36" href="#36">36</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.fs.FileSystem;
<a class="jxr_linenumber" name="37" href="#37">37</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.fs.Path;
<a class="jxr_linenumber" name="38" href="#38">38</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.Cell;
<a class="jxr_linenumber" name="39" href="#39">39</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.HBaseConfiguration;
<a class="jxr_linenumber" name="40" href="#40">40</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.HBaseTestingUtility;
<a class="jxr_linenumber" name="41" href="#41">41</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.HConstants;
<a class="jxr_linenumber" name="42" href="#42">42</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.KeyValue;
<a class="jxr_linenumber" name="43" href="#43">43</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.MediumTests;
<a class="jxr_linenumber" name="44" href="#44">44</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.client.Durability;
<a class="jxr_linenumber" name="45" href="#45">45</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.client.Put;
<a class="jxr_linenumber" name="46" href="#46">46</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.client.Result;
<a class="jxr_linenumber" name="47" href="#47">47</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.client.Scan;
<a class="jxr_linenumber" name="48" href="#48">48</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.filter.CompareFilter.CompareOp;
<a class="jxr_linenumber" name="49" href="#49">49</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.filter.Filter;
<a class="jxr_linenumber" name="50" href="#50">50</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.filter.FilterList;
<a class="jxr_linenumber" name="51" href="#51">51</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.filter.FilterList.Operator;
<a class="jxr_linenumber" name="52" href="#52">52</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.filter.PageFilter;
<a class="jxr_linenumber" name="53" href="#53">53</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.filter.SingleColumnValueFilter;
<a class="jxr_linenumber" name="54" href="#54">54</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.io.encoding.DataBlockEncoding;
<a class="jxr_linenumber" name="55" href="#55">55</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.io.hfile.CacheConfig;
<a class="jxr_linenumber" name="56" href="#56">56</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.io.hfile.HFileContext;
<a class="jxr_linenumber" name="57" href="#57">57</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.io.hfile.HFileContextBuilder;
<a class="jxr_linenumber" name="58" href="#58">58</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.util.Bytes;
<a class="jxr_linenumber" name="59" href="#59">59</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.util.Pair;
<a class="jxr_linenumber" name="60" href="#60">60</a> <strong class="jxr_keyword">import</strong> org.junit.Test;
<a class="jxr_linenumber" name="61" href="#61">61</a> <strong class="jxr_keyword">import</strong> org.junit.experimental.categories.Category;
<a class="jxr_linenumber" name="62" href="#62">62</a>
<a class="jxr_linenumber" name="63" href="#63">63</a> <strong class="jxr_keyword">import</strong> com.google.common.collect.Lists;
<a class="jxr_linenumber" name="64" href="#64">64</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="65" href="#65">65</a> <em class="jxr_javadoccomment"> * Test cases against ReversibleKeyValueScanner</em>
<a class="jxr_linenumber" name="66" href="#66">66</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="67" href="#67">67</a> @Category(MediumTests.<strong class="jxr_keyword">class</strong>)
<a class="jxr_linenumber" name="68" href="#68">68</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/TestReversibleScanners.html">TestReversibleScanners</a> {
<a class="jxr_linenumber" name="69" href="#69">69</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Log LOG = LogFactory.getLog(TestReversibleScanners.<strong class="jxr_keyword">class</strong>);
<a class="jxr_linenumber" name="70" href="#70">70</a> <a href="../../../../../org/apache/hadoop/hbase/HBaseTestingUtility.html">HBaseTestingUtility</a> TEST_UTIL = <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/hadoop/hbase/HBaseTestingUtility.html">HBaseTestingUtility</a>();
<a class="jxr_linenumber" name="71" href="#71">71</a>
<a class="jxr_linenumber" name="72" href="#72">72</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> byte[] FAMILYNAME = Bytes.toBytes(<span class="jxr_string">"testCf"</span>);
<a class="jxr_linenumber" name="73" href="#73">73</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">long</strong> TS = System.currentTimeMillis();
<a class="jxr_linenumber" name="74" href="#74">74</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">int</strong> MAXMVCC = 7;
<a class="jxr_linenumber" name="75" href="#75">75</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> byte[] ROW = Bytes.toBytes(<span class="jxr_string">"testRow"</span>);
<a class="jxr_linenumber" name="76" href="#76">76</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> ROWSIZE = 200;
<a class="jxr_linenumber" name="77" href="#77">77</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> byte[][] ROWS = makeN(ROW, ROWSIZE);
<a class="jxr_linenumber" name="78" href="#78">78</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> byte[] QUAL = Bytes.toBytes(<span class="jxr_string">"testQual"</span>);
<a class="jxr_linenumber" name="79" href="#79">79</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> QUALSIZE = 5;
<a class="jxr_linenumber" name="80" href="#80">80</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> byte[][] QUALS = makeN(QUAL, QUALSIZE);
<a class="jxr_linenumber" name="81" href="#81">81</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> byte[] VALUE = Bytes.toBytes(<span class="jxr_string">"testValue"</span>);
<a class="jxr_linenumber" name="82" href="#82">82</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> VALUESIZE = 3;
<a class="jxr_linenumber" name="83" href="#83">83</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> byte[][] VALUES = makeN(VALUE, VALUESIZE);
<a class="jxr_linenumber" name="84" href="#84">84</a>
<a class="jxr_linenumber" name="85" href="#85">85</a> @Test
<a class="jxr_linenumber" name="86" href="#86">86</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testReversibleStoreFileScanner() <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="87" href="#87">87</a> FileSystem fs = TEST_UTIL.getTestFileSystem();
<a class="jxr_linenumber" name="88" href="#88">88</a> Path hfilePath = <strong class="jxr_keyword">new</strong> Path(<strong class="jxr_keyword">new</strong> Path(
<a class="jxr_linenumber" name="89" href="#89">89</a> TEST_UTIL.getDataTestDir(<span class="jxr_string">"testReversibleStoreFileScanner"</span>),
<a class="jxr_linenumber" name="90" href="#90">90</a> <span class="jxr_string">"regionname"</span>), <span class="jxr_string">"familyname"</span>);
<a class="jxr_linenumber" name="91" href="#91">91</a> CacheConfig cacheConf = <strong class="jxr_keyword">new</strong> CacheConfig(TEST_UTIL.getConfiguration());
<a class="jxr_linenumber" name="92" href="#92">92</a> <strong class="jxr_keyword">for</strong> (DataBlockEncoding encoding : DataBlockEncoding.values()) {
<a class="jxr_linenumber" name="93" href="#93">93</a> HFileContextBuilder hcBuilder = <strong class="jxr_keyword">new</strong> HFileContextBuilder();
<a class="jxr_linenumber" name="94" href="#94">94</a> hcBuilder.withBlockSize(2 * 1024);
<a class="jxr_linenumber" name="95" href="#95">95</a> hcBuilder.withDataBlockEncoding(encoding);
<a class="jxr_linenumber" name="96" href="#96">96</a> HFileContext hFileContext = hcBuilder.build();
<a class="jxr_linenumber" name="97" href="#97">97</a> StoreFile.Writer writer = <strong class="jxr_keyword">new</strong> StoreFile.WriterBuilder(
<a class="jxr_linenumber" name="98" href="#98">98</a> TEST_UTIL.getConfiguration(), cacheConf, fs).withOutputDir(hfilePath)
<a class="jxr_linenumber" name="99" href="#99">99</a> .withFileContext(hFileContext).build();
<a class="jxr_linenumber" name="100" href="#100">100</a> writeStoreFile(writer);
<a class="jxr_linenumber" name="101" href="#101">101</a>
<a class="jxr_linenumber" name="102" href="#102">102</a> StoreFile sf = <strong class="jxr_keyword">new</strong> StoreFile(fs, writer.getPath(),
<a class="jxr_linenumber" name="103" href="#103">103</a> TEST_UTIL.getConfiguration(), cacheConf, BloomType.NONE);
<a class="jxr_linenumber" name="104" href="#104">104</a>
<a class="jxr_linenumber" name="105" href="#105">105</a> List<StoreFileScanner> scanners = StoreFileScanner
<a class="jxr_linenumber" name="106" href="#106">106</a> .getScannersForStoreFiles(Collections.singletonList(sf), false, <strong class="jxr_keyword">true</strong>,
<a class="jxr_linenumber" name="107" href="#107">107</a> false, Long.MAX_VALUE);
<a class="jxr_linenumber" name="108" href="#108">108</a> StoreFileScanner scanner = scanners.get(0);
<a class="jxr_linenumber" name="109" href="#109">109</a> seekTestOfReversibleKeyValueScanner(scanner);
<a class="jxr_linenumber" name="110" href="#110">110</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> readPoint = 0; readPoint < MAXMVCC; readPoint++) {
<a class="jxr_linenumber" name="111" href="#111">111</a> LOG.info(<span class="jxr_string">"Setting read point to "</span> + readPoint);
<a class="jxr_linenumber" name="112" href="#112">112</a> scanners = StoreFileScanner.getScannersForStoreFiles(
<a class="jxr_linenumber" name="113" href="#113">113</a> Collections.singletonList(sf), false, <strong class="jxr_keyword">true</strong>, false, readPoint);
<a class="jxr_linenumber" name="114" href="#114">114</a> seekTestOfReversibleKeyValueScannerWithMVCC(scanners.get(0), readPoint);
<a class="jxr_linenumber" name="115" href="#115">115</a> }
<a class="jxr_linenumber" name="116" href="#116">116</a> }
<a class="jxr_linenumber" name="117" href="#117">117</a>
<a class="jxr_linenumber" name="118" href="#118">118</a> }
<a class="jxr_linenumber" name="119" href="#119">119</a>
<a class="jxr_linenumber" name="120" href="#120">120</a> @Test
<a class="jxr_linenumber" name="121" href="#121">121</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testReversibleMemstoreScanner() <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="122" href="#122">122</a> MemStore memstore = <strong class="jxr_keyword">new</strong> MemStore();
<a class="jxr_linenumber" name="123" href="#123">123</a> writeMemstore(memstore);
<a class="jxr_linenumber" name="124" href="#124">124</a> List<KeyValueScanner> scanners = memstore.getScanners(Long.MAX_VALUE);
<a class="jxr_linenumber" name="125" href="#125">125</a> seekTestOfReversibleKeyValueScanner(scanners.get(0));
<a class="jxr_linenumber" name="126" href="#126">126</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> readPoint = 0; readPoint < MAXMVCC; readPoint++) {
<a class="jxr_linenumber" name="127" href="#127">127</a> LOG.info(<span class="jxr_string">"Setting read point to "</span> + readPoint);
<a class="jxr_linenumber" name="128" href="#128">128</a> scanners = memstore.getScanners(readPoint);
<a class="jxr_linenumber" name="129" href="#129">129</a> seekTestOfReversibleKeyValueScannerWithMVCC(scanners.get(0), readPoint);
<a class="jxr_linenumber" name="130" href="#130">130</a> }
<a class="jxr_linenumber" name="131" href="#131">131</a>
<a class="jxr_linenumber" name="132" href="#132">132</a> }
<a class="jxr_linenumber" name="133" href="#133">133</a>
<a class="jxr_linenumber" name="134" href="#134">134</a> @Test
<a class="jxr_linenumber" name="135" href="#135">135</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testReversibleKeyValueHeap() <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="136" href="#136">136</a> <em class="jxr_comment">// write data to one memstore and two store files</em>
<a class="jxr_linenumber" name="137" href="#137">137</a> FileSystem fs = TEST_UTIL.getTestFileSystem();
<a class="jxr_linenumber" name="138" href="#138">138</a> Path hfilePath = <strong class="jxr_keyword">new</strong> Path(<strong class="jxr_keyword">new</strong> Path(
<a class="jxr_linenumber" name="139" href="#139">139</a> TEST_UTIL.getDataTestDir(<span class="jxr_string">"testReversibleKeyValueHeap"</span>), <span class="jxr_string">"regionname"</span>),
<a class="jxr_linenumber" name="140" href="#140">140</a> <span class="jxr_string">"familyname"</span>);
<a class="jxr_linenumber" name="141" href="#141">141</a> CacheConfig cacheConf = <strong class="jxr_keyword">new</strong> CacheConfig(TEST_UTIL.getConfiguration());
<a class="jxr_linenumber" name="142" href="#142">142</a> HFileContextBuilder hcBuilder = <strong class="jxr_keyword">new</strong> HFileContextBuilder();
<a class="jxr_linenumber" name="143" href="#143">143</a> hcBuilder.withBlockSize(2 * 1024);
<a class="jxr_linenumber" name="144" href="#144">144</a> HFileContext hFileContext = hcBuilder.build();
<a class="jxr_linenumber" name="145" href="#145">145</a> StoreFile.Writer writer1 = <strong class="jxr_keyword">new</strong> StoreFile.WriterBuilder(
<a class="jxr_linenumber" name="146" href="#146">146</a> TEST_UTIL.getConfiguration(), cacheConf, fs).withOutputDir(
<a class="jxr_linenumber" name="147" href="#147">147</a> hfilePath).withFileContext(hFileContext).build();
<a class="jxr_linenumber" name="148" href="#148">148</a> StoreFile.Writer writer2 = <strong class="jxr_keyword">new</strong> StoreFile.WriterBuilder(
<a class="jxr_linenumber" name="149" href="#149">149</a> TEST_UTIL.getConfiguration(), cacheConf, fs).withOutputDir(
<a class="jxr_linenumber" name="150" href="#150">150</a> hfilePath).withFileContext(hFileContext).build();
<a class="jxr_linenumber" name="151" href="#151">151</a>
<a class="jxr_linenumber" name="152" href="#152">152</a> MemStore memstore = <strong class="jxr_keyword">new</strong> MemStore();
<a class="jxr_linenumber" name="153" href="#153">153</a> writeMemstoreAndStoreFiles(memstore, <strong class="jxr_keyword">new</strong> StoreFile.Writer[] { writer1,
<a class="jxr_linenumber" name="154" href="#154">154</a> writer2 });
<a class="jxr_linenumber" name="155" href="#155">155</a>
<a class="jxr_linenumber" name="156" href="#156">156</a> StoreFile sf1 = <strong class="jxr_keyword">new</strong> StoreFile(fs, writer1.getPath(),
<a class="jxr_linenumber" name="157" href="#157">157</a> TEST_UTIL.getConfiguration(), cacheConf, BloomType.NONE);
<a class="jxr_linenumber" name="158" href="#158">158</a>
<a class="jxr_linenumber" name="159" href="#159">159</a> StoreFile sf2 = <strong class="jxr_keyword">new</strong> StoreFile(fs, writer2.getPath(),
<a class="jxr_linenumber" name="160" href="#160">160</a> TEST_UTIL.getConfiguration(), cacheConf, BloomType.NONE);
<a class="jxr_linenumber" name="161" href="#161">161</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="162" href="#162">162</a> <em class="jxr_javadoccomment"> * Test without MVCC</em>
<a class="jxr_linenumber" name="163" href="#163">163</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="164" href="#164">164</a> <strong class="jxr_keyword">int</strong> startRowNum = ROWSIZE / 2;
<a class="jxr_linenumber" name="165" href="#165">165</a> ReversedKeyValueHeap kvHeap = getReversibleKeyValueHeap(memstore, sf1, sf2,
<a class="jxr_linenumber" name="166" href="#166">166</a> ROWS[startRowNum], MAXMVCC);
<a class="jxr_linenumber" name="167" href="#167">167</a> internalTestSeekAndNextForReversibleKeyValueHeap(kvHeap, startRowNum);
<a class="jxr_linenumber" name="168" href="#168">168</a>
<a class="jxr_linenumber" name="169" href="#169">169</a> startRowNum = ROWSIZE - 1;
<a class="jxr_linenumber" name="170" href="#170">170</a> kvHeap = getReversibleKeyValueHeap(memstore, sf1, sf2,
<a class="jxr_linenumber" name="171" href="#171">171</a> HConstants.EMPTY_START_ROW, MAXMVCC);
<a class="jxr_linenumber" name="172" href="#172">172</a> internalTestSeekAndNextForReversibleKeyValueHeap(kvHeap, startRowNum);
<a class="jxr_linenumber" name="173" href="#173">173</a>
<a class="jxr_linenumber" name="174" href="#174">174</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="175" href="#175">175</a> <em class="jxr_javadoccomment"> * Test with MVCC</em>
<a class="jxr_linenumber" name="176" href="#176">176</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="177" href="#177">177</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> readPoint = 0; readPoint < MAXMVCC; readPoint++) {
<a class="jxr_linenumber" name="178" href="#178">178</a> LOG.info(<span class="jxr_string">"Setting read point to "</span> + readPoint);
<a class="jxr_linenumber" name="179" href="#179">179</a> startRowNum = ROWSIZE - 1;
<a class="jxr_linenumber" name="180" href="#180">180</a> kvHeap = getReversibleKeyValueHeap(memstore, sf1, sf2,
<a class="jxr_linenumber" name="181" href="#181">181</a> HConstants.EMPTY_START_ROW, readPoint);
<a class="jxr_linenumber" name="182" href="#182">182</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = startRowNum; i >= 0; i--) {
<a class="jxr_linenumber" name="183" href="#183">183</a> <strong class="jxr_keyword">if</strong> (i - 2 < 0) <strong class="jxr_keyword">break</strong>;
<a class="jxr_linenumber" name="184" href="#184">184</a> i = i - 2;
<a class="jxr_linenumber" name="185" href="#185">185</a> kvHeap.seekToPreviousRow(KeyValue.createFirstOnRow(ROWS[i + 1]));
<a class="jxr_linenumber" name="186" href="#186">186</a> Pair<Integer, Integer> nextReadableNum = getNextReadableNumWithBackwardScan(
<a class="jxr_linenumber" name="187" href="#187">187</a> i, 0, readPoint);
<a class="jxr_linenumber" name="188" href="#188">188</a> <strong class="jxr_keyword">if</strong> (nextReadableNum == <strong class="jxr_keyword">null</strong>) <strong class="jxr_keyword">break</strong>;
<a class="jxr_linenumber" name="189" href="#189">189</a> KeyValue expecedKey = makeKV(nextReadableNum.getFirst(),
<a class="jxr_linenumber" name="190" href="#190">190</a> nextReadableNum.getSecond());
<a class="jxr_linenumber" name="191" href="#191">191</a> assertEquals(expecedKey, kvHeap.peek());
<a class="jxr_linenumber" name="192" href="#192">192</a> i = nextReadableNum.getFirst();
<a class="jxr_linenumber" name="193" href="#193">193</a> <strong class="jxr_keyword">int</strong> qualNum = nextReadableNum.getSecond();
<a class="jxr_linenumber" name="194" href="#194">194</a> <strong class="jxr_keyword">if</strong> (qualNum + 1 < QUALSIZE) {
<a class="jxr_linenumber" name="195" href="#195">195</a> kvHeap.backwardSeek(makeKV(i, qualNum + 1));
<a class="jxr_linenumber" name="196" href="#196">196</a> nextReadableNum = getNextReadableNumWithBackwardScan(i, qualNum + 1,
<a class="jxr_linenumber" name="197" href="#197">197</a> readPoint);
<a class="jxr_linenumber" name="198" href="#198">198</a> <strong class="jxr_keyword">if</strong> (nextReadableNum == <strong class="jxr_keyword">null</strong>) <strong class="jxr_keyword">break</strong>;
<a class="jxr_linenumber" name="199" href="#199">199</a> expecedKey = makeKV(nextReadableNum.getFirst(),
<a class="jxr_linenumber" name="200" href="#200">200</a> nextReadableNum.getSecond());
<a class="jxr_linenumber" name="201" href="#201">201</a> assertEquals(expecedKey, kvHeap.peek());
<a class="jxr_linenumber" name="202" href="#202">202</a> i = nextReadableNum.getFirst();
<a class="jxr_linenumber" name="203" href="#203">203</a> qualNum = nextReadableNum.getSecond();
<a class="jxr_linenumber" name="204" href="#204">204</a> }
<a class="jxr_linenumber" name="205" href="#205">205</a>
<a class="jxr_linenumber" name="206" href="#206">206</a> kvHeap.next();
<a class="jxr_linenumber" name="207" href="#207">207</a>
<a class="jxr_linenumber" name="208" href="#208">208</a> <strong class="jxr_keyword">if</strong> (qualNum + 1 >= QUALSIZE) {
<a class="jxr_linenumber" name="209" href="#209">209</a> nextReadableNum = getNextReadableNumWithBackwardScan(i - 1, 0,
<a class="jxr_linenumber" name="210" href="#210">210</a> readPoint);
<a class="jxr_linenumber" name="211" href="#211">211</a> } <strong class="jxr_keyword">else</strong> {
<a class="jxr_linenumber" name="212" href="#212">212</a> nextReadableNum = getNextReadableNumWithBackwardScan(i, qualNum + 1,
<a class="jxr_linenumber" name="213" href="#213">213</a> readPoint);
<a class="jxr_linenumber" name="214" href="#214">214</a> }
<a class="jxr_linenumber" name="215" href="#215">215</a> <strong class="jxr_keyword">if</strong> (nextReadableNum == <strong class="jxr_keyword">null</strong>) <strong class="jxr_keyword">break</strong>;
<a class="jxr_linenumber" name="216" href="#216">216</a> expecedKey = makeKV(nextReadableNum.getFirst(),
<a class="jxr_linenumber" name="217" href="#217">217</a> nextReadableNum.getSecond());
<a class="jxr_linenumber" name="218" href="#218">218</a> assertEquals(expecedKey, kvHeap.peek());
<a class="jxr_linenumber" name="219" href="#219">219</a> i = nextReadableNum.getFirst();
<a class="jxr_linenumber" name="220" href="#220">220</a> }
<a class="jxr_linenumber" name="221" href="#221">221</a> }
<a class="jxr_linenumber" name="222" href="#222">222</a> }
<a class="jxr_linenumber" name="223" href="#223">223</a>
<a class="jxr_linenumber" name="224" href="#224">224</a> @Test
<a class="jxr_linenumber" name="225" href="#225">225</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testReversibleStoreScanner() <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="226" href="#226">226</a> <em class="jxr_comment">// write data to one memstore and two store files</em>
<a class="jxr_linenumber" name="227" href="#227">227</a> FileSystem fs = TEST_UTIL.getTestFileSystem();
<a class="jxr_linenumber" name="228" href="#228">228</a> Path hfilePath = <strong class="jxr_keyword">new</strong> Path(<strong class="jxr_keyword">new</strong> Path(
<a class="jxr_linenumber" name="229" href="#229">229</a> TEST_UTIL.getDataTestDir(<span class="jxr_string">"testReversibleStoreScanner"</span>), <span class="jxr_string">"regionname"</span>),
<a class="jxr_linenumber" name="230" href="#230">230</a> <span class="jxr_string">"familyname"</span>);
<a class="jxr_linenumber" name="231" href="#231">231</a> CacheConfig cacheConf = <strong class="jxr_keyword">new</strong> CacheConfig(TEST_UTIL.getConfiguration());
<a class="jxr_linenumber" name="232" href="#232">232</a> HFileContextBuilder hcBuilder = <strong class="jxr_keyword">new</strong> HFileContextBuilder();
<a class="jxr_linenumber" name="233" href="#233">233</a> hcBuilder.withBlockSize(2 * 1024);
<a class="jxr_linenumber" name="234" href="#234">234</a> HFileContext hFileContext = hcBuilder.build();
<a class="jxr_linenumber" name="235" href="#235">235</a> StoreFile.Writer writer1 = <strong class="jxr_keyword">new</strong> StoreFile.WriterBuilder(
<a class="jxr_linenumber" name="236" href="#236">236</a> TEST_UTIL.getConfiguration(), cacheConf, fs).withOutputDir(
<a class="jxr_linenumber" name="237" href="#237">237</a> hfilePath).withFileContext(hFileContext).build();
<a class="jxr_linenumber" name="238" href="#238">238</a> StoreFile.Writer writer2 = <strong class="jxr_keyword">new</strong> StoreFile.WriterBuilder(
<a class="jxr_linenumber" name="239" href="#239">239</a> TEST_UTIL.getConfiguration(), cacheConf, fs).withOutputDir(
<a class="jxr_linenumber" name="240" href="#240">240</a> hfilePath).withFileContext(hFileContext).build();
<a class="jxr_linenumber" name="241" href="#241">241</a>
<a class="jxr_linenumber" name="242" href="#242">242</a> MemStore memstore = <strong class="jxr_keyword">new</strong> MemStore();
<a class="jxr_linenumber" name="243" href="#243">243</a> writeMemstoreAndStoreFiles(memstore, <strong class="jxr_keyword">new</strong> StoreFile.Writer[] { writer1,
<a class="jxr_linenumber" name="244" href="#244">244</a> writer2 });
<a class="jxr_linenumber" name="245" href="#245">245</a>
<a class="jxr_linenumber" name="246" href="#246">246</a> StoreFile sf1 = <strong class="jxr_keyword">new</strong> StoreFile(fs, writer1.getPath(),
<a class="jxr_linenumber" name="247" href="#247">247</a> TEST_UTIL.getConfiguration(), cacheConf, BloomType.NONE);
<a class="jxr_linenumber" name="248" href="#248">248</a>
<a class="jxr_linenumber" name="249" href="#249">249</a> StoreFile sf2 = <strong class="jxr_keyword">new</strong> StoreFile(fs, writer2.getPath(),
<a class="jxr_linenumber" name="250" href="#250">250</a> TEST_UTIL.getConfiguration(), cacheConf, BloomType.NONE);
<a class="jxr_linenumber" name="251" href="#251">251</a>
<a class="jxr_linenumber" name="252" href="#252">252</a> ScanType scanType = ScanType.USER_SCAN;
<a class="jxr_linenumber" name="253" href="#253">253</a> ScanInfo scanInfo = <strong class="jxr_keyword">new</strong> ScanInfo(FAMILYNAME, 0, Integer.MAX_VALUE,
<a class="jxr_linenumber" name="254" href="#254">254</a> Long.MAX_VALUE, false, 0, KeyValue.COMPARATOR);
<a class="jxr_linenumber" name="255" href="#255">255</a>
<a class="jxr_linenumber" name="256" href="#256">256</a> <em class="jxr_comment">// Case 1.Test a full reversed scan</em>
<a class="jxr_linenumber" name="257" href="#257">257</a> Scan scan = <strong class="jxr_keyword">new</strong> Scan();
<a class="jxr_linenumber" name="258" href="#258">258</a> scan.setReversed(<strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="259" href="#259">259</a> StoreScanner storeScanner = getReversibleStoreScanner(memstore, sf1, sf2,
<a class="jxr_linenumber" name="260" href="#260">260</a> scan, scanType, scanInfo, MAXMVCC);
<a class="jxr_linenumber" name="261" href="#261">261</a> verifyCountAndOrder(storeScanner, QUALSIZE * ROWSIZE, ROWSIZE, false);
<a class="jxr_linenumber" name="262" href="#262">262</a>
<a class="jxr_linenumber" name="263" href="#263">263</a> <em class="jxr_comment">// Case 2.Test reversed scan with a specified start row</em>
<a class="jxr_linenumber" name="264" href="#264">264</a> <strong class="jxr_keyword">int</strong> startRowNum = ROWSIZE / 2;
<a class="jxr_linenumber" name="265" href="#265">265</a> byte[] startRow = ROWS[startRowNum];
<a class="jxr_linenumber" name="266" href="#266">266</a> scan.setStartRow(startRow);
<a class="jxr_linenumber" name="267" href="#267">267</a> storeScanner = getReversibleStoreScanner(memstore, sf1, sf2, scan,
<a class="jxr_linenumber" name="268" href="#268">268</a> scanType, scanInfo, MAXMVCC);
<a class="jxr_linenumber" name="269" href="#269">269</a> verifyCountAndOrder(storeScanner, QUALSIZE * (startRowNum + 1),
<a class="jxr_linenumber" name="270" href="#270">270</a> startRowNum + 1, false);
<a class="jxr_linenumber" name="271" href="#271">271</a>
<a class="jxr_linenumber" name="272" href="#272">272</a> <em class="jxr_comment">// Case 3.Test reversed scan with a specified start row and specified</em>
<a class="jxr_linenumber" name="273" href="#273">273</a> <em class="jxr_comment">// qualifiers</em>
<a class="jxr_linenumber" name="274" href="#274">274</a> assertTrue(QUALSIZE > 2);
<a class="jxr_linenumber" name="275" href="#275">275</a> scan.addColumn(FAMILYNAME, QUALS[0]);
<a class="jxr_linenumber" name="276" href="#276">276</a> scan.addColumn(FAMILYNAME, QUALS[2]);
<a class="jxr_linenumber" name="277" href="#277">277</a> storeScanner = getReversibleStoreScanner(memstore, sf1, sf2, scan,
<a class="jxr_linenumber" name="278" href="#278">278</a> scanType, scanInfo, MAXMVCC);
<a class="jxr_linenumber" name="279" href="#279">279</a> verifyCountAndOrder(storeScanner, 2 * (startRowNum + 1), startRowNum + 1,
<a class="jxr_linenumber" name="280" href="#280">280</a> false);
<a class="jxr_linenumber" name="281" href="#281">281</a>
<a class="jxr_linenumber" name="282" href="#282">282</a> <em class="jxr_comment">// Case 4.Test reversed scan with mvcc based on case 3</em>
<a class="jxr_linenumber" name="283" href="#283">283</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> readPoint = 0; readPoint < MAXMVCC; readPoint++) {
<a class="jxr_linenumber" name="284" href="#284">284</a> LOG.info(<span class="jxr_string">"Setting read point to "</span> + readPoint);
<a class="jxr_linenumber" name="285" href="#285">285</a> storeScanner = getReversibleStoreScanner(memstore, sf1, sf2, scan,
<a class="jxr_linenumber" name="286" href="#286">286</a> scanType, scanInfo, readPoint);
<a class="jxr_linenumber" name="287" href="#287">287</a> <strong class="jxr_keyword">int</strong> expectedRowCount = 0;
<a class="jxr_linenumber" name="288" href="#288">288</a> <strong class="jxr_keyword">int</strong> expectedKVCount = 0;
<a class="jxr_linenumber" name="289" href="#289">289</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = startRowNum; i >= 0; i--) {
<a class="jxr_linenumber" name="290" href="#290">290</a> <strong class="jxr_keyword">int</strong> kvCount = 0;
<a class="jxr_linenumber" name="291" href="#291">291</a> <strong class="jxr_keyword">if</strong> (makeMVCC(i, 0) <= readPoint) {
<a class="jxr_linenumber" name="292" href="#292">292</a> kvCount++;
<a class="jxr_linenumber" name="293" href="#293">293</a> }
<a class="jxr_linenumber" name="294" href="#294">294</a> <strong class="jxr_keyword">if</strong> (makeMVCC(i, 2) <= readPoint) {
<a class="jxr_linenumber" name="295" href="#295">295</a> kvCount++;
<a class="jxr_linenumber" name="296" href="#296">296</a> }
<a class="jxr_linenumber" name="297" href="#297">297</a> <strong class="jxr_keyword">if</strong> (kvCount > 0) {
<a class="jxr_linenumber" name="298" href="#298">298</a> expectedRowCount++;
<a class="jxr_linenumber" name="299" href="#299">299</a> expectedKVCount += kvCount;
<a class="jxr_linenumber" name="300" href="#300">300</a> }
<a class="jxr_linenumber" name="301" href="#301">301</a> }
<a class="jxr_linenumber" name="302" href="#302">302</a> verifyCountAndOrder(storeScanner, expectedKVCount, expectedRowCount,
<a class="jxr_linenumber" name="303" href="#303">303</a> false);
<a class="jxr_linenumber" name="304" href="#304">304</a> }
<a class="jxr_linenumber" name="305" href="#305">305</a> }
<a class="jxr_linenumber" name="306" href="#306">306</a>
<a class="jxr_linenumber" name="307" href="#307">307</a> @Test
<a class="jxr_linenumber" name="308" href="#308">308</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testReversibleRegionScanner() <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="309" href="#309">309</a> byte[] tableName = Bytes.toBytes(<span class="jxr_string">"testtable"</span>);
<a class="jxr_linenumber" name="310" href="#310">310</a> byte[] FAMILYNAME2 = Bytes.toBytes(<span class="jxr_string">"testCf2"</span>);
<a class="jxr_linenumber" name="311" href="#311">311</a> Configuration conf = HBaseConfiguration.create();
<a class="jxr_linenumber" name="312" href="#312">312</a> HRegion region = TEST_UTIL.createLocalHRegion(tableName, <strong class="jxr_keyword">null</strong>, <strong class="jxr_keyword">null</strong>,
<a class="jxr_linenumber" name="313" href="#313">313</a> <span class="jxr_string">"testReversibleRegionScanner"</span>, conf, false, Durability.SYNC_WAL, <strong class="jxr_keyword">null</strong>,
<a class="jxr_linenumber" name="314" href="#314">314</a> FAMILYNAME, FAMILYNAME2);
<a class="jxr_linenumber" name="315" href="#315">315</a> loadDataToRegion(region, FAMILYNAME2);
<a class="jxr_linenumber" name="316" href="#316">316</a>
<a class="jxr_linenumber" name="317" href="#317">317</a> <em class="jxr_comment">// verify row count with forward scan</em>
<a class="jxr_linenumber" name="318" href="#318">318</a> Scan scan = <strong class="jxr_keyword">new</strong> Scan();
<a class="jxr_linenumber" name="319" href="#319">319</a> InternalScanner scanner = region.getScanner(scan);
<a class="jxr_linenumber" name="320" href="#320">320</a> verifyCountAndOrder(scanner, ROWSIZE * QUALSIZE * 2, ROWSIZE, <strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="321" href="#321">321</a>
<a class="jxr_linenumber" name="322" href="#322">322</a> <em class="jxr_comment">// Case1:Full reversed scan</em>
<a class="jxr_linenumber" name="323" href="#323">323</a> scan.setReversed(<strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="324" href="#324">324</a> scanner = region.getScanner(scan);
<a class="jxr_linenumber" name="325" href="#325">325</a> verifyCountAndOrder(scanner, ROWSIZE * QUALSIZE * 2, ROWSIZE, false);
<a class="jxr_linenumber" name="326" href="#326">326</a>
<a class="jxr_linenumber" name="327" href="#327">327</a> <em class="jxr_comment">// Case2:Full reversed scan with one family</em>
<a class="jxr_linenumber" name="328" href="#328">328</a> scan = <strong class="jxr_keyword">new</strong> Scan();
<a class="jxr_linenumber" name="329" href="#329">329</a> scan.setReversed(<strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="330" href="#330">330</a> scan.addFamily(FAMILYNAME);
<a class="jxr_linenumber" name="331" href="#331">331</a> scanner = region.getScanner(scan);
<a class="jxr_linenumber" name="332" href="#332">332</a> verifyCountAndOrder(scanner, ROWSIZE * QUALSIZE, ROWSIZE, false);
<a class="jxr_linenumber" name="333" href="#333">333</a>
<a class="jxr_linenumber" name="334" href="#334">334</a> <em class="jxr_comment">// Case3:Specify qualifiers + One family</em>
<a class="jxr_linenumber" name="335" href="#335">335</a> byte[][] specifiedQualifiers = { QUALS[1], QUALS[2] };
<a class="jxr_linenumber" name="336" href="#336">336</a> <strong class="jxr_keyword">for</strong> (byte[] specifiedQualifier : specifiedQualifiers)
<a class="jxr_linenumber" name="337" href="#337">337</a> scan.addColumn(FAMILYNAME, specifiedQualifier);
<a class="jxr_linenumber" name="338" href="#338">338</a> scanner = region.getScanner(scan);
<a class="jxr_linenumber" name="339" href="#339">339</a> verifyCountAndOrder(scanner, ROWSIZE * 2, ROWSIZE, false);
<a class="jxr_linenumber" name="340" href="#340">340</a>
<a class="jxr_linenumber" name="341" href="#341">341</a> <em class="jxr_comment">// Case4:Specify qualifiers + Two families</em>
<a class="jxr_linenumber" name="342" href="#342">342</a> <strong class="jxr_keyword">for</strong> (byte[] specifiedQualifier : specifiedQualifiers)
<a class="jxr_linenumber" name="343" href="#343">343</a> scan.addColumn(FAMILYNAME2, specifiedQualifier);
<a class="jxr_linenumber" name="344" href="#344">344</a> scanner = region.getScanner(scan);
<a class="jxr_linenumber" name="345" href="#345">345</a> verifyCountAndOrder(scanner, ROWSIZE * 2 * 2, ROWSIZE, false);
<a class="jxr_linenumber" name="346" href="#346">346</a>
<a class="jxr_linenumber" name="347" href="#347">347</a> <em class="jxr_comment">// Case5: Case4 + specify start row</em>
<a class="jxr_linenumber" name="348" href="#348">348</a> <strong class="jxr_keyword">int</strong> startRowNum = ROWSIZE * 3 / 4;
<a class="jxr_linenumber" name="349" href="#349">349</a> scan.setStartRow(ROWS[startRowNum]);
<a class="jxr_linenumber" name="350" href="#350">350</a> scanner = region.getScanner(scan);
<a class="jxr_linenumber" name="351" href="#351">351</a> verifyCountAndOrder(scanner, (startRowNum + 1) * 2 * 2, (startRowNum + 1),
<a class="jxr_linenumber" name="352" href="#352">352</a> false);
<a class="jxr_linenumber" name="353" href="#353">353</a>
<a class="jxr_linenumber" name="354" href="#354">354</a> <em class="jxr_comment">// Case6: Case4 + specify stop row</em>
<a class="jxr_linenumber" name="355" href="#355">355</a> <strong class="jxr_keyword">int</strong> stopRowNum = ROWSIZE / 4;
<a class="jxr_linenumber" name="356" href="#356">356</a> scan.setStartRow(HConstants.EMPTY_BYTE_ARRAY);
<a class="jxr_linenumber" name="357" href="#357">357</a> scan.setStopRow(ROWS[stopRowNum]);
<a class="jxr_linenumber" name="358" href="#358">358</a> scanner = region.getScanner(scan);
<a class="jxr_linenumber" name="359" href="#359">359</a> verifyCountAndOrder(scanner, (ROWSIZE - stopRowNum - 1) * 2 * 2, (ROWSIZE
<a class="jxr_linenumber" name="360" href="#360">360</a> - stopRowNum - 1), false);
<a class="jxr_linenumber" name="361" href="#361">361</a>
<a class="jxr_linenumber" name="362" href="#362">362</a> <em class="jxr_comment">// Case7: Case4 + specify start row + specify stop row</em>
<a class="jxr_linenumber" name="363" href="#363">363</a> scan.setStartRow(ROWS[startRowNum]);
<a class="jxr_linenumber" name="364" href="#364">364</a> scanner = region.getScanner(scan);
<a class="jxr_linenumber" name="365" href="#365">365</a> verifyCountAndOrder(scanner, (startRowNum - stopRowNum) * 2 * 2,
<a class="jxr_linenumber" name="366" href="#366">366</a> (startRowNum - stopRowNum), false);
<a class="jxr_linenumber" name="367" href="#367">367</a>
<a class="jxr_linenumber" name="368" href="#368">368</a> <em class="jxr_comment">// Case8: Case7 + SingleColumnValueFilter</em>
<a class="jxr_linenumber" name="369" href="#369">369</a> <strong class="jxr_keyword">int</strong> valueNum = startRowNum % VALUESIZE;
<a class="jxr_linenumber" name="370" href="#370">370</a> Filter filter = <strong class="jxr_keyword">new</strong> SingleColumnValueFilter(FAMILYNAME,
<a class="jxr_linenumber" name="371" href="#371">371</a> specifiedQualifiers[0], CompareOp.EQUAL, VALUES[valueNum]);
<a class="jxr_linenumber" name="372" href="#372">372</a> scan.setFilter(filter);
<a class="jxr_linenumber" name="373" href="#373">373</a> scanner = region.getScanner(scan);
<a class="jxr_linenumber" name="374" href="#374">374</a> <strong class="jxr_keyword">int</strong> unfilteredRowNum = (startRowNum - stopRowNum) / VALUESIZE
<a class="jxr_linenumber" name="375" href="#375">375</a> + (stopRowNum / VALUESIZE == valueNum ? 0 : 1);
<a class="jxr_linenumber" name="376" href="#376">376</a> verifyCountAndOrder(scanner, unfilteredRowNum * 2 * 2, unfilteredRowNum,
<a class="jxr_linenumber" name="377" href="#377">377</a> false);
<a class="jxr_linenumber" name="378" href="#378">378</a>
<a class="jxr_linenumber" name="379" href="#379">379</a> <em class="jxr_comment">// Case9: Case7 + PageFilter</em>
<a class="jxr_linenumber" name="380" href="#380">380</a> <strong class="jxr_keyword">int</strong> pageSize = 10;
<a class="jxr_linenumber" name="381" href="#381">381</a> filter = <strong class="jxr_keyword">new</strong> PageFilter(pageSize);
<a class="jxr_linenumber" name="382" href="#382">382</a> scan.setFilter(filter);
<a class="jxr_linenumber" name="383" href="#383">383</a> scanner = region.getScanner(scan);
<a class="jxr_linenumber" name="384" href="#384">384</a> <strong class="jxr_keyword">int</strong> expectedRowNum = pageSize;
<a class="jxr_linenumber" name="385" href="#385">385</a> verifyCountAndOrder(scanner, expectedRowNum * 2 * 2, expectedRowNum, false);
<a class="jxr_linenumber" name="386" href="#386">386</a>
<a class="jxr_linenumber" name="387" href="#387">387</a> <em class="jxr_comment">// Case10: Case7 + FilterList+MUST_PASS_ONE</em>
<a class="jxr_linenumber" name="388" href="#388">388</a> SingleColumnValueFilter scvFilter1 = <strong class="jxr_keyword">new</strong> SingleColumnValueFilter(
<a class="jxr_linenumber" name="389" href="#389">389</a> FAMILYNAME, specifiedQualifiers[0], CompareOp.EQUAL, VALUES[0]);
<a class="jxr_linenumber" name="390" href="#390">390</a> SingleColumnValueFilter scvFilter2 = <strong class="jxr_keyword">new</strong> SingleColumnValueFilter(
<a class="jxr_linenumber" name="391" href="#391">391</a> FAMILYNAME, specifiedQualifiers[0], CompareOp.EQUAL, VALUES[1]);
<a class="jxr_linenumber" name="392" href="#392">392</a> expectedRowNum = 0;
<a class="jxr_linenumber" name="393" href="#393">393</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = startRowNum; i > stopRowNum; i--) {
<a class="jxr_linenumber" name="394" href="#394">394</a> <strong class="jxr_keyword">if</strong> (i % VALUESIZE == 0 || i % VALUESIZE == 1) {
<a class="jxr_linenumber" name="395" href="#395">395</a> expectedRowNum++;
<a class="jxr_linenumber" name="396" href="#396">396</a> }
<a class="jxr_linenumber" name="397" href="#397">397</a> }
<a class="jxr_linenumber" name="398" href="#398">398</a> filter = <strong class="jxr_keyword">new</strong> FilterList(Operator.MUST_PASS_ONE, scvFilter1, scvFilter2);
<a class="jxr_linenumber" name="399" href="#399">399</a> scan.setFilter(filter);
<a class="jxr_linenumber" name="400" href="#400">400</a> scanner = region.getScanner(scan);
<a class="jxr_linenumber" name="401" href="#401">401</a> verifyCountAndOrder(scanner, expectedRowNum * 2 * 2, expectedRowNum, false);
<a class="jxr_linenumber" name="402" href="#402">402</a>
<a class="jxr_linenumber" name="403" href="#403">403</a> <em class="jxr_comment">// Case10: Case7 + FilterList+MUST_PASS_ALL</em>
<a class="jxr_linenumber" name="404" href="#404">404</a> filter = <strong class="jxr_keyword">new</strong> FilterList(Operator.MUST_PASS_ALL, scvFilter1, scvFilter2);
<a class="jxr_linenumber" name="405" href="#405">405</a> expectedRowNum = 0;
<a class="jxr_linenumber" name="406" href="#406">406</a> scan.setFilter(filter);
<a class="jxr_linenumber" name="407" href="#407">407</a> scanner = region.getScanner(scan);
<a class="jxr_linenumber" name="408" href="#408">408</a> verifyCountAndOrder(scanner, expectedRowNum * 2 * 2, expectedRowNum, false);
<a class="jxr_linenumber" name="409" href="#409">409</a> }
<a class="jxr_linenumber" name="410" href="#410">410</a>
<a class="jxr_linenumber" name="411" href="#411">411</a> <strong class="jxr_keyword">private</strong> StoreScanner getReversibleStoreScanner(MemStore memstore,
<a class="jxr_linenumber" name="412" href="#412">412</a> StoreFile sf1, StoreFile sf2, Scan scan, ScanType scanType,
<a class="jxr_linenumber" name="413" href="#413">413</a> ScanInfo scanInfo, <strong class="jxr_keyword">int</strong> readPoint) <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="414" href="#414">414</a> List<KeyValueScanner> scanners = getScanners(memstore, sf1, sf2, <strong class="jxr_keyword">null</strong>,
<a class="jxr_linenumber" name="415" href="#415">415</a> false, readPoint);
<a class="jxr_linenumber" name="416" href="#416">416</a> NavigableSet<byte[]> columns = <strong class="jxr_keyword">null</strong>;
<a class="jxr_linenumber" name="417" href="#417">417</a> <strong class="jxr_keyword">for</strong> (Map.Entry<byte[], NavigableSet<byte[]>> entry : scan.getFamilyMap()
<a class="jxr_linenumber" name="418" href="#418">418</a> .entrySet()) {
<a class="jxr_linenumber" name="419" href="#419">419</a> <em class="jxr_comment">// Should only one family</em>
<a class="jxr_linenumber" name="420" href="#420">420</a> columns = entry.getValue();
<a class="jxr_linenumber" name="421" href="#421">421</a> }
<a class="jxr_linenumber" name="422" href="#422">422</a> StoreScanner storeScanner = <strong class="jxr_keyword">new</strong> ReversedStoreScanner(scan, scanInfo,
<a class="jxr_linenumber" name="423" href="#423">423</a> scanType, columns, scanners);
<a class="jxr_linenumber" name="424" href="#424">424</a> <strong class="jxr_keyword">return</strong> storeScanner;
<a class="jxr_linenumber" name="425" href="#425">425</a> }
<a class="jxr_linenumber" name="426" href="#426">426</a>
<a class="jxr_linenumber" name="427" href="#427">427</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> verifyCountAndOrder(InternalScanner scanner,
<a class="jxr_linenumber" name="428" href="#428">428</a> <strong class="jxr_keyword">int</strong> expectedKVCount, <strong class="jxr_keyword">int</strong> expectedRowCount, <strong class="jxr_keyword">boolean</strong> forward)
<a class="jxr_linenumber" name="429" href="#429">429</a> <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="430" href="#430">430</a> List<Cell> kvList = <strong class="jxr_keyword">new</strong> ArrayList<Cell>();
<a class="jxr_linenumber" name="431" href="#431">431</a> Result lastResult = <strong class="jxr_keyword">null</strong>;
<a class="jxr_linenumber" name="432" href="#432">432</a> <strong class="jxr_keyword">int</strong> rowCount = 0;
<a class="jxr_linenumber" name="433" href="#433">433</a> <strong class="jxr_keyword">int</strong> kvCount = 0;
<a class="jxr_linenumber" name="434" href="#434">434</a> <strong class="jxr_keyword">try</strong> {
<a class="jxr_linenumber" name="435" href="#435">435</a> <strong class="jxr_keyword">while</strong> (scanner.next(kvList)) {
<a class="jxr_linenumber" name="436" href="#436">436</a> <strong class="jxr_keyword">if</strong> (kvList.isEmpty()) <strong class="jxr_keyword">continue</strong>;
<a class="jxr_linenumber" name="437" href="#437">437</a> rowCount++;
<a class="jxr_linenumber" name="438" href="#438">438</a> kvCount += kvList.size();
<a class="jxr_linenumber" name="439" href="#439">439</a> <strong class="jxr_keyword">if</strong> (lastResult != <strong class="jxr_keyword">null</strong>) {
<a class="jxr_linenumber" name="440" href="#440">440</a> Result curResult = Result.create(kvList);
<a class="jxr_linenumber" name="441" href="#441">441</a> assertEquals(<span class="jxr_string">"LastResult:"</span> + lastResult + <span class="jxr_string">"CurResult:"</span> + curResult,
<a class="jxr_linenumber" name="442" href="#442">442</a> forward,
<a class="jxr_linenumber" name="443" href="#443">443</a> Bytes.compareTo(curResult.getRow(), lastResult.getRow()) > 0);
<a class="jxr_linenumber" name="444" href="#444">444</a> }
<a class="jxr_linenumber" name="445" href="#445">445</a> lastResult = Result.create(kvList);
<a class="jxr_linenumber" name="446" href="#446">446</a> kvList.clear();
<a class="jxr_linenumber" name="447" href="#447">447</a> }
<a class="jxr_linenumber" name="448" href="#448">448</a> } <strong class="jxr_keyword">finally</strong> {
<a class="jxr_linenumber" name="449" href="#449">449</a> scanner.close();
<a class="jxr_linenumber" name="450" href="#450">450</a> }
<a class="jxr_linenumber" name="451" href="#451">451</a> <strong class="jxr_keyword">if</strong> (!kvList.isEmpty()) {
<a class="jxr_linenumber" name="452" href="#452">452</a> rowCount++;
<a class="jxr_linenumber" name="453" href="#453">453</a> kvCount += kvList.size();
<a class="jxr_linenumber" name="454" href="#454">454</a> kvList.clear();
<a class="jxr_linenumber" name="455" href="#455">455</a> }
<a class="jxr_linenumber" name="456" href="#456">456</a> assertEquals(expectedKVCount, kvCount);
<a class="jxr_linenumber" name="457" href="#457">457</a> assertEquals(expectedRowCount, rowCount);
<a class="jxr_linenumber" name="458" href="#458">458</a> }
<a class="jxr_linenumber" name="459" href="#459">459</a>
<a class="jxr_linenumber" name="460" href="#460">460</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> internalTestSeekAndNextForReversibleKeyValueHeap(
<a class="jxr_linenumber" name="461" href="#461">461</a> ReversedKeyValueHeap kvHeap, <strong class="jxr_keyword">int</strong> startRowNum) <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="462" href="#462">462</a> <em class="jxr_comment">// Test next and seek</em>
<a class="jxr_linenumber" name="463" href="#463">463</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = startRowNum; i >= 0; i--) {
<a class="jxr_linenumber" name="464" href="#464">464</a> <strong class="jxr_keyword">if</strong> (i % 2 == 1 && i - 2 >= 0) {
<a class="jxr_linenumber" name="465" href="#465">465</a> i = i - 2;
<a class="jxr_linenumber" name="466" href="#466">466</a> kvHeap.seekToPreviousRow(KeyValue.createFirstOnRow(ROWS[i + 1]));
<a class="jxr_linenumber" name="467" href="#467">467</a> }
<a class="jxr_linenumber" name="468" href="#468">468</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> j = 0; j < QUALSIZE; j++) {
<a class="jxr_linenumber" name="469" href="#469">469</a> <strong class="jxr_keyword">if</strong> (j % 2 == 1 && (j + 1) < QUALSIZE) {
<a class="jxr_linenumber" name="470" href="#470">470</a> j = j + 1;
<a class="jxr_linenumber" name="471" href="#471">471</a> kvHeap.backwardSeek(makeKV(i, j));
<a class="jxr_linenumber" name="472" href="#472">472</a> }
<a class="jxr_linenumber" name="473" href="#473">473</a> assertEquals(makeKV(i, j), kvHeap.peek());
<a class="jxr_linenumber" name="474" href="#474">474</a> kvHeap.next();
<a class="jxr_linenumber" name="475" href="#475">475</a> }
<a class="jxr_linenumber" name="476" href="#476">476</a> }
<a class="jxr_linenumber" name="477" href="#477">477</a> assertEquals(<strong class="jxr_keyword">null</strong>, kvHeap.peek());
<a class="jxr_linenumber" name="478" href="#478">478</a> }
<a class="jxr_linenumber" name="479" href="#479">479</a>
<a class="jxr_linenumber" name="480" href="#480">480</a> <strong class="jxr_keyword">private</strong> ReversedKeyValueHeap getReversibleKeyValueHeap(MemStore memstore,
<a class="jxr_linenumber" name="481" href="#481">481</a> StoreFile sf1, StoreFile sf2, byte[] startRow, <strong class="jxr_keyword">int</strong> readPoint)
<a class="jxr_linenumber" name="482" href="#482">482</a> <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="483" href="#483">483</a> List<KeyValueScanner> scanners = getScanners(memstore, sf1, sf2, startRow,
<a class="jxr_linenumber" name="484" href="#484">484</a> <strong class="jxr_keyword">true</strong>, readPoint);
<a class="jxr_linenumber" name="485" href="#485">485</a> ReversedKeyValueHeap kvHeap = <strong class="jxr_keyword">new</strong> ReversedKeyValueHeap(scanners,
<a class="jxr_linenumber" name="486" href="#486">486</a> KeyValue.COMPARATOR);
<a class="jxr_linenumber" name="487" href="#487">487</a> <strong class="jxr_keyword">return</strong> kvHeap;
<a class="jxr_linenumber" name="488" href="#488">488</a> }
<a class="jxr_linenumber" name="489" href="#489">489</a>
<a class="jxr_linenumber" name="490" href="#490">490</a> <strong class="jxr_keyword">private</strong> List<KeyValueScanner> getScanners(MemStore memstore, StoreFile sf1,
<a class="jxr_linenumber" name="491" href="#491">491</a> StoreFile sf2, byte[] startRow, <strong class="jxr_keyword">boolean</strong> doSeek, <strong class="jxr_keyword">int</strong> readPoint)
<a class="jxr_linenumber" name="492" href="#492">492</a> <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="493" href="#493">493</a> List<StoreFileScanner> fileScanners = StoreFileScanner
<a class="jxr_linenumber" name="494" href="#494">494</a> .getScannersForStoreFiles(Lists.newArrayList(sf1, sf2), false, <strong class="jxr_keyword">true</strong>,
<a class="jxr_linenumber" name="495" href="#495">495</a> false, readPoint);
<a class="jxr_linenumber" name="496" href="#496">496</a> List<KeyValueScanner> memScanners = memstore.getScanners(readPoint);
<a class="jxr_linenumber" name="497" href="#497">497</a> List<KeyValueScanner> scanners = <strong class="jxr_keyword">new</strong> ArrayList<KeyValueScanner>(
<a class="jxr_linenumber" name="498" href="#498">498</a> fileScanners.size() + 1);
<a class="jxr_linenumber" name="499" href="#499">499</a> scanners.addAll(fileScanners);
<a class="jxr_linenumber" name="500" href="#500">500</a> scanners.addAll(memScanners);
<a class="jxr_linenumber" name="501" href="#501">501</a>
<a class="jxr_linenumber" name="502" href="#502">502</a> <strong class="jxr_keyword">if</strong> (doSeek) {
<a class="jxr_linenumber" name="503" href="#503">503</a> <strong class="jxr_keyword">if</strong> (Bytes.equals(HConstants.EMPTY_START_ROW, startRow)) {
<a class="jxr_linenumber" name="504" href="#504">504</a> <strong class="jxr_keyword">for</strong> (KeyValueScanner scanner : scanners) {
<a class="jxr_linenumber" name="505" href="#505">505</a> scanner.seekToLastRow();
<a class="jxr_linenumber" name="506" href="#506">506</a> }
<a class="jxr_linenumber" name="507" href="#507">507</a> } <strong class="jxr_keyword">else</strong> {
<a class="jxr_linenumber" name="508" href="#508">508</a> KeyValue startKey = KeyValue.createFirstOnRow(startRow);
<a class="jxr_linenumber" name="509" href="#509">509</a> <strong class="jxr_keyword">for</strong> (KeyValueScanner scanner : scanners) {
<a class="jxr_linenumber" name="510" href="#510">510</a> scanner.backwardSeek(startKey);
<a class="jxr_linenumber" name="511" href="#511">511</a> }
<a class="jxr_linenumber" name="512" href="#512">512</a> }
<a class="jxr_linenumber" name="513" href="#513">513</a> }
<a class="jxr_linenumber" name="514" href="#514">514</a> <strong class="jxr_keyword">return</strong> scanners;
<a class="jxr_linenumber" name="515" href="#515">515</a> }
<a class="jxr_linenumber" name="516" href="#516">516</a>
<a class="jxr_linenumber" name="517" href="#517">517</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> seekTestOfReversibleKeyValueScanner(KeyValueScanner scanner)
<a class="jxr_linenumber" name="518" href="#518">518</a> <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="519" href="#519">519</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="520" href="#520">520</a> <em class="jxr_javadoccomment"> * Test without MVCC</em>
<a class="jxr_linenumber" name="521" href="#521">521</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="522" href="#522">522</a> <em class="jxr_comment">// Test seek to last row</em>
<a class="jxr_linenumber" name="523" href="#523">523</a> assertTrue(scanner.seekToLastRow());
<a class="jxr_linenumber" name="524" href="#524">524</a> assertEquals(makeKV(ROWSIZE - 1, 0), scanner.peek());
<a class="jxr_linenumber" name="525" href="#525">525</a>
<a class="jxr_linenumber" name="526" href="#526">526</a> <em class="jxr_comment">// Test backward seek in three cases</em>
<a class="jxr_linenumber" name="527" href="#527">527</a> <em class="jxr_comment">// Case1: seek in the same row in backwardSeek</em>
<a class="jxr_linenumber" name="528" href="#528">528</a> KeyValue seekKey = makeKV(ROWSIZE - 2, QUALSIZE - 2);
<a class="jxr_linenumber" name="529" href="#529">529</a> assertTrue(scanner.backwardSeek(seekKey));
<a class="jxr_linenumber" name="530" href="#530">530</a> assertEquals(seekKey, scanner.peek());
<a class="jxr_linenumber" name="531" href="#531">531</a>
<a class="jxr_linenumber" name="532" href="#532">532</a> <em class="jxr_comment">// Case2: seek to the previous row in backwardSeek</em>
<a class="jxr_linenumber" name="533" href="#533">533</a> <strong class="jxr_keyword">int</strong> seekRowNum = ROWSIZE - 2;
<a class="jxr_linenumber" name="534" href="#534">534</a> assertTrue(scanner.backwardSeek(KeyValue.createLastOnRow(ROWS[seekRowNum])));
<a class="jxr_linenumber" name="535" href="#535">535</a> KeyValue expectedKey = makeKV(seekRowNum - 1, 0);
<a class="jxr_linenumber" name="536" href="#536">536</a> assertEquals(expectedKey, scanner.peek());
<a class="jxr_linenumber" name="537" href="#537">537</a>
<a class="jxr_linenumber" name="538" href="#538">538</a> <em class="jxr_comment">// Case3: unable to backward seek</em>
<a class="jxr_linenumber" name="539" href="#539">539</a> assertFalse(scanner.backwardSeek(KeyValue.createLastOnRow(ROWS[0])));
<a class="jxr_linenumber" name="540" href="#540">540</a> assertEquals(<strong class="jxr_keyword">null</strong>, scanner.peek());
<a class="jxr_linenumber" name="541" href="#541">541</a>
<a class="jxr_linenumber" name="542" href="#542">542</a> <em class="jxr_comment">// Test seek to previous row</em>
<a class="jxr_linenumber" name="543" href="#543">543</a> seekRowNum = ROWSIZE - 4;
<a class="jxr_linenumber" name="544" href="#544">544</a> assertTrue(scanner.seekToPreviousRow(KeyValue
<a class="jxr_linenumber" name="545" href="#545">545</a> .createFirstOnRow(ROWS[seekRowNum])));
<a class="jxr_linenumber" name="546" href="#546">546</a> expectedKey = makeKV(seekRowNum - 1, 0);
<a class="jxr_linenumber" name="547" href="#547">547</a> assertEquals(expectedKey, scanner.peek());
<a class="jxr_linenumber" name="548" href="#548">548</a>
<a class="jxr_linenumber" name="549" href="#549">549</a> <em class="jxr_comment">// Test seek to previous row for the first row</em>
<a class="jxr_linenumber" name="550" href="#550">550</a> assertFalse(scanner.seekToPreviousRow(makeKV(0, 0)));
<a class="jxr_linenumber" name="551" href="#551">551</a> assertEquals(<strong class="jxr_keyword">null</strong>, scanner.peek());
<a class="jxr_linenumber" name="552" href="#552">552</a>
<a class="jxr_linenumber" name="553" href="#553">553</a> }
<a class="jxr_linenumber" name="554" href="#554">554</a>
<a class="jxr_linenumber" name="555" href="#555">555</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> seekTestOfReversibleKeyValueScannerWithMVCC(
<a class="jxr_linenumber" name="556" href="#556">556</a> KeyValueScanner scanner, <strong class="jxr_keyword">int</strong> readPoint) <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="557" href="#557">557</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="558" href="#558">558</a> <em class="jxr_javadoccomment"> * Test with MVCC</em>
<a class="jxr_linenumber" name="559" href="#559">559</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="560" href="#560">560</a> <em class="jxr_comment">// Test seek to last row</em>
<a class="jxr_linenumber" name="561" href="#561">561</a> KeyValue expectedKey = getNextReadableKeyValueWithBackwardScan(
<a class="jxr_linenumber" name="562" href="#562">562</a> ROWSIZE - 1, 0, readPoint);
<a class="jxr_linenumber" name="563" href="#563">563</a> assertEquals(expectedKey != <strong class="jxr_keyword">null</strong>, scanner.seekToLastRow());
<a class="jxr_linenumber" name="564" href="#564">564</a> assertEquals(expectedKey, scanner.peek());
<a class="jxr_linenumber" name="565" href="#565">565</a>
<a class="jxr_linenumber" name="566" href="#566">566</a> <em class="jxr_comment">// Test backward seek in two cases</em>
<a class="jxr_linenumber" name="567" href="#567">567</a> <em class="jxr_comment">// Case1: seek in the same row in backwardSeek</em>
<a class="jxr_linenumber" name="568" href="#568">568</a> expectedKey = getNextReadableKeyValueWithBackwardScan(ROWSIZE - 2,
<a class="jxr_linenumber" name="569" href="#569">569</a> QUALSIZE - 2, readPoint);
<a class="jxr_linenumber" name="570" href="#570">570</a> assertEquals(expectedKey != <strong class="jxr_keyword">null</strong>, scanner.backwardSeek(expectedKey));
<a class="jxr_linenumber" name="571" href="#571">571</a> assertEquals(expectedKey, scanner.peek());
<a class="jxr_linenumber" name="572" href="#572">572</a>
<a class="jxr_linenumber" name="573" href="#573">573</a> <em class="jxr_comment">// Case2: seek to the previous row in backwardSeek</em>
<a class="jxr_linenumber" name="574" href="#574">574</a> <strong class="jxr_keyword">int</strong> seekRowNum = ROWSIZE - 3;
<a class="jxr_linenumber" name="575" href="#575">575</a> KeyValue seekKey = KeyValue.createLastOnRow(ROWS[seekRowNum]);
<a class="jxr_linenumber" name="576" href="#576">576</a> expectedKey = getNextReadableKeyValueWithBackwardScan(seekRowNum - 1, 0,
<a class="jxr_linenumber" name="577" href="#577">577</a> readPoint);
<a class="jxr_linenumber" name="578" href="#578">578</a> assertEquals(expectedKey != <strong class="jxr_keyword">null</strong>, scanner.backwardSeek(seekKey));
<a class="jxr_linenumber" name="579" href="#579">579</a> assertEquals(expectedKey, scanner.peek());
<a class="jxr_linenumber" name="580" href="#580">580</a>
<a class="jxr_linenumber" name="581" href="#581">581</a> <em class="jxr_comment">// Test seek to previous row</em>
<a class="jxr_linenumber" name="582" href="#582">582</a> seekRowNum = ROWSIZE - 4;
<a class="jxr_linenumber" name="583" href="#583">583</a> expectedKey = getNextReadableKeyValueWithBackwardScan(seekRowNum - 1, 0,
<a class="jxr_linenumber" name="584" href="#584">584</a> readPoint);
<a class="jxr_linenumber" name="585" href="#585">585</a> assertEquals(expectedKey != <strong class="jxr_keyword">null</strong>, scanner.seekToPreviousRow(KeyValue
<a class="jxr_linenumber" name="586" href="#586">586</a> .createFirstOnRow(ROWS[seekRowNum])));
<a class="jxr_linenumber" name="587" href="#587">587</a> assertEquals(expectedKey, scanner.peek());
<a class="jxr_linenumber" name="588" href="#588">588</a> }
<a class="jxr_linenumber" name="589" href="#589">589</a>
<a class="jxr_linenumber" name="590" href="#590">590</a> <strong class="jxr_keyword">private</strong> KeyValue getNextReadableKeyValueWithBackwardScan(<strong class="jxr_keyword">int</strong> startRowNum,
<a class="jxr_linenumber" name="591" href="#591">591</a> <strong class="jxr_keyword">int</strong> startQualNum, <strong class="jxr_keyword">int</strong> readPoint) {
<a class="jxr_linenumber" name="592" href="#592">592</a> Pair<Integer, Integer> nextReadableNum = getNextReadableNumWithBackwardScan(
<a class="jxr_linenumber" name="593" href="#593">593</a> startRowNum, startQualNum, readPoint);
<a class="jxr_linenumber" name="594" href="#594">594</a> <strong class="jxr_keyword">if</strong> (nextReadableNum == <strong class="jxr_keyword">null</strong>)
<a class="jxr_linenumber" name="595" href="#595">595</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
<a class="jxr_linenumber" name="596" href="#596">596</a> <strong class="jxr_keyword">return</strong> makeKV(nextReadableNum.getFirst(), nextReadableNum.getSecond());
<a class="jxr_linenumber" name="597" href="#597">597</a> }
<a class="jxr_linenumber" name="598" href="#598">598</a>
<a class="jxr_linenumber" name="599" href="#599">599</a> <strong class="jxr_keyword">private</strong> Pair<Integer, Integer> getNextReadableNumWithBackwardScan(
<a class="jxr_linenumber" name="600" href="#600">600</a> <strong class="jxr_keyword">int</strong> startRowNum, <strong class="jxr_keyword">int</strong> startQualNum, <strong class="jxr_keyword">int</strong> readPoint) {
<a class="jxr_linenumber" name="601" href="#601">601</a> Pair<Integer, Integer> nextReadableNum = <strong class="jxr_keyword">null</strong>;
<a class="jxr_linenumber" name="602" href="#602">602</a> <strong class="jxr_keyword">boolean</strong> findExpected = false;
<a class="jxr_linenumber" name="603" href="#603">603</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = startRowNum; i >= 0; i--) {
<a class="jxr_linenumber" name="604" href="#604">604</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> j = (i == startRowNum ? startQualNum : 0); j < QUALSIZE; j++) {
<a class="jxr_linenumber" name="605" href="#605">605</a> <strong class="jxr_keyword">if</strong> (makeMVCC(i, j) <= readPoint) {
<a class="jxr_linenumber" name="606" href="#606">606</a> nextReadableNum = <strong class="jxr_keyword">new</strong> Pair<Integer, Integer>(i, j);
<a class="jxr_linenumber" name="607" href="#607">607</a> findExpected = <strong class="jxr_keyword">true</strong>;
<a class="jxr_linenumber" name="608" href="#608">608</a> <strong class="jxr_keyword">break</strong>;
<a class="jxr_linenumber" name="609" href="#609">609</a> }
<a class="jxr_linenumber" name="610" href="#610">610</a> }
<a class="jxr_linenumber" name="611" href="#611">611</a> <strong class="jxr_keyword">if</strong> (findExpected)
<a class="jxr_linenumber" name="612" href="#612">612</a> <strong class="jxr_keyword">break</strong>;
<a class="jxr_linenumber" name="613" href="#613">613</a> }
<a class="jxr_linenumber" name="614" href="#614">614</a> <strong class="jxr_keyword">return</strong> nextReadableNum;
<a class="jxr_linenumber" name="615" href="#615">615</a> }
<a class="jxr_linenumber" name="616" href="#616">616</a>
<a class="jxr_linenumber" name="617" href="#617">617</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">void</strong> loadDataToRegion(HRegion region, byte[] additionalFamily)
<a class="jxr_linenumber" name="618" href="#618">618</a> <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="619" href="#619">619</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i < ROWSIZE; i++) {
<a class="jxr_linenumber" name="620" href="#620">620</a> Put put = <strong class="jxr_keyword">new</strong> Put(ROWS[i]);
<a class="jxr_linenumber" name="621" href="#621">621</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> j = 0; j < QUALSIZE; j++) {
<a class="jxr_linenumber" name="622" href="#622">622</a> put.add(makeKV(i, j));
<a class="jxr_linenumber" name="623" href="#623">623</a> <em class="jxr_comment">// put additional family</em>
<a class="jxr_linenumber" name="624" href="#624">624</a> put.add(makeKV(i, j, additionalFamily));
<a class="jxr_linenumber" name="625" href="#625">625</a> }
<a class="jxr_linenumber" name="626" href="#626">626</a> region.put(put);
<a class="jxr_linenumber" name="627" href="#627">627</a> <strong class="jxr_keyword">if</strong> (i == ROWSIZE / 3 || i == ROWSIZE * 2 / 3) {
<a class="jxr_linenumber" name="628" href="#628">628</a> region.flushcache();
<a class="jxr_linenumber" name="629" href="#629">629</a> }
<a class="jxr_linenumber" name="630" href="#630">630</a> }
<a class="jxr_linenumber" name="631" href="#631">631</a> }
<a class="jxr_linenumber" name="632" href="#632">632</a>
<a class="jxr_linenumber" name="633" href="#633">633</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">void</strong> writeMemstoreAndStoreFiles(MemStore memstore,
<a class="jxr_linenumber" name="634" href="#634">634</a> <strong class="jxr_keyword">final</strong> StoreFile.Writer[] writers) <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="635" href="#635">635</a> Random rand = <strong class="jxr_keyword">new</strong> Random();
<a class="jxr_linenumber" name="636" href="#636">636</a> <strong class="jxr_keyword">try</strong> {
<a class="jxr_linenumber" name="637" href="#637">637</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i < ROWSIZE; i++) {
<a class="jxr_linenumber" name="638" href="#638">638</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> j = 0; j < QUALSIZE; j++) {
<a class="jxr_linenumber" name="639" href="#639">639</a> <strong class="jxr_keyword">if</strong> (i % 2 == 0) {
<a class="jxr_linenumber" name="640" href="#640">640</a> memstore.add(makeKV(i, j));
<a class="jxr_linenumber" name="641" href="#641">641</a> } <strong class="jxr_keyword">else</strong> {
<a class="jxr_linenumber" name="642" href="#642">642</a> writers[(i + j) % writers.length].append(makeKV(i, j));
<a class="jxr_linenumber" name="643" href="#643">643</a> }
<a class="jxr_linenumber" name="644" href="#644">644</a> }
<a class="jxr_linenumber" name="645" href="#645">645</a> }
<a class="jxr_linenumber" name="646" href="#646">646</a> } <strong class="jxr_keyword">finally</strong> {
<a class="jxr_linenumber" name="647" href="#647">647</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i < writers.length; i++) {
<a class="jxr_linenumber" name="648" href="#648">648</a> writers[i].close();
<a class="jxr_linenumber" name="649" href="#649">649</a> }
<a class="jxr_linenumber" name="650" href="#650">650</a> }
<a class="jxr_linenumber" name="651" href="#651">651</a> }
<a class="jxr_linenumber" name="652" href="#652">652</a>
<a class="jxr_linenumber" name="653" href="#653">653</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">void</strong> writeStoreFile(<strong class="jxr_keyword">final</strong> StoreFile.Writer writer)
<a class="jxr_linenumber" name="654" href="#654">654</a> <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="655" href="#655">655</a> <strong class="jxr_keyword">try</strong> {
<a class="jxr_linenumber" name="656" href="#656">656</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i < ROWSIZE; i++) {
<a class="jxr_linenumber" name="657" href="#657">657</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> j = 0; j < QUALSIZE; j++) {
<a class="jxr_linenumber" name="658" href="#658">658</a> writer.append(makeKV(i, j));
<a class="jxr_linenumber" name="659" href="#659">659</a> }
<a class="jxr_linenumber" name="660" href="#660">660</a> }
<a class="jxr_linenumber" name="661" href="#661">661</a> } <strong class="jxr_keyword">finally</strong> {
<a class="jxr_linenumber" name="662" href="#662">662</a> writer.close();
<a class="jxr_linenumber" name="663" href="#663">663</a> }
<a class="jxr_linenumber" name="664" href="#664">664</a> }
<a class="jxr_linenumber" name="665" href="#665">665</a>
<a class="jxr_linenumber" name="666" href="#666">666</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">void</strong> writeMemstore(MemStore memstore) <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="667" href="#667">667</a> <em class="jxr_comment">// Add half of the keyvalues to memstore</em>
<a class="jxr_linenumber" name="668" href="#668">668</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i < ROWSIZE; i++) {
<a class="jxr_linenumber" name="669" href="#669">669</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> j = 0; j < QUALSIZE; j++) {
<a class="jxr_linenumber" name="670" href="#670">670</a> <strong class="jxr_keyword">if</strong> ((i + j) % 2 == 0) {
<a class="jxr_linenumber" name="671" href="#671">671</a> memstore.add(makeKV(i, j));
<a class="jxr_linenumber" name="672" href="#672">672</a> }
<a class="jxr_linenumber" name="673" href="#673">673</a> }
<a class="jxr_linenumber" name="674" href="#674">674</a> }
<a class="jxr_linenumber" name="675" href="#675">675</a> memstore.snapshot();
<a class="jxr_linenumber" name="676" href="#676">676</a> <em class="jxr_comment">// Add another half of the keyvalues to snapshot</em>
<a class="jxr_linenumber" name="677" href="#677">677</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i < ROWSIZE; i++) {
<a class="jxr_linenumber" name="678" href="#678">678</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> j = 0; j < QUALSIZE; j++) {
<a class="jxr_linenumber" name="679" href="#679">679</a> <strong class="jxr_keyword">if</strong> ((i + j) % 2 == 1) {
<a class="jxr_linenumber" name="680" href="#680">680</a> memstore.add(makeKV(i, j));
<a class="jxr_linenumber" name="681" href="#681">681</a> }
<a class="jxr_linenumber" name="682" href="#682">682</a> }
<a class="jxr_linenumber" name="683" href="#683">683</a> }
<a class="jxr_linenumber" name="684" href="#684">684</a> }
<a class="jxr_linenumber" name="685" href="#685">685</a>
<a class="jxr_linenumber" name="686" href="#686">686</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> KeyValue makeKV(<strong class="jxr_keyword">int</strong> rowNum, <strong class="jxr_keyword">int</strong> cqNum) {
<a class="jxr_linenumber" name="687" href="#687">687</a> <strong class="jxr_keyword">return</strong> makeKV(rowNum, cqNum, FAMILYNAME);
<a class="jxr_linenumber" name="688" href="#688">688</a> }
<a class="jxr_linenumber" name="689" href="#689">689</a>
<a class="jxr_linenumber" name="690" href="#690">690</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> KeyValue makeKV(<strong class="jxr_keyword">int</strong> rowNum, <strong class="jxr_keyword">int</strong> cqNum, byte[] familyName) {
<a class="jxr_linenumber" name="691" href="#691">691</a> KeyValue kv = <strong class="jxr_keyword">new</strong> KeyValue(ROWS[rowNum], familyName, QUALS[cqNum], TS,
<a class="jxr_linenumber" name="692" href="#692">692</a> VALUES[rowNum % VALUESIZE]);
<a class="jxr_linenumber" name="693" href="#693">693</a> kv.setMvccVersion(makeMVCC(rowNum, cqNum));
<a class="jxr_linenumber" name="694" href="#694">694</a> <strong class="jxr_keyword">return</strong> kv;
<a class="jxr_linenumber" name="695" href="#695">695</a> }
<a class="jxr_linenumber" name="696" href="#696">696</a>
<a class="jxr_linenumber" name="697" href="#697">697</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">long</strong> makeMVCC(<strong class="jxr_keyword">int</strong> rowNum, <strong class="jxr_keyword">int</strong> cqNum) {
<a class="jxr_linenumber" name="698" href="#698">698</a> <strong class="jxr_keyword">return</strong> (rowNum + cqNum) % (MAXMVCC + 1);
<a class="jxr_linenumber" name="699" href="#699">699</a> }
<a class="jxr_linenumber" name="700" href="#700">700</a>
<a class="jxr_linenumber" name="701" href="#701">701</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> byte[][] makeN(byte[] base, <strong class="jxr_keyword">int</strong> n) {
<a class="jxr_linenumber" name="702" href="#702">702</a> byte[][] ret = <strong class="jxr_keyword">new</strong> byte[n][];
<a class="jxr_linenumber" name="703" href="#703">703</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i < n; i++) {
<a class="jxr_linenumber" name="704" href="#704">704</a> ret[i] = Bytes.add(base, Bytes.toBytes(String.format(<span class="jxr_string">"%04d"</span>, i)));
<a class="jxr_linenumber" name="705" href="#705">705</a> }
<a class="jxr_linenumber" name="706" href="#706">706</a> <strong class="jxr_keyword">return</strong> ret;
<a class="jxr_linenumber" name="707" href="#707">707</a> }
<a class="jxr_linenumber" name="708" href="#708">708</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>
|
dashboard/css/fabochart.css | ArmstrongYang/hiShare | /*Stats*/
.bar-chart-grids { margin:150px auto; max-width:640px;}
.fabo-chart {
border-right: 1px;
margin: 2em 0 0 0;
}
.fabo-chart::after {
content: " ";
display: table;
clear: both; }
.fabo-chart .fabo-point {
height: 400px;
display: inline-block;
float: left;
box-sizing: border-box;
padding-left: 0px;
ovefabolow: hidden; }
.fabo-chart .fabo-point .fabo-point-inner {
height: 100%;
position: relative;
ovefabolow: hidden;
background: #f4f6f7; }
.fabo-chart .fabo-point
.fabo-value-text {
width: 100%;
text-align: center;
z-index: 100;
color: #ffffff;
font-size: 18px;
font-weight: 600;
position: absolute;
left: 0;
right: 0;
bottom: 18px; }
.fabo-chart .fabo-point
.fabo-value-label {
width: 100%;
text-align: center;
z-index: 100;
color: #95a5b3;
font-size: 12px;
font-weight: 700;
position: absolute;
left: 0;
right: 0;
top: 18px; }
.fabo-chart .fabo-point .fabo-value {
box-sizing: content-box;
width: 0;
height: 100px;
border-top: 0 solid transparent;
border-right: 0 solid #7b82ff;
border-bottom: 0 solid transparent;
border-left: 0px solid #7b82ff;
transition: height 200ms;
position: absolute;
bottom: 0;
-webkit-animation: chart-height 200ms;
animation: chart-height 200ms; }
.fabo-chart .fabo-point .fabo-value.hide {
display: none;
height: 0 !important; }
.fabo-chart .fabo-point .fabo-value.hide-border {
border-top-width: 0 !important; }
@-webkit-keyframes chart-height {
0% {
height: 0; } }
@keyframes chart-height {
0% {
height: 0; } }
/*# sourceMappingURL=chart.css.map */ |
Proyecto/librerias/jdatechooser_bin_doc_1_1_1/javadoc/datechooser/beans/editor/border/types/package-frame.html | AndresJMM/Proyecto | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.5.0_09) on Wed Aug 01 14:02:17 EEST 2007 -->
<TITLE>
datechooser.beans.editor.border.types (DateChooser javadoc)
</TITLE>
<META NAME="keywords" CONTENT="datechooser.beans.editor.border.types package">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">
<FONT size="+1" CLASS="FrameTitleFont">
<A HREF="../../../../../datechooser/beans/editor/border/types/package-summary.html" target="classFrame">datechooser.beans.editor.border.types</A></FONT>
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
<TR>
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
Classes</FONT>
<FONT CLASS="FrameItemFont">
<BR>
<A HREF="AbstractBevelBorderEditor.html" title="class in datechooser.beans.editor.border.types" target="classFrame">AbstractBevelBorderEditor</A>
<BR>
<A HREF="AbstractBorderEditor.html" title="class in datechooser.beans.editor.border.types" target="classFrame">AbstractBorderEditor</A>
<BR>
<A HREF="BevelBorderEditor.html" title="class in datechooser.beans.editor.border.types" target="classFrame">BevelBorderEditor</A>
<BR>
<A HREF="CompoundBorderEditor.html" title="class in datechooser.beans.editor.border.types" target="classFrame">CompoundBorderEditor</A>
<BR>
<A HREF="DefaultBorderEditor.html" title="class in datechooser.beans.editor.border.types" target="classFrame">DefaultBorderEditor</A>
<BR>
<A HREF="EmptyBorderEditor.html" title="class in datechooser.beans.editor.border.types" target="classFrame">EmptyBorderEditor</A>
<BR>
<A HREF="EtchedBorderEditor.html" title="class in datechooser.beans.editor.border.types" target="classFrame">EtchedBorderEditor</A>
<BR>
<A HREF="LineBorderEditor.html" title="class in datechooser.beans.editor.border.types" target="classFrame">LineBorderEditor</A>
<BR>
<A HREF="MatteBorderEditor.html" title="class in datechooser.beans.editor.border.types" target="classFrame">MatteBorderEditor</A>
<BR>
<A HREF="NoBorderEditor.html" title="class in datechooser.beans.editor.border.types" target="classFrame">NoBorderEditor</A>
<BR>
<A HREF="SoftBevelBorderEditor.html" title="class in datechooser.beans.editor.border.types" target="classFrame">SoftBevelBorderEditor</A>
<BR>
<A HREF="TitledBorderEditor.html" title="class in datechooser.beans.editor.border.types" target="classFrame">TitledBorderEditor</A></FONT></TD>
</TR>
</TABLE>
</BODY>
</HTML>
|
share/doc/hadoop/api/org/apache/hadoop/yarn/applications/distributedshell/class-use/ApplicationMaster.html | SAT-Hadoop/hadoop-2.6.0 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_45) on Thu Nov 13 21:22:01 UTC 2014 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Class org.apache.hadoop.yarn.applications.distributedshell.ApplicationMaster (Apache Hadoop Main 2.6.0 API)
</TITLE>
<META NAME="date" CONTENT="2014-11-13">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.hadoop.yarn.applications.distributedshell.ApplicationMaster (Apache Hadoop Main 2.6.0 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/hadoop/yarn/applications/distributedshell/ApplicationMaster.html" title="class in org.apache.hadoop.yarn.applications.distributedshell"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/hadoop/yarn/applications/distributedshell//class-useApplicationMaster.html" target="_top"><B>FRAMES</B></A>
<A HREF="ApplicationMaster.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.hadoop.yarn.applications.distributedshell.ApplicationMaster</B></H2>
</CENTER>
No usage of org.apache.hadoop.yarn.applications.distributedshell.ApplicationMaster
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/hadoop/yarn/applications/distributedshell/ApplicationMaster.html" title="class in org.apache.hadoop.yarn.applications.distributedshell"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/hadoop/yarn/applications/distributedshell//class-useApplicationMaster.html" target="_top"><B>FRAMES</B></A>
<A HREF="ApplicationMaster.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2014 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved.
</BODY>
</HTML>
|
cesium_cartesian3/cesium_cartesian3.css | maikuru/cesium-drupal | /**
* @file
* CSS for Cesium Cartesian3.
*/
div.form-item table .form-type-textfield,
div.form-item table .form-type-textfield * {
display: inline-block;
}
|
physiodublin/wp-content/plugins/social-media-tabs/css/dcsmt_admin.css | peter-watters/WebPortfolio | #dcwp-avatar {float: left; display: block; width: 32px; height: 32px; background: url(images/dc_icon32.png) no-repeat 0 0; margin: 0 5px 0 0;}
.dcwp-box.postbox {margin-bottom: 10px;}
.dcwp-box .hndle {margin-bottom: 10px;}
.dcwp-box p, .dcwp-box ul, .widget .widget-inside p.dcwp-box {padding: 0 10px; margin: 0 0 3px 0; line-height: 1.5em;}
.dcwp-box ul.bullet, ul.dcwp-rss {list-style: square; margin-left: 15px;}
.dcwp-form {padding: 0 10px;}
.dcwp-intro {padding: 10px;}
.dcwp-form li {display: block; width: 100%; overflow: hidden; margin: 0 0 5px 0; padding: 5px 0; clear: both; }
.dcwp-form li h4 {margin: 15px 0 0 0;}
.dcwp-form li label {float: left; width: 25%; display: block; padding: 5px 0 0 0;}
span.dcwp-note {display: block; padding: 5px 0 0 25%; font-size: 11px;}
label span.dcwp-note {padding: 2px 0 0 0; font-size: 11px;}
.dcwp-checkbox {}
.dcwp-rss-item {}
.dcwp-icon-rss {}
.dcwp-icon-twitter {}
.dcwp-input-l {width: 70%;}
.dcwp-input-m {width: 50%;}
.dcwp-input-s {width: 30%;}
.dcwp-textarea {width: 70%;}
#social-media-tabs-donatebox.dcwp-box {border: 1px solid #016f02; background: #fff;}
#social-media-tabs-donatebox.dcwp-box h3 {color: #016f02; padding: 7px 15px;}
#social-media-tabs-donatebox.dcwp-box p {padding: 0 7px;}
#form-dcwp-donate {text-align: center; padding-bottom: 10px;}
/* Widgets */
.dcwp-widget-text {width: 98%; height: 65px;}
.dcwp-widget-input {width: 100%;}
.dcwp-widget-label {display: block;}
p.dcwp-row {margin-bottom: 3px; width: 100%; overflow: hidden;}
p.dcwp-row.half {width: 50%; float: left;}
p.dcwp-row label {float: left; width: 70px; padding-top: 3px; display: block;}
.dcsmt-ul li {width: 100%; overflow: hidden;}
.dcsmt-ul .dcwp-widget-input, .dcsmt-ul h4.left {float: left; width: 60%;}
.dcsmt-ul select, .dcsmt-ul h4.right {float: right; width: 35%;}
.dcsmt-ul h4 {margin: 0;}
.dcsmt-ul label {display: none;}
.dcsmt-ul select, .dcsmt-ul .dcwp-widget-input {font-size: 11px;}
/* Share */
.dcwp-box ul#dc-share {width: 100%; overflow: hidden; margin: 0; padding: 0; line-height: 1em;}
.dcwp-box ul#dc-share li {float: left; padding: 0 3px; margin: 0; height: 75px;}
/* Plugin Specific */
#dcsmt_redirect {width: 140px;}
.dcwp-form li.dcsmt-icon {position: relative; width: 48%; float: left; height: 26px; clear: none; margin-right: 2%;}
.dcwp-form li.dcsmt-icon label {text-transform: capitalize;}
.dcsmt-icon img {position: absolute; top: 0; right: 0;}
|
Baocms/Tpl/database/import.html | ksyydream/api_llx | <include file='public:header'/>
<div class="mainBt">
<ul>
<li class="li1">系统</li>
<li class="li2">数据库</li>
<li class="li2 li3">数据库还原</li>
</ul>
</div>
<div class="main-jsgl">
<p class="attention"><span>注意:</span>谨慎操作!</p>
<div class="jsglNr">
<div class="selectNr">
<div class="left">
<a href="<{:U('database/index')}>">备份数据库</a>
</div>
<div class="right">
</div>
</div>
<form id="export-form" target="baocms_frm" method="post" action="<{:U('export')}>">
<div class="tableBox">
<table bordercolor="#e1e6eb" cellspacing="0" width="100%" border="1px" style=" border-collapse: collapse; margin:0px; vertical-align:middle; background-color:#FFF;" >
<tr>
<td>备份名称</td>
<td>卷数</td>
<td>压缩</td>
<td>数据大小</td>
<td>备份时间</td>
<td>状态</th>
<td>操作</td>
</tr>
<volist name="list" id="data">
<tr>
<td><{$data.time|date='Ymd-His',###}></td>
<td><{$data.part}></td>
<td><{$data.compress}></td>
<td><{$data.size|format_bytes}></td>
<td><{$key}></td>
<td>-</td>
<td class="action">
<a class="db-import" href="<{:U('import?time='.$data['time'])}>">还原</a>
<a class="ajax-get confirm" href="<{:U('del?time='.$data['time'])}>">删除</a>
</td>
</tr>
</volist>
</table>
<{$page}>
</div>
</form>
</div>
</div>
<script type="text/javascript">
$(".db-import").click(function(){
var self = this, status = ".";
$.get(self.href, success, "json");
window.onbeforeunload = function(){ return "正在还原数据库,请不要关闭!" }
return false;
function success(data){
if(data.status){
if(data.gz){
data.info += status;
if(status.length === 5){
status = ".";
} else {
status += ".";
}
}
$(self).parent().prev().text(data.info);
if(data.part){
$.get(self.href,
{"part" : data.part, "start" : data.start},
success,
"json"
);
} else {
window.onbeforeunload = function(){ return null; }
}
} else {
alert(data.info);
}
}
});
</script>
|
archive/v1.2/docs/tasks/egress/index.html | istio/istio.io | <!doctype html><html lang=en><head><title>Redirecting…</title><link rel=canonical href=/v1.2/docs/tasks/traffic-management/egress/egress-control/><meta name=robots content=noindex><meta charset=utf-8><meta http-equiv=refresh content="0; url=/v1.2/docs/tasks/traffic-management/egress/egress-control/"></head><body><h1>Redirecting…</h1><a href=/v1.2/docs/tasks/traffic-management/egress/egress-control/>Click here if you are not redirected.</a></body></html> |
www/css/structure/jquery.mobile.fixedToolbar.css | ronagapitz/matchdrobe-app | /* fixed page header & footer configuration */
.ui-header-fixed,
.ui-footer-fixed {
left: 0;
right: 0;
width: 100%;
position: fixed;
z-index: 1000;
}
.ui-header-fixed {
top: -1px;
padding-top: 1px;
}
.ui-header-fixed.ui-fixed-hidden {
top: 0;
padding-top: 0;
}
.ui-header-fixed .ui-btn-left,
.ui-header-fixed .ui-btn-right {
margin-top: 1px;
}
.ui-header-fixed.ui-fixed-hidden .ui-btn-left,
.ui-header-fixed.ui-fixed-hidden .ui-btn-right {
margin-top: 0;
}
.ui-footer-fixed {
bottom: -1px;
padding-bottom: 1px;
}
.ui-footer-fixed.ui-fixed-hidden {
bottom: 0;
padding-bottom: 0;
}
.ui-header-fullscreen,
.ui-footer-fullscreen {
filter: Alpha(Opacity=90);
opacity: .9;
}
/* updatePagePadding() will update the padding to actual height of header and footer. */
.ui-page-header-fixed {
padding-top: 2.8125em;
}
.ui-page-footer-fixed {
padding-bottom: 2.8125em;
}
.ui-page-header-fullscreen > .ui-content,
.ui-page-footer-fullscreen > .ui-content {
padding: 0;
}
.ui-fixed-hidden {
position: absolute;
}
.ui-page-header-fullscreen .ui-fixed-hidden,
.ui-page-footer-fullscreen .ui-fixed-hidden {
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
clip: rect(1px,1px,1px,1px);
}
.ui-header-fixed .ui-btn,
.ui-footer-fixed .ui-btn {
z-index: 10;
}
/* workarounds for other widgets */
.ui-android-2x-fixed .ui-li-has-thumb {
-webkit-transform: translate3d(0,0,0);
}
|
doc/1.0.0/guacamole-ext/constant-values.html | mike-jumper/incubator-guacamole-website | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_191) on Fri Dec 21 13:21:36 PST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Constant Field Values (guacamole-ext 1.0.0 API)</title>
<meta name="date" content="2018-12-21">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Constant Field Values (guacamole-ext 1.0.0 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li><a href="index-all.html">Index</a></li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
<li><a href="constant-values.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Constant Field Values" class="title">Constant Field Values</h1>
<h2 title="Contents">Contents</h2>
<ul>
<li><a href="#org.apache">org.apache.*</a></li>
</ul>
</div>
<div class="constantValuesContainer"><a name="org.apache">
<!-- -->
</a>
<h2 title="org.apache">org.apache.*</h2>
<ul class="blockList">
<li class="blockList">
<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
<caption><span>org.apache.guacamole.form.<a href="org/apache/guacamole/form/DateField.html" title="class in org.apache.guacamole.form">DateField</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th scope="col">Constant Field</th>
<th class="colLast" scope="col">Value</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.guacamole.form.DateField.FORMAT">
<!-- -->
</a><code>public static final <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/guacamole/form/DateField.html#FORMAT">FORMAT</a></code></td>
<td class="colLast"><code>"yyyy-MM-dd"</code></td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
<caption><span>org.apache.guacamole.form.<a href="org/apache/guacamole/form/TimeField.html" title="class in org.apache.guacamole.form">TimeField</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th scope="col">Constant Field</th>
<th class="colLast" scope="col">Value</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.guacamole.form.TimeField.FORMAT">
<!-- -->
</a><code>public static final <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/guacamole/form/TimeField.html#FORMAT">FORMAT</a></code></td>
<td class="colLast"><code>"HH:mm:ss"</code></td>
</tr>
</tbody>
</table>
</li>
</ul>
<ul class="blockList">
<li class="blockList">
<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
<caption><span>org.apache.guacamole.net.auth.<a href="org/apache/guacamole/net/auth/AbstractUserContext.html" title="class in org.apache.guacamole.net.auth">AbstractUserContext</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th scope="col">Constant Field</th>
<th class="colLast" scope="col">Value</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.guacamole.net.auth.AbstractUserContext.DEFAULT_ROOT_CONNECTION_GROUP">
<!-- -->
</a><code>protected static final <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/guacamole/net/auth/AbstractUserContext.html#DEFAULT_ROOT_CONNECTION_GROUP">DEFAULT_ROOT_CONNECTION_GROUP</a></code></td>
<td class="colLast"><code>"ROOT"</code></td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
<caption><span>org.apache.guacamole.net.auth.<a href="org/apache/guacamole/net/auth/AuthenticatedUser.html" title="interface in org.apache.guacamole.net.auth">AuthenticatedUser</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th scope="col">Constant Field</th>
<th class="colLast" scope="col">Value</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.guacamole.net.auth.AuthenticatedUser.ANONYMOUS_IDENTIFIER">
<!-- -->
</a><code>public static final <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/guacamole/net/auth/AuthenticatedUser.html#ANONYMOUS_IDENTIFIER">ANONYMOUS_IDENTIFIER</a></code></td>
<td class="colLast"><code>""</code></td>
</tr>
</tbody>
</table>
</li>
</ul>
<ul class="blockList">
<li class="blockList">
<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
<caption><span>org.apache.guacamole.token.<a href="org/apache/guacamole/token/StandardTokens.html" title="class in org.apache.guacamole.token">StandardTokens</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th scope="col">Constant Field</th>
<th class="colLast" scope="col">Value</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.guacamole.token.StandardTokens.CLIENT_ADDRESS_TOKEN">
<!-- -->
</a><code>public static final <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/guacamole/token/StandardTokens.html#CLIENT_ADDRESS_TOKEN">CLIENT_ADDRESS_TOKEN</a></code></td>
<td class="colLast"><code>"GUAC_CLIENT_ADDRESS"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="org.apache.guacamole.token.StandardTokens.CLIENT_HOSTNAME_TOKEN">
<!-- -->
</a><code>public static final <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/guacamole/token/StandardTokens.html#CLIENT_HOSTNAME_TOKEN">CLIENT_HOSTNAME_TOKEN</a></code></td>
<td class="colLast"><code>"GUAC_CLIENT_HOSTNAME"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.guacamole.token.StandardTokens.DATE_TOKEN">
<!-- -->
</a><code>public static final <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/guacamole/token/StandardTokens.html#DATE_TOKEN">DATE_TOKEN</a></code></td>
<td class="colLast"><code>"GUAC_DATE"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="org.apache.guacamole.token.StandardTokens.PASSWORD_TOKEN">
<!-- -->
</a><code>public static final <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/guacamole/token/StandardTokens.html#PASSWORD_TOKEN">PASSWORD_TOKEN</a></code></td>
<td class="colLast"><code>"GUAC_PASSWORD"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="org.apache.guacamole.token.StandardTokens.TIME_TOKEN">
<!-- -->
</a><code>public static final <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/guacamole/token/StandardTokens.html#TIME_TOKEN">TIME_TOKEN</a></code></td>
<td class="colLast"><code>"GUAC_TIME"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="org.apache.guacamole.token.StandardTokens.USERNAME_TOKEN">
<!-- -->
</a><code>public static final <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="org/apache/guacamole/token/StandardTokens.html#USERNAME_TOKEN">USERNAME_TOKEN</a></code></td>
<td class="colLast"><code>"GUAC_USERNAME"</code></td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li><a href="index-all.html">Index</a></li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
<li><a href="constant-values.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2018. All rights reserved.</small></p>
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-75289145-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>
|
share/doc/hadoop/hadoop-hdfs-httpfs/apidocs/org/apache/hadoop/fs/http/server/class-use/HttpFSParametersProvider.LenParam.html | jimmypw/hadoop | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_45) on Fri Sep 05 23:35:02 UTC 2014 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Class org.apache.hadoop.fs.http.server.HttpFSParametersProvider.LenParam (Apache Hadoop HttpFS 2.5.1 API)
</TITLE>
<META NAME="date" CONTENT="2014-09-05">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.hadoop.fs.http.server.HttpFSParametersProvider.LenParam (Apache Hadoop HttpFS 2.5.1 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/hadoop/fs/http/server/HttpFSParametersProvider.LenParam.html" title="class in org.apache.hadoop.fs.http.server"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/hadoop/fs/http/server//class-useHttpFSParametersProvider.LenParam.html" target="_top"><B>FRAMES</B></A>
<A HREF="HttpFSParametersProvider.LenParam.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.hadoop.fs.http.server.HttpFSParametersProvider.LenParam</B></H2>
</CENTER>
No usage of org.apache.hadoop.fs.http.server.HttpFSParametersProvider.LenParam
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/hadoop/fs/http/server/HttpFSParametersProvider.LenParam.html" title="class in org.apache.hadoop.fs.http.server"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/hadoop/fs/http/server//class-useHttpFSParametersProvider.LenParam.html" target="_top"><B>FRAMES</B></A>
<A HREF="HttpFSParametersProvider.LenParam.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2014 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved.
</BODY>
</HTML>
|
src/app/storymaps/tpl/ui/Common.css | regan-sarwas/map-series-storytelling-template-js | /*
* Rules for CKEditor content
*/
.textEditorContent {
font-size: 0.9em;
word-wrap: break-word;
word-break: break-word;
}
.textEditorContent img {
height: auto;
max-width: 100%;
max-height: 100%;
}
.textEditorContent ul {
margin: inherit;
padding: 10px 40px;
}
.textEditorContent .description table,
.textEditorContent .description th,
.textEditorContent .description td {
border: 1px dotted #d3d3d3;
}
.textEditorContent .description abbr[title] {
border: none;
}
.textEditorContent .description select {
font-family: unset;
color: initial;
}
.textEditorContent .description h1,
.textEditorContent .description h2,
.textEditorContent .description h3,
.textEditorContent .description h4,
.textEditorContent .description h5,
.textEditorContent .description h6,
.textEditorContent .description p,
.textEditorContent .description ul {
margin: 0.5em 0;
}
.textEditorContent .description hr {
border-color: #ccc;
} |
src/main/webapp/css/css_page/button.css | yanchhuong/ngday | @charset "utf-8";
/* CSS Document */
|
demo/manage/widgets3.html | hubcarl/smart-nodejs-express-ejs | <!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<!-- Title and other stuffs -->
<title>插件3页面 Bootstrap响应式后台管理系统模版Mac - JS代码网</title>
<meta name="keywords" content="Bootstrap模版,Bootstrap模版下载,Bootstrap教程,Bootstrap中文,后台管理系统模版,后台模版下载,后台管理系统,后台管理模版" />
<meta name="description" content="JS代码网提供Bootstrap模版,后台管理系统模版,后台管理界面,Bootstrap教程,Bootstrap中文翻译等相关Bootstrap插件下载" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="">
<!-- Stylesheets -->
<link href="style/bootstrap.css" rel="stylesheet">
<!-- Font awesome icon -->
<link rel="stylesheet" href="style/font-awesome.css">
<!-- jQuery UI -->
<link rel="stylesheet" href="style/jquery-ui.css">
<!-- Calendar -->
<link rel="stylesheet" href="style/fullcalendar.css">
<!-- prettyPhoto -->
<link rel="stylesheet" href="style/prettyPhoto.css">
<!-- Star rating -->
<link rel="stylesheet" href="style/rateit.css">
<!-- Date picker -->
<link rel="stylesheet" href="style/bootstrap-datetimepicker.min.css">
<!-- CLEditor -->
<link rel="stylesheet" href="style/jquery.cleditor.css">
<!-- Uniform -->
<link rel="stylesheet" href="style/uniform.default.css">
<!-- Bootstrap toggle -->
<link rel="stylesheet" href="style/bootstrap-switch.css">
<!-- Main stylesheet -->
<link href="style/style.css" rel="stylesheet">
<!-- Widgets stylesheet -->
<link href="style/widgets.css" rel="stylesheet">
<!-- HTML5 Support for IE -->
<!--[if lt IE 9]>
<script src="js/html5shim.js"></script>
<![endif]-->
<!-- Favicon -->
<link rel="shortcut icon" href="img/favicon/favicon.png">
</head>
<body>
<div class="navbar navbar-fixed-top bs-docs-nav" role="banner">
<div class="conjtainer">
<!-- Menu button for smallar screens -->
<div class="navbar-header">
<button class="navbar-toggle btn-navbar" type="button" data-toggle="collapse" data-target=".bs-navbar-collapse">
<span>Menu</span>
</button>
<!-- Site name for smallar screens -->
<a href="index.html" class="navbar-brand hidden-lg">MacBeth</a>
</div>
<!-- Navigation starts -->
<nav class="collapse navbar-collapse bs-navbar-collapse" role="navigation">
<ul class="nav navbar-nav">
<!-- Upload to server link. Class "dropdown-big" creates big dropdown -->
<li class="dropdown dropdown-big">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><span class="label label-success"><i class="icon-cloud-upload"></i></span> Upload to Cloud</a>
<!-- Dropdown -->
<ul class="dropdown-menu">
<li>
<!-- Progress bar -->
<p>Photo Upload in Progress</p>
<!-- Bootstrap progress bar -->
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
<span class="sr-only">40% Complete</span>
</div>
</div>
<hr />
<!-- Progress bar -->
<p>Video Upload in Progress</p>
<!-- Bootstrap progress bar -->
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
<span class="sr-only">80% Complete</span>
</div>
</div>
<hr />
<!-- Dropdown menu footer -->
<div class="drop-foot">
<a href="#">View All</a>
</div>
</li>
</ul>
</li>
<!-- Sync to server link -->
<li class="dropdown dropdown-big">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><span class="label label-danger"><i class="icon-refresh"></i></span> Sync with Server</a>
<!-- Dropdown -->
<ul class="dropdown-menu">
<li>
<!-- Using "icon-spin" class to rotate icon. -->
<p><span class="label label-info"><i class="icon-cloud"></i></span> Syncing Members Lists to Server</p>
<hr />
<p><span class="label label-warning"><i class="icon-cloud"></i></span> Syncing Bookmarks Lists to Cloud</p>
<hr />
<!-- Dropdown menu footer -->
<div class="drop-foot">
<a href="#">View All</a>
</div>
</li>
</ul>
</li>
</ul>
<!-- Search form -->
<form class="navbar-form navbar-left" role="search">
<div class="form-group">
<input type="text" class="form-control" placeholder="Search">
</div>
</form>
<!-- Links -->
<ul class="nav navbar-nav pull-right">
<li class="dropdown pull-right">
<a data-toggle="dropdown" class="dropdown-toggle" href="#">
<i class="icon-user"></i> Admin <b class="caret"></b>
</a>
<!-- Dropdown menu -->
<ul class="dropdown-menu">
<li><a href="#"><i class="icon-user"></i> Profile</a></li>
<li><a href="#"><i class="icon-cogs"></i> Settings</a></li>
<li><a href="login.html"><i class="icon-off"></i> Logout</a></li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
<!-- Header starts -->
<header>
<div class="container">
<div class="row">
<!-- Logo section -->
<div class="col-md-4">
<!-- Logo. -->
<div class="logo">
<h1><a href="#">Mac<span class="bold"></span></a></h1>
<p class="meta">后台管理系统</p>
</div>
<!-- Logo ends -->
</div>
<!-- Button section -->
<div class="col-md-4">
<!-- Buttons -->
<ul class="nav nav-pills">
<!-- Comment button with number of latest comments count -->
<li class="dropdown dropdown-big">
<a class="dropdown-toggle" href="#" data-toggle="dropdown">
<i class="icon-comments"></i> Chats <span class="label label-info">6</span>
</a>
<ul class="dropdown-menu">
<li>
<!-- Heading - h5 -->
<h5><i class="icon-comments"></i> Chats</h5>
<!-- Use hr tag to add border -->
<hr />
</li>
<li>
<!-- List item heading h6 -->
<h6><a href="#">Hi :)</a> <span class="label label-warning pull-right">10:42</span></h6>
<div class="clearfix"></div>
<hr />
</li>
<li>
<h6><a href="#">How are you?</a> <span class="label label-warning pull-right">20:42</span></h6>
<div class="clearfix"></div>
<hr />
</li>
<li>
<h6><a href="#">What are you doing?</a> <span class="label label-warning pull-right">14:42</span></h6>
<div class="clearfix"></div>
<hr />
</li>
<li>
<div class="drop-foot">
<a href="#">View All</a>
</div>
</li>
</ul>
</li>
<!-- Message button with number of latest messages count-->
<li class="dropdown dropdown-big">
<a class="dropdown-toggle" href="#" data-toggle="dropdown">
<i class="icon-envelope-alt"></i> Inbox <span class="label label-primary">6</span>
</a>
<ul class="dropdown-menu">
<li>
<!-- Heading - h5 -->
<h5><i class="icon-envelope-alt"></i> Messages</h5>
<!-- Use hr tag to add border -->
<hr />
</li>
<li>
<!-- List item heading h6 -->
<h6><a href="#">Hello how are you?</a></h6>
<!-- List item para -->
<p>Quisque eu consectetur erat eget semper...</p>
<hr />
</li>
<li>
<h6><a href="#">Today is wonderful?</a></h6>
<p>Quisque eu consectetur erat eget semper...</p>
<hr />
</li>
<li>
<div class="drop-foot">
<a href="#">View All</a>
</div>
</li>
</ul>
</li>
<!-- Members button with number of latest members count -->
<li class="dropdown dropdown-big">
<a class="dropdown-toggle" href="#" data-toggle="dropdown">
<i class="icon-user"></i> Users <span class="label label-success">6</span>
</a>
<ul class="dropdown-menu">
<li>
<!-- Heading - h5 -->
<h5><i class="icon-user"></i> Users</h5>
<!-- Use hr tag to add border -->
<hr />
</li>
<li>
<!-- List item heading h6-->
<h6><a href="#">Ravi Kumar</a> <span class="label label-warning pull-right">Free</span></h6>
<div class="clearfix"></div>
<hr />
</li>
<li>
<h6><a href="#">Balaji</a> <span class="label label-important pull-right">Premium</span></h6>
<div class="clearfix"></div>
<hr />
</li>
<li>
<h6><a href="#">Kumarasamy</a> <span class="label label-warning pull-right">Free</span></h6>
<div class="clearfix"></div>
<hr />
</li>
<li>
<div class="drop-foot">
<a href="#">View All</a>
</div>
</li>
</ul>
</li>
</ul>
</div>
<!-- Data section -->
<div class="col-md-4">
<div class="header-data">
<!-- Traffic data -->
<div class="hdata">
<div class="mcol-left">
<!-- Icon with red background -->
<i class="icon-signal bred"></i>
</div>
<div class="mcol-right">
<!-- Number of visitors -->
<p><a href="#">7000</a> <em>visits</em></p>
</div>
<div class="clearfix"></div>
</div>
<!-- Members data -->
<div class="hdata">
<div class="mcol-left">
<!-- Icon with blue background -->
<i class="icon-user bblue"></i>
</div>
<div class="mcol-right">
<!-- Number of visitors -->
<p><a href="#">3000</a> <em>users</em></p>
</div>
<div class="clearfix"></div>
</div>
<!-- revenue data -->
<div class="hdata">
<div class="mcol-left">
<!-- Icon with green background -->
<i class="icon-money bgreen"></i>
</div>
<div class="mcol-right">
<!-- Number of visitors -->
<p><a href="#">5000</a><em>orders</em></p>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Header ends -->
<!-- Main content starts -->
<div class="content">
<!-- Sidebar -->
<div class="sidebar">
<div class="sidebar-dropdown"><a href="#">Navigation</a></div>
<!--- Sidebar navigation -->
<!-- If the main navigation has sub navigation, then add the class "has_sub" to "li" of main navigation. -->
<ul id="nav">
<!-- Main menu with font awesome icon -->
<li><a href="index.html"><i class="icon-home"></i> Dashboard</a>
<!-- Sub menu markup
<ul>
<li><a href="#">Submenu #1</a></li>
<li><a href="#">Submenu #2</a></li>
<li><a href="#">Submenu #3</a></li>
</ul>-->
</li>
<li class="has_sub"><a href="#" class="open"><i class="icon-list-alt"></i> Widgets <span class="pull-right"><i class="icon-chevron-right"></i></span></a>
<ul>
<li><a href="widgets1.html">Widgets #1</a></li>
<li><a href="widgets2.html">Widgets #2</a></li>
<li><a href="widgets3.html">Widgets #3</a></li>
</ul>
</li>
<li class="has_sub"><a href="#"><i class="icon-file-alt"></i> Pages #1 <span class="pull-right"><i class="icon-chevron-right"></i></span></a>
<ul>
<li><a href="post.html">Post</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="support.html">Support</a></li>
<li><a href="invoice.html">Invoice</a></li>
<li><a href="profile.html">Profile</a></li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
</li>
<li class="has_sub"><a href="#"><i class="icon-file-alt"></i> Pages #2 <span class="pull-right"><i class="icon-chevron-right"></i></span></a>
<ul>
<li><a href="media.html">Media</a></li>
<li><a href="statement.html">Statement</a></li>
<li><a href="error.html">Error</a></li>
<li><a href="error-log.html">Error Log</a></li>
<li><a href="calendar.html">Calendar</a></li>
<li><a href="grid.html">Grid</a></li>
</ul>
</li>
<li><a href="charts.html"><i class="icon-bar-chart"></i> Charts</a></li>
<li><a href="tables.html"><i class="icon-table"></i> Tables</a></li>
<li><a href="forms.html"><i class="icon-tasks"></i> Forms</a></li>
<li><a href="ui.html"><i class="icon-magic"></i> User Interface</a></li>
<li><a href="calendar.html"><i class="icon-calendar"></i> Calendar</a></li>
</ul>
</div>
<!-- Sidebar ends -->
<!-- Main bar -->
<div class="mainbar">
<!-- Page heading -->
<div class="page-head">
<h2 class="pull-left"><i class="icon-list-alt"></i> Widgets</h2>
<!-- Breadcrumb -->
<div class="bread-crumb pull-right">
<a href="index.html"><i class="icon-home"></i> Home</a>
<!-- Divider -->
<span class="divider">/</span>
<a href="#" class="bread-current">Dashboard</a>
</div>
<div class="clearfix"></div>
</div>
<!-- Page heading ends -->
<!-- Matter -->
<div class="matter">
<div class="container">
<div class="row">
<!-- Operating System -->
<div class="col-md-4">
<div class="widget">
<!-- Widget title -->
<div class="widget-head">
<div class="pull-left">Operating System</div>
<div class="widget-icons pull-right">
<a href="#" class="wminimize"><i class="icon-chevron-up"></i></a>
<a href="#" class="wclose"><i class="icon-remove"></i></a>
</div>
<div class="clearfix"></div>
</div>
<div class="widget-content referrer">
<!-- Widget content -->
<table class="table table-striped table-bordered table-hover">
<tr>
<th><center>#</center></th>
<th>Operating System</th>
<th>Visits</th>
</tr>
<tr>
<td><img src="img/icons/windows.png" alt="" />
<td>Windows 7</td>
<td>3,005</td>
</tr>
<tr>
<td><img src="img/icons/android.png" alt="" />
<td>Android ICS</td>
<td>2,505</td>
</tr>
<tr>
<td><img src="img/icons/ios.png" alt="" />
<td>Apple IOS</td>
<td>1,405</td>
</tr>
<tr>
<td><img src="img/icons/linux.png" alt="" />
<td>Linux</td>
<td>4,005</td>
</tr>
<tr>
<td><img src="img/icons/mac.png" alt="" />
<td>Mac</td>
<td>505</td>
</tr> <tr>
<td><img src="img/icons/metro.png" alt="" />
<td>Windows Mobile</td>
<td>305</td>
</tr>
</table>
<div class="widget-foot">
</div>
</div>
</div>
</div>
<!-- Browsers -->
<div class="col-md-4">
<div class="widget">
<!-- Widget title -->
<div class="widget-head">
<div class="pull-left">Browsers</div>
<div class="widget-icons pull-right">
<a href="#" class="wminimize"><i class="icon-chevron-up"></i></a>
<a href="#" class="wclose"><i class="icon-remove"></i></a>
</div>
<div class="clearfix"></div>
</div>
<div class="widget-content referrer">
<!-- Widget content -->
<table class="table table-striped table-bordered table-hover">
<tr>
<th><center>#</center></th>
<th>Browsers</th>
<th>Visits</th>
</tr>
<tr>
<td><img src="img/icons/chrome.png" alt="" />
<td>Google Chrome</td>
<td>3,005</td>
</tr>
<tr>
<td><img src="img/icons/firefox.png" alt="" />
<td>Mozilla Firefox</td>
<td>2,505</td>
</tr>
<tr>
<td><img src="img/icons/ie.png" alt="" />
<td>Internet Explorer</td>
<td>1,405</td>
</tr>
<tr>
<td><img src="img/icons/opera.png" alt="" />
<td>Opera</td>
<td>4,005</td>
</tr>
<tr>
<td><img src="img/icons/safari.png" alt="" />
<td>Safari</td>
<td>505</td>
</tr>
</table>
<div class="widget-foot">
</div>
</div>
</div>
</div>
<!-- Recent News -->
<div class="col-md-4">
<div class="widget">
<!-- Widget title -->
<div class="widget-head">
<div class="pull-left">Recent News</div>
<div class="widget-icons pull-right">
<a href="#" class="wminimize"><i class="icon-chevron-up"></i></a>
<a href="#" class="wclose"><i class="icon-remove"></i></a>
</div>
<div class="clearfix"></div>
</div>
<div class="widget-content referrer">
<!-- Widget content -->
<div class="padd">
<ul class="latest-news">
<li>
<!-- Title and date -->
<h6><a href="#">Morbi ac felis nec </a> - <span>Jan 1, 2012</span></h6>
<p>Suspendisse potenti. Morbi ac felis fermentum. Aenean lacus hendrerit sed rhoncus erat hendrerit. </p>
</li>
<li>
<!-- Title and date -->
<h6><a href="#">Aac felis nec imperdiet</a> - <span>Jan 1, 2012</span></h6>
<p>Suspendisse potenti. Morbi ac felis fermentum. Aenean lacus hendrerit sed rhoncus erat hendrerit. </p>
</li>
<li>
<!-- Title and date -->
<h6><a href="#">Felis nec imperdiet</a> - <span>Jan 1, 2012</span></h6>
<p>Suspendisse potenti. Morbi ac felis fermentum. Aenean hendrerit sed rhoncus erat hendrerit. </p>
</li>
</ul>
</div>
<div class="widget-foot">
</div>
</div>
</div>
</div>
</div>
<div class="row">
<!-- Task widget -->
<div class="col-md-5">
<div class="widget">
<!-- Widget title -->
<div class="widget-head">
<div class="pull-left">Tasks</div>
<div class="widget-icons pull-right">
<a href="#" class="wminimize"><i class="icon-chevron-up"></i></a>
<a href="#" class="wclose"><i class="icon-remove"></i></a>
</div>
<div class="clearfix"></div>
</div>
<div class="widget-content">
<!-- Widget content -->
<!-- Task list starts -->
<ul class="task">
<li>
<!-- Checkbox -->
<span class="uni"><input value="check1" type="checkbox"></span>
<!-- Task -->
Goto Shopping in Walmart <span class="label label-danger">Important</span>
<!-- Delete button -->
<a href="#" class="pull-right"><i class="icon-remove"></i></a>
</li>
<li>
<!-- Checkbox -->
<span class="uni"><input value="check1" type="checkbox"></span>
<!-- Task -->
Download some action movies
<!-- Delete button -->
<a href="#" class="pull-right"><i class="icon-remove"></i></a>
</li>
<li>
<!-- Checkbox -->
<span class="uni"><input value="check1" type="checkbox"></span>
<!-- Task -->
Read Harry Potter VII Book <span class="label label-danger">Important</span>
<!-- Delete button -->
<a href="#" class="pull-right"><i class="icon-remove"></i></a>
</li>
<li>
<!-- Checkbox -->
<span class="uni"><input value="check1" type="checkbox"></span>
<!-- Task -->
Collect cash from friends for camp
<!-- Delete button -->
<a href="#" class="pull-right"><i class="icon-remove"></i></a>
</li>
<li>
<!-- Checkbox -->
<span class="uni"><input value="check1" type="checkbox"></span>
<!-- Task -->
Sleep till tomorrow everning
<!-- Delete button -->
<a href="#" class="pull-right"><i class="icon-remove"></i></a>
</li>
</ul>
<div class="clearfix"></div>
<div class="widget-foot">
</div>
</div>
</div>
</div>
<div class="col-md-7">
<div class="widget">
<div class="widget-head">
<div class="pull-left">Quick Posts</div>
<div class="widget-icons pull-right">
<a href="#" class="wminimize"><i class="icon-chevron-up"></i></a>
<a href="#" class="wclose"><i class="icon-remove"></i></a>
</div>
<div class="clearfix"></div>
</div>
<div class="widget-content">
<div class="padd">
<div class="form quick-post">
<!-- Edit profile form (not working)-->
<form class="form-horizontal">
<!-- Title -->
<div class="form-group">
<label class="control-label col-lg-3" for="title">Title</label>
<div class="col-lg-9">
<input type="text" class="form-control" id="title">
</div>
</div>
<!-- Content -->
<div class="form-group">
<label class="control-label col-lg-3" for="content">Content</label>
<div class="col-lg-9">
<textarea class="form-control" id="content"></textarea>
</div>
</div>
<!-- Cateogry -->
<div class="form-group">
<label class="control-label col-lg-3">Category</label>
<div class="col-lg-9">
<select class="form-control">
<option value="">- Choose Cateogry -</option>
<option value="1">General</option>
<option value="2">News</option>
<option value="3">Media</option>
<option value="4">Funny</option>
</select>
</div>
</div>
<!-- Tags -->
<div class="form-group">
<label class="control-label col-lg-3" for="tags">Tags</label>
<div class="col-lg-9">
<input type="text" class="form-control" id="tags">
</div>
</div>
<!-- Buttons -->
<div class="form-group">
<!-- Buttons -->
<div class="col-lg-offset-2 col-lg-9">
<button type="submit" class="btn btn-success">Publish</button>
<button type="submit" class="btn btn-danger">Save Draft</button>
<button type="reset" class="btn btn-default">Reset</button>
</div>
</div>
</form>
</div>
</div>
<div class="widget-foot">
<!-- Footer goes here -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Matter ends -->
</div>
<!-- Mainbar ends -->
<div class="clearfix"></div>
</div>
<!-- Content ends -->
<!-- Footer starts -->
<footer>
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- Copyright info -->
<p class="copy">Copyright © 2012 | <a href="#">Your Site</a> </p>
</div>
</div>
</div>
</footer>
<!-- Footer ends -->
<!-- Scroll to top -->
<span class="totop"><a href="#"><i class="icon-chevron-up"></i></a></span>
<!-- JS -->
<script src="js/jquery.js"></script> <!-- jQuery -->
<script src="js/bootstrap.js"></script> <!-- Bootstrap -->
<script src="js/jquery-ui-1.9.2.custom.min.js"></script> <!-- jQuery UI -->
<script src="js/fullcalendar.min.js"></script> <!-- Full Google Calendar - Calendar -->
<script src="js/jquery.rateit.min.js"></script> <!-- RateIt - Star rating -->
<script src="js/jquery.prettyPhoto.js"></script> <!-- prettyPhoto -->
<!-- jQuery Flot -->
<script src="js/excanvas.min.js"></script>
<script src="js/jquery.flot.js"></script>
<script src="js/jquery.flot.resize.js"></script>
<script src="js/jquery.flot.pie.js"></script>
<script src="js/jquery.flot.stack.js"></script>
<!-- jQuery Notification - Noty -->
<script src="js/jquery.noty.js"></script> <!-- jQuery Notify -->
<script src="js/themes/default.js"></script> <!-- jQuery Notify -->
<script src="js/layouts/bottom.js"></script> <!-- jQuery Notify -->
<script src="js/layouts/topRight.js"></script> <!-- jQuery Notify -->
<script src="js/layouts/top.js"></script> <!-- jQuery Notify -->
<!-- jQuery Notification ends -->
<script src="js/sparklines.js"></script> <!-- Sparklines -->
<script src="js/jquery.cleditor.min.js"></script> <!-- CLEditor -->
<script src="js/bootstrap-datetimepicker.min.js"></script> <!-- Date picker -->
<script src="js/jquery.uniform.min.js"></script> <!-- jQuery Uniform -->
<script src="js/bootstrap-switch.min.js"></script> <!-- Bootstrap Toggle -->
<script src="js/filter.js"></script> <!-- Filter for support page -->
<script src="js/custom.js"></script> <!-- Custom codes -->
<script src="js/charts.js"></script> <!-- Charts & Graphs -->
</body>
</html> |
doc/class-use/Img.html | cebericus/DemoTown | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_147-icedtea) on Tue Mar 27 20:06:55 PDT 2012 -->
<title>Uses of Class Img</title>
<meta name="date" content="2012-03-27">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class Img";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../Img.html" title="class in <Unnamed>">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li><a href="../index-files/index-1.html">Index</a></li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../index.html?class-useImg.html" target="_top">Frames</a></li>
<li><a href="Img.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class Img" class="title">Uses of Class<br>Img</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../Img.html" title="class in <Unnamed>">Img</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href>&lt;Unnamed&gt;</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name>
<!-- -->
</a>
<h3>Uses of <a href="../Img.html" title="class in <Unnamed>">Img</a> in <a href="../package-summary.html"><Unnamed></a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
<caption><span>Fields in <a href="../package-summary.html"><Unnamed></a> with type parameters of type <a href="../Img.html" title="class in <Unnamed>">Img</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>private java.util.HashMap<java.lang.Character,<a href="../Img.html" title="class in <Unnamed>">Img</a>></code></td>
<td class="colLast"><span class="strong">ImageSet.</span><code><strong><a href="../ImageSet.html#image_set">image_set</a></strong></code>
<div class="block">set of id character to SWT.Image mappings for game map images</div>
</td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../package-summary.html"><Unnamed></a> that return types with arguments of type <a href="../Img.html" title="class in <Unnamed>">Img</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>java.util.HashMap<java.lang.Character,<a href="../Img.html" title="class in <Unnamed>">Img</a>></code></td>
<td class="colLast"><span class="strong">ImageSet.</span><code><strong><a href="../ImageSet.html#getImage_set()">getImage_set</a></strong>()</code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Method parameters in <a href="../package-summary.html"><Unnamed></a> with type arguments of type <a href="../Img.html" title="class in <Unnamed>">Img</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">ImageSet.</span><code><strong><a href="../ImageSet.html#setImage_set(java.util.HashMap)">setImage_set</a></strong>(java.util.HashMap<java.lang.Character,<a href="../Img.html" title="class in <Unnamed>">Img</a>> image_set)</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../Img.html" title="class in <Unnamed>">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li><a href="../index-files/index-1.html">Index</a></li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../index.html?class-useImg.html" target="_top">Frames</a></li>
<li><a href="Img.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
reviews.html | priteshgupta/connoisseur | <!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Connoisseur</title>
<link href="styles/style.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="container">
<header>
<nav>
<ul id="nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="reviews.html" class="current">Reviews</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div class="wrapper">
<div class="border"></div>
<article>
<h3>Reviews</h3>
<blockquote>Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.<span>~Lorem</span></blockquote>
<div class="border3"></div>
<blockquote>Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.<span>~Lorem</span></blockquote>
<div class="border3"></div>
<blockquote>Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.<span>~Lorem</span></blockquote>
<div class="border3"></div>
<blockquote>Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra.<span>~Lorem</span></blockquote>
<div class="border3"></div>
</article>
<aside class="sidebar">
<h3>Sidebar Widget</h3>
<img src="images/home/1.jpg" width="280" alt="" />
<p><strong>Pellentesque habitant morbi tristique</strong> senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. <em>Aenean ultricies mi vitae est.</em> Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, <code>commodo vitae</code>, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. In turpis pulvinar facilisis. Ut felis.<br>
<a href="" class="right" style="padding-top:7px"><strong>Continue Reading »</strong></a></p>
</aside>
<div class="border2"></div>
<br>
</div>
<footer>
<div class="border"></div>
<div class="footer-widget">
<h4>Some Title</h4>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. </p>
</div>
<div class="footer-widget">
<h4>From The Blog</h4>
<ul class="blog">
<li><a href="#">Lorem Ipsum Dolor</a><br/>
Orciint erdum condimen terdum nulla mcorper elit nam curabitur... </li>
<li><a href="#">Praesent Et Eros</a><br/>
Orciint erdum condimen terdum nulla mcorper elit nam curabitur... </li>
<li><a href="#">Suspendisse In Neque</a><br/>
Orciint erdum condimen terdum nulla mcorper elit nam curabitur... </li>
<li><a href="#">Suspendisse In Neque</a><br/>
Orciint erdum condimen terdum nulla mcorper elit nam curabitur... </li>
</ul>
</div>
<div class="footer-widget">
<h4>We Are Social!</h4>
<div id="social"> <a href="http://twitter.com/priteshgupta" class="s3d twitter"> Twitter <span class="icons twitter"></span> </a> <a href="http://www.facebook.com/priteshgupta" class="s3d facebook"> Facebook <span class="icons facebook"></span> </a> <a href="http://forrst.com/people/priteshgupta" class="s3d forrst"> Forrst <span class="icons forrst"></span> </a> <a href="http://www.flickr.com/photos/priteshgupta" class="s3d flickr"> Flickr <span class="icons flickr"></span> </a> <a href="#" class="s3d designmoo"> Designmoo <span class="icons designmoo"></span> </a> </div>
</div>
<div class="border2"></div>
<br />
<span class="copyright"><span class="left"><br />
© Copyright 2012 - All Rights Reserved - <a href="#">Domain Name</a></span><span class="right"><br />
Design by <a href="http://www.priteshgupta.com">PriteshGupta.com</a><br />
<br>
<br />
</span></span></footer>
</div>
</body>
</html> |
phpdoc/default/_examples---edit_clock.php.html | Juniper/netconf-php | <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs for page edit_clock.php</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="file-name">/examples/edit_clock.php</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-includes">Includes</a>
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
</div>
</div>
<a name="sec-includes"></a>
<div class="info-box">
<div class="info-box-title">Includes</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<span class="disabled">Includes</span>
</div>
<div class="info-box-body">
<a name="_/home/automation/Desktop/netconf-php-master/netconf/Device_php"><!-- --></a>
<div class="oddrow">
<div>
<span class="include-title">
<span class="include-type">include</span>
(<span class="include-name">'/home/automation/Desktop/netconf-php-master/netconf/Device.php'</span>)
(line <span class="line-number">2</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
</div>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Thu, 27 Feb 2014 13:55:59 +0000 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.4</a>
</p>
</div></body>
</html> |
docs/html/interfaceDbSync__DbAdapter__AdapterInterface.html | yhbyun/php-dbsync | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>DbSync: DbSync_DbAdapter_AdapterInterface Interface Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.7.4 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">DbSync</div>
</td>
</tr>
</tbody>
</table>
</div>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li id="searchli">
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> </div>
<div class="headertitle">
<div class="title">DbSync_DbAdapter_AdapterInterface Interface Reference</div> </div>
</div>
<div class="contents">
<!-- doxytag: class="DbSync_DbAdapter_AdapterInterface" --><div class="dynheader">
Inheritance diagram for DbSync_DbAdapter_AdapterInterface:</div>
<div class="dyncontent">
<div class="center">
<img src="interfaceDbSync__DbAdapter__AdapterInterface.png" usemap="#DbSync_DbAdapter_AdapterInterface_map" alt=""/>
<map id="DbSync_DbAdapter_AdapterInterface_map" name="DbSync_DbAdapter_AdapterInterface_map">
<area href="classDbSync__DbAdapter__Mysql.html" alt="DbSync_DbAdapter_Mysql" shape="rect" coords="0,56,227,80"/>
</map>
</div></div>
<p><a href="interfaceDbSync__DbAdapter__AdapterInterface-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#a29aeee3cbdac7e08ca3c08f464f5b443">__construct</a> (array $config)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#a683e550d89b21e02e4068993f30079fc">parseSchema</a> ($tableName)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#acc0350206ef7c623402bb19633ad3f6a">createAlter</a> ($config, $tableName)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#acea54c81f65be6ea4eceb8dcf3b93659">parseTrigger</a> ($triggerName)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#a2efd82563860bf45fc07fbeb4d67b056">createTriggerSql</a> ($config)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#a4e19047119e11123e47f8c8c14e0c665">execute</a> ($sql)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#a686c3e752907a09cc1d87fce2d2bb101">getTriggerList</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#a6df405111c98ca40324423f8981d7974">getTableByTrigger</a> ($triggerName)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#a84b87f76dc8ebc123d42dda7393e0cb9">getTableList</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#ac1cb4888b127b104ed231feae87d3056">hasTable</a> ($tableName)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#aa8f4119b6cc6cf5bfd0d97d45a849d9d">hasTrigger</a> ($triggerName)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#ad60b6d7e34fba4e763132e47134b35e1">fetchData</a> ($tableName)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#ad535c5d4d074383feb578fab1e71d2e7">insert</a> ($data, $tableName)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#a06dfb3597de81841661535373ce06e0d">merge</a> ($data, $tableName)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#a2cc0eb5ae7c4aa0b69a899e84040da83">truncate</a> ($tableName)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#a18ccca4e55a874ed85acd00506f4fff2">dropTable</a> ($tableName)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#afb0b32f718a3a499955444966929997b">dropTrigger</a> ($triggerName)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="interfaceDbSync__DbAdapter__AdapterInterface.html#abe0d20fb62067de68fb354adc3eb7e8a">isEmpty</a> ($tableName)</td></tr>
</table>
<hr/><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" id="a29aeee3cbdac7e08ca3c08f464f5b443"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::__construct" ref="a29aeee3cbdac7e08ca3c08f464f5b443" args="(array $config)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::__construct </td>
<td>(</td>
<td class="paramtype">array $ </td>
<td class="paramname"><em>config</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Constructor</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramtype">array</td><td class="paramname">$config</td><td></td></tr>
</table>
</dd>
</dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#abf098ec8f68514927dacce23e5a30030">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="acc0350206ef7c623402bb19633ad3f6a"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::createAlter" ref="acc0350206ef7c623402bb19633ad3f6a" args="($config, $tableName)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::createAlter </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"><em>config</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">$ </td>
<td class="paramname"><em>tableName</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Generate Alter Table</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramtype">array</td><td class="paramname">$config</td><td></td></tr>
<tr><td class="paramtype">string</td><td class="paramname">$tableName</td><td></td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>string </dd></dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#a51b9a8196dcbef50547417d4fe8a0666">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<a class="anchor" id="a2efd82563860bf45fc07fbeb4d67b056"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::createTriggerSql" ref="a2efd82563860bf45fc07fbeb4d67b056" args="($config)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::createTriggerSql </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"><em>config</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Generate trigger sql</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramtype">array</td><td class="paramname">$config</td><td></td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>string </dd></dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#af58ff620be0d1f4cac9b865ca0000fcf">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<a class="anchor" id="a18ccca4e55a874ed85acd00506f4fff2"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::dropTable" ref="a18ccca4e55a874ed85acd00506f4fff2" args="($tableName)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::dropTable </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"><em>tableName</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Drop table</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramtype">string</td><td class="paramname">$tableName</td><td></td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>number </dd></dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#a95bec76ffdfe365cc68a682724443488">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<a class="anchor" id="afb0b32f718a3a499955444966929997b"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::dropTrigger" ref="afb0b32f718a3a499955444966929997b" args="($triggerName)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::dropTrigger </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"><em>triggerName</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Drop trigger</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramtype">string</td><td class="paramname">$triggerName</td><td></td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>number </dd></dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#a9a98e8e32ececd6cc3b101d5cc87fa4f">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<a class="anchor" id="a4e19047119e11123e47f8c8c14e0c665"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::execute" ref="a4e19047119e11123e47f8c8c14e0c665" args="($sql)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::execute </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"><em>sql</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Execute sql query</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramtype">string</td><td class="paramname">$sql</td><td></td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>integer </dd></dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#a279036935ed06d1cd41c4ec1d8b107cc">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<a class="anchor" id="ad60b6d7e34fba4e763132e47134b35e1"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::fetchData" ref="ad60b6d7e34fba4e763132e47134b35e1" args="($tableName)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::fetchData </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"><em>tableName</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Fetch all data from table</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>array </dd></dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#a76d3e3c3e80fee76c7057724a55a8d58">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<a class="anchor" id="a6df405111c98ca40324423f8981d7974"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::getTableByTrigger" ref="a6df405111c98ca40324423f8981d7974" args="($triggerName)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::getTableByTrigger </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"><em>triggerName</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Get table name by trigger name</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>string </dd></dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#a1bb1fb6762c987d2bdcd243c37875a54">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<a class="anchor" id="a84b87f76dc8ebc123d42dda7393e0cb9"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::getTableList" ref="a84b87f76dc8ebc123d42dda7393e0cb9" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::getTableList </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Get tables list</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>array </dd></dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#ab6a45a23420b3f1e5817fbe287c53842">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<a class="anchor" id="a686c3e752907a09cc1d87fce2d2bb101"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::getTriggerList" ref="a686c3e752907a09cc1d87fce2d2bb101" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::getTriggerList </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Get triggers list</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>array </dd></dl>
</div>
</div>
<a class="anchor" id="ac1cb4888b127b104ed231feae87d3056"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::hasTable" ref="ac1cb4888b127b104ed231feae87d3056" args="($tableName)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::hasTable </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"><em>tableName</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Is db table exists</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>boolen </dd></dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#aceee5101dd14398aa51b7f3abfe88306">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<a class="anchor" id="aa8f4119b6cc6cf5bfd0d97d45a849d9d"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::hasTrigger" ref="aa8f4119b6cc6cf5bfd0d97d45a849d9d" args="($triggerName)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::hasTrigger </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"><em>triggerName</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Is db trigger exists</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>boolen </dd></dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#a7c89b938e8554a37e1244207cb75b3ff">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<a class="anchor" id="ad535c5d4d074383feb578fab1e71d2e7"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::insert" ref="ad535c5d4d074383feb578fab1e71d2e7" args="($data, $tableName)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::insert </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"><em>data</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">$ </td>
<td class="paramname"><em>tableName</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Push data to db table</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramtype">boolen</td><td class="paramname">$force</td><td></td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>boolen </dd></dl>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname">Exception</td><td></td></tr>
</table>
</dd>
</dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#a5f9f2976276f71419539cb1da154f5de">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<a class="anchor" id="abe0d20fb62067de68fb354adc3eb7e8a"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::isEmpty" ref="abe0d20fb62067de68fb354adc3eb7e8a" args="($tableName)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::isEmpty </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"><em>tableName</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Is db table empty</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramtype">string</td><td class="paramname">$tableName</td><td></td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>boolean </dd></dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#ab8b4ba488780a70e219b04cb893549df">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<a class="anchor" id="a06dfb3597de81841661535373ce06e0d"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::merge" ref="a06dfb3597de81841661535373ce06e0d" args="($data, $tableName)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::merge </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"><em>data</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">$ </td>
<td class="paramname"><em>tableName</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Merge data to db table</p>
<dl><dt><b>Exceptions:</b></dt><dd>
<table class="exception">
<tr><td class="paramname">Exception</td><td></td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>boolean </dd></dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#a8a92a7e594687733c08bacd9d4217521">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<a class="anchor" id="a683e550d89b21e02e4068993f30079fc"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::parseSchema" ref="a683e550d89b21e02e4068993f30079fc" args="($tableName)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::parseSchema </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"><em>tableName</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Parse schema</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>array </dd></dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#a1eeb0ab74018b405fdd42ba5c37adc2d">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<a class="anchor" id="acea54c81f65be6ea4eceb8dcf3b93659"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::parseTrigger" ref="acea54c81f65be6ea4eceb8dcf3b93659" args="($triggerName)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::parseTrigger </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"><em>triggerName</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Fetch db triggers</p>
<dl class="return"><dt><b>Returns:</b></dt><dd>string </dd></dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#acf8d25625a74af2fe9f31e4b621ef0f0">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<a class="anchor" id="a2cc0eb5ae7c4aa0b69a899e84040da83"></a><!-- doxytag: member="DbSync_DbAdapter_AdapterInterface::truncate" ref="a2cc0eb5ae7c4aa0b69a899e84040da83" args="($tableName)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">DbSync_DbAdapter_AdapterInterface::truncate </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"><em>tableName</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Truncate table</p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramtype">string</td><td class="paramname">$tableName</td><td></td></tr>
</table>
</dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>number </dd></dl>
<p>Implemented in <a class="el" href="classDbSync__DbAdapter__Mysql.html#afb653194c5832eb8205adb4fe13a35db">DbSync_DbAdapter_Mysql</a>.</p>
</div>
</div>
<hr/>The documentation for this interface was generated from the following file:<ul>
<li>DbSync/DbAdapter/AdapterInterface.php</li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Thu Nov 3 2011 03:55:10 for DbSync by 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>
|
src/SFMT-src-1.5.1/html/globals_type.html | dc1394/kakegruitwin_MC | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>SFMT: Globals</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">SFMT
 <span id="projectnumber">1.4</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',false,false,'search.php','Search');
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div class="contents">
 <ul>
<li>sfmt_t
: <a class="el" href="_s_f_m_t_8h.html#a786e4a6ba82d3cb2f62241d6351d973f">SFMT.h</a>
</li>
<li>w128_t
: <a class="el" href="_s_f_m_t_8h.html#ab1ee414cba9ca0f33a3716e7a92c2b79">SFMT.h</a>
</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Feb 7 2017 13:45:36 for SFMT by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.13
</small></address>
</body>
</html>
|
doc/apiGuide/Qtc-Classes-Types.html | keera-studios/hsQt | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--Rendered using the Haskell Html Library v0.2-->
<HTML
><HEAD
><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"
><TITLE
>Qtc.Classes.Types</TITLE
><LINK HREF="haddock.css" REL="stylesheet" TYPE="text/css"
><SCRIPT SRC="haddock-util.js" TYPE="text/javascript"
></SCRIPT
><SCRIPT TYPE="text/javascript"
>window.onload = function () {setSynopsis("mini_Qtc-Classes-Types.html")};</SCRIPT
></HEAD
><BODY
><TABLE CLASS="vanilla" CELLSPACING="0" CELLPADDING="0"
><TR
><TD CLASS="topbar"
><TABLE CLASS="vanilla" CELLSPACING="0" CELLPADDING="0"
><TR
><TD
><IMG SRC="haskell_icon.gif" WIDTH="16" HEIGHT="16" ALT=" "
></TD
><TD CLASS="title"
></TD
><TD CLASS="topbut"
><A HREF="index.html"
>Contents</A
></TD
><TD CLASS="topbut"
><A HREF="doc-index.html"
>Index</A
></TD
></TR
></TABLE
></TD
></TR
><TR
><TD CLASS="modulebar"
><TABLE CLASS="vanilla" CELLSPACING="0" CELLPADDING="0"
><TR
><TD
><FONT SIZE="6"
>Qtc.Classes.Types</FONT
></TD
></TR
></TABLE
></TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="section1"
>Documentation</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>data</SPAN
> <A NAME="t:Object"
><A NAME="t%3AObject"
></A
></A
><B
>Object</B
> a </TD
></TR
><TR
><TD CLASS="body"
><TABLE CLASS="vanilla" CELLSPACING="0" CELLPADDING="0"
><TR
><TD CLASS="section4"
>Constructors</TD
></TR
><TR
><TD CLASS="body"
><TABLE CLASS="vanilla" CELLSPACING="1" CELLPADDING="0"
><TR
><TD CLASS="arg"
><A NAME="v:Object"
><A NAME="v%3AObject"
></A
></A
><B
>Object</B
> !(ForeignPtr a)</TD
><TD CLASS="rdoc"
></TD
></TR
></TABLE
></TD
></TR
><TR
><TD CLASS="section4"
><IMG SRC="minus.gif" CLASS="coll" ONCLICK="toggle(this,'i:Object')" ALT="show/hide"
> Instances</TD
></TR
><TR
><TD CLASS="body"
><DIV ID="i:Object" STYLE="display:block;"
><TABLE CLASS="vanilla" CELLSPACING="1" CELLPADDING="0"
><TR
><TD CLASS="decl"
>Eq (<A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a)</TD
></TR
><TR
><TD CLASS="decl"
>Ord (<A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a)</TD
></TR
><TR
><TD CLASS="decl"
>Show (<A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a)</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Qtc-Core-Base.html#t%3AQes"
>Qes</A
> (<A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> c)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTimeLine (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTimeLine"
>QTimeLine</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTimeLine"
>QTimeLine</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTimer (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTimer"
>QTimer</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTimer"
>QTimer</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTranslator (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTranslator"
>QTranslator</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTranslator"
>QTranslator</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMimeData (<A HREF="Qtc-ClassTypes-Core.html#t%3AQMimeData"
>QMimeData</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQMimeData"
>QMimeData</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QEventLoop (<A HREF="Qtc-ClassTypes-Core.html#t%3AQEventLoop"
>QEventLoop</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQEventLoop"
>QEventLoop</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFile (<A HREF="Qtc-ClassTypes-Core.html#t%3AQFile"
>QFile</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQFile"
>QFile</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFileOpenEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQFileOpenEvent"
>QFileOpenEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQFileOpenEvent"
>QFileOpenEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QChildEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQChildEvent"
>QChildEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQChildEvent"
>QChildEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDynamicPropertyChangeEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDynamicPropertyChangeEvent"
>QDynamicPropertyChangeEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDynamicPropertyChangeEvent"
>QDynamicPropertyChangeEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTimerEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTimerEvent"
>QTimerEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTimerEvent"
>QTimerEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractListModel (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractListModel"
>QAbstractListModel</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractListModel"
>QAbstractListModel</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractTableModel (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractTableModel"
>QAbstractTableModel</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractTableModel"
>QAbstractTableModel</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPolygon (<A HREF="Qtc-ClassTypes-Core.html#t%3AQPolygon"
>QPolygon</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQPolygon"
>QPolygon</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLine (<A HREF="Qtc-ClassTypes-Core.html#t%3AQLine"
>QLine</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQLine"
>QLine</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QRegExp (<A HREF="Qtc-ClassTypes-Core.html#t%3AQRegExp"
>QRegExp</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQRegExp"
>QRegExp</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QRect (<A HREF="Qtc-ClassTypes-Core.html#t%3AQRect"
>QRect</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQRect"
>QRect</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QVariant (<A HREF="Qtc-ClassTypes-Core.html#t%3AQVariant"
>QVariant</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQVariant"
>QVariant</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPolygonF (<A HREF="Qtc-ClassTypes-Core.html#t%3AQPolygonF"
>QPolygonF</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQPolygonF"
>QPolygonF</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractFileEngine (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractFileEngine"
>QAbstractFileEngine</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractFileEngine"
>QAbstractFileEngine</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QChar (<A HREF="Qtc-ClassTypes-Core.html#t%3AQChar"
>QChar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQChar"
>QChar</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDir (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDir"
>QDir</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDir"
>QDir</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLocale (<A HREF="Qtc-ClassTypes-Core.html#t%3AQLocale"
>QLocale</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQLocale"
>QLocale</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QUuid (<A HREF="Qtc-ClassTypes-Core.html#t%3AQUuid"
>QUuid</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQUuid"
>QUuid</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextStream (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTextStream"
>QTextStream</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTextStream"
>QTextStream</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMatrix (<A HREF="Qtc-ClassTypes-Core.html#t%3AQMatrix"
>QMatrix</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQMatrix"
>QMatrix</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPoint (<A HREF="Qtc-ClassTypes-Core.html#t%3AQPoint"
>QPoint</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQPoint"
>QPoint</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QModelIndex (<A HREF="Qtc-ClassTypes-Core.html#t%3AQModelIndex"
>QModelIndex</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQModelIndex"
>QModelIndex</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDataStream (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDataStream"
>QDataStream</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDataStream"
>QDataStream</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QBasicTimer (<A HREF="Qtc-ClassTypes-Core.html#t%3AQBasicTimer"
>QBasicTimer</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQBasicTimer"
>QBasicTimer</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSizeF (<A HREF="Qtc-ClassTypes-Core.html#t%3AQSizeF"
>QSizeF</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQSizeF"
>QSizeF</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QUrl (<A HREF="Qtc-ClassTypes-Core.html#t%3AQUrl"
>QUrl</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQUrl"
>QUrl</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDateTime (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDateTime"
>QDateTime</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDateTime"
>QDateTime</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QRectF (<A HREF="Qtc-ClassTypes-Core.html#t%3AQRectF"
>QRectF</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQRectF"
>QRectF</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSize (<A HREF="Qtc-ClassTypes-Core.html#t%3AQSize"
>QSize</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQSize"
>QSize</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPointF (<A HREF="Qtc-ClassTypes-Core.html#t%3AQPointF"
>QPointF</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQPointF"
>QPointF</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTime (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTime"
>QTime</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTime"
>QTime</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDate (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDate"
>QDate</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDate"
>QDate</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFileInfo (<A HREF="Qtc-ClassTypes-Core.html#t%3AQFileInfo"
>QFileInfo</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQFileInfo"
>QFileInfo</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_Qt (<A HREF="Qtc-ClassTypes-Core.html#t%3AQt"
>Qt</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQt"
>Qt</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLineF (<A HREF="Qtc-ClassTypes-Core.html#t%3AQLineF"
>QLineF</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQLineF"
>QLineF</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextCodec (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTextCodec"
>QTextCodec</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTextCodec"
>QTextCodec</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QIODevice (<A HREF="Qtc-ClassTypes-Core.html#t%3AQFile"
>QFile</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQIODevice"
>QIODevice</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QIODevice (<A HREF="Qtc-ClassTypes-Core.html#t%3AQIODevice"
>QIODevice</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQIODevice"
>QIODevice</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemModel (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractListModel"
>QAbstractListModel</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractItemModel"
>QAbstractItemModel</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemModel (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractTableModel"
>QAbstractTableModel</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractItemModel"
>QAbstractItemModel</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemModel (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractItemModel"
>QAbstractItemModel</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractItemModel"
>QAbstractItemModel</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQFileOpenEvent"
>QFileOpenEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQEvent"
>QEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQChildEvent"
>QChildEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQEvent"
>QEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDynamicPropertyChangeEvent"
>QDynamicPropertyChangeEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQEvent"
>QEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTimerEvent"
>QTimerEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQEvent"
>QEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQEvent"
>QEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQEvent"
>QEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTimeLine"
>QTimeLine</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQObject"
>QObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTimer"
>QTimer</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQObject"
>QObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQCoreApplication"
>QCoreApplication</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQObject"
>QObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTranslator"
>QTranslator</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQObject"
>QObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQMimeData"
>QMimeData</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQObject"
>QObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQEventLoop"
>QEventLoop</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQObject"
>QObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQFile"
>QFile</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQObject"
>QObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractListModel"
>QAbstractListModel</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQObject"
>QObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractTableModel"
>QAbstractTableModel</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQObject"
>QObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQIODevice"
>QIODevice</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQObject"
>QObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractItemModel"
>QAbstractItemModel</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQObject"
>QObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQObject"
>QObject</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Core.html#t%3AQObject"
>QObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QToolBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolBar"
>QToolBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolBar"
>QToolBar</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGroupBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGroupBox"
>QGroupBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGroupBox"
>QGroupBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTabBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTabBar"
>QTabBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTabBar"
>QTabBar</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStatusBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStatusBar"
>QStatusBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStatusBar"
>QStatusBar</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSizeGrip (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSizeGrip"
>QSizeGrip</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSizeGrip"
>QSizeGrip</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDockWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDockWidget"
>QDockWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDockWidget"
>QDockWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMenuBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMenuBar"
>QMenuBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMenuBar"
>QMenuBar</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QRubberBand (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRubberBand"
>QRubberBand</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRubberBand"
>QRubberBand</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialogButtonBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialogButtonBox"
>QDialogButtonBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialogButtonBox"
>QDialogButtonBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QProgressBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQProgressBar"
>QProgressBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQProgressBar"
>QProgressBar</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTabWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTabWidget"
>QTabWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTabWidget"
>QTabWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSplashScreen (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplashScreen"
>QSplashScreen</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplashScreen"
>QSplashScreen</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFocusFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFocusFrame"
>QFocusFrame</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFocusFrame"
>QFocusFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMainWindow (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMainWindow"
>QMainWindow</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMainWindow"
>QMainWindow</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSplitterHandle (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplitterHandle"
>QSplitterHandle</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplitterHandle"
>QSplitterHandle</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDesktopWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDesktopWidget"
>QDesktopWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDesktopWidget"
>QDesktopWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLineEdit (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLineEdit"
>QLineEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLineEdit"
>QLineEdit</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QCalendarWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCalendarWidget"
>QCalendarWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCalendarWidget"
>QCalendarWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMenu (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMenu"
>QMenu</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMenu"
>QMenu</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDoubleValidator (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDoubleValidator"
>QDoubleValidator</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDoubleValidator"
>QDoubleValidator</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QIntValidator (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIntValidator"
>QIntValidator</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIntValidator"
>QIntValidator</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QRegExpValidator (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRegExpValidator"
>QRegExpValidator</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRegExpValidator"
>QRegExpValidator</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTreeWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeWidget"
>QTreeWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeWidget"
>QTreeWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextTableFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTableFormat"
>QTextTableFormat</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTableFormat"
>QTextTableFormat</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextTable (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTable"
>QTextTable</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTable"
>QTextTable</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextListFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextListFormat"
>QTextListFormat</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextListFormat"
>QTextListFormat</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextBlockFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlockFormat"
>QTextBlockFormat</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlockFormat"
>QTextBlockFormat</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextBrowser (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBrowser"
>QTextBrowser</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBrowser"
>QTextBrowser</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextImageFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextImageFormat"
>QTextImageFormat</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextImageFormat"
>QTextImageFormat</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextList (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextList"
>QTextList</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextList"
>QTextList</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTableWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidget"
>QTableWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidget"
>QTableWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionViewItemV3 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV3"
>QStyleOptionViewItemV3</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV3"
>QStyleOptionViewItemV3</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionToolBoxV2 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBoxV2"
>QStyleOptionToolBoxV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBoxV2"
>QStyleOptionToolBoxV2</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionTabV2 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabV2"
>QStyleOptionTabV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabV2"
>QStyleOptionTabV2</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionProgressBarV2 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionProgressBarV2"
>QStyleOptionProgressBarV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionProgressBarV2"
>QStyleOptionProgressBarV2</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionFrameV2 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFrameV2"
>QStyleOptionFrameV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFrameV2"
>QStyleOptionFrameV2</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionDockWidgetV2 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionDockWidgetV2"
>QStyleOptionDockWidgetV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionDockWidgetV2"
>QStyleOptionDockWidgetV2</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionSizeGrip (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSizeGrip"
>QStyleOptionSizeGrip</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSizeGrip"
>QStyleOptionSizeGrip</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComboBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComboBox"
>QStyleOptionComboBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComboBox"
>QStyleOptionComboBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSpinBox"
>QStyleOptionSpinBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSpinBox"
>QStyleOptionSpinBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionGroupBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionGroupBox"
>QStyleOptionGroupBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionGroupBox"
>QStyleOptionGroupBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionTitleBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTitleBar"
>QStyleOptionTitleBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTitleBar"
>QStyleOptionTitleBar</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionSlider (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSlider"
>QStyleOptionSlider</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSlider"
>QStyleOptionSlider</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionToolButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolButton"
>QStyleOptionToolButton</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolButton"
>QStyleOptionToolButton</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionButton"
>QStyleOptionButton</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionButton"
>QStyleOptionButton</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionMenuItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionMenuItem"
>QStyleOptionMenuItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionMenuItem"
>QStyleOptionMenuItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionTabWidgetFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabWidgetFrame"
>QStyleOptionTabWidgetFrame</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabWidgetFrame"
>QStyleOptionTabWidgetFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionFocusRect (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFocusRect"
>QStyleOptionFocusRect</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFocusRect"
>QStyleOptionFocusRect</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionTabBarBase (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabBarBase"
>QStyleOptionTabBarBase</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabBarBase"
>QStyleOptionTabBarBase</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionHeader (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionHeader"
>QStyleOptionHeader</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionHeader"
>QStyleOptionHeader</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionToolBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBar"
>QStyleOptionToolBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBar"
>QStyleOptionToolBar</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionGraphicsItem"
>QStyleOptionGraphicsItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionGraphicsItem"
>QStyleOptionGraphicsItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionRubberBand (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionRubberBand"
>QStyleOptionRubberBand</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionRubberBand"
>QStyleOptionRubberBand</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QBitmap (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBitmap"
>QBitmap</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBitmap"
>QBitmap</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QImage (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQImage"
>QImage</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQImage"
>QImage</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPrinter (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPrinter"
>QPrinter</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPrinter"
>QPrinter</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPicture (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPicture"
>QPicture</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPicture"
>QPicture</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QItemSelectionModel (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQItemSelectionModel"
>QItemSelectionModel</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQItemSelectionModel"
>QItemSelectionModel</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QActionGroup (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQActionGroup"
>QActionGroup</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQActionGroup"
>QActionGroup</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsTextItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsTextItem"
>QGraphicsTextItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsTextItem"
>QGraphicsTextItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QUndoGroup (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoGroup"
>QUndoGroup</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoGroup"
>QUndoGroup</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsScene (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsScene"
>QGraphicsScene</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsScene"
>QGraphicsScene</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QClipboard (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQClipboard"
>QClipboard</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQClipboard"
>QClipboard</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSystemTrayIcon (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSystemTrayIcon"
>QSystemTrayIcon</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSystemTrayIcon"
>QSystemTrayIcon</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDataWidgetMapper (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDataWidgetMapper"
>QDataWidgetMapper</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDataWidgetMapper"
>QDataWidgetMapper</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractTextDocumentLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractTextDocumentLayout"
>QAbstractTextDocumentLayout</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractTextDocumentLayout"
>QAbstractTextDocumentLayout</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QInputContext (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQInputContext"
>QInputContext</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQInputContext"
>QInputContext</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QUndoStack (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoStack"
>QUndoStack</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoStack"
>QUndoStack</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QCompleter (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCompleter"
>QCompleter</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCompleter"
>QCompleter</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSyntaxHighlighter (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSyntaxHighlighter"
>QSyntaxHighlighter</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSyntaxHighlighter"
>QSyntaxHighlighter</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemDelegate (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemDelegate"
>QAbstractItemDelegate</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemDelegate"
>QAbstractItemDelegate</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSound (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSound"
>QSound</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSound"
>QSound</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QShortcut (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQShortcut"
>QShortcut</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQShortcut"
>QShortcut</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDrag (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDrag"
>QDrag</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDrag"
>QDrag</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QButtonGroup (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQButtonGroup"
>QButtonGroup</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQButtonGroup"
>QButtonGroup</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAction (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAction"
>QAction</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAction"
>QAction</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMovie (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMovie"
>QMovie</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMovie"
>QMovie</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextDocument (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextDocument"
>QTextDocument</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextDocument"
>QTextDocument</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItemAnimation (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItemAnimation"
>QGraphicsItemAnimation</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItemAnimation"
>QGraphicsItemAnimation</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QUndoView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoView"
>QUndoView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoView"
>QUndoView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QListWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListWidget"
>QListWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListWidget"
>QListWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSpacerItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSpacerItem"
>QSpacerItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSpacerItem"
>QSpacerItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStackedLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStackedLayout"
>QStackedLayout</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStackedLayout"
>QStackedLayout</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGridLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGridLayout"
>QGridLayout</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGridLayout"
>QGridLayout</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QContextMenuEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQContextMenuEvent"
>QContextMenuEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQContextMenuEvent"
>QContextMenuEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTabletEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTabletEvent"
>QTabletEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTabletEvent"
>QTabletEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWheelEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWheelEvent"
>QWheelEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWheelEvent"
>QWheelEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QKeyEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQKeyEvent"
>QKeyEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQKeyEvent"
>QKeyEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMouseEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMouseEvent"
>QMouseEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMouseEvent"
>QMouseEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QIconEngineV2 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIconEngineV2"
>QIconEngineV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIconEngineV2"
>QIconEngineV2</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneWheelEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneWheelEvent"
>QGraphicsSceneWheelEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneWheelEvent"
>QGraphicsSceneWheelEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneDragDropEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneDragDropEvent"
>QGraphicsSceneDragDropEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneDragDropEvent"
>QGraphicsSceneDragDropEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneMouseEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneMouseEvent"
>QGraphicsSceneMouseEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneMouseEvent"
>QGraphicsSceneMouseEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneContextMenuEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneContextMenuEvent"
>QGraphicsSceneContextMenuEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneContextMenuEvent"
>QGraphicsSceneContextMenuEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneHoverEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneHoverEvent"
>QGraphicsSceneHoverEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneHoverEvent"
>QGraphicsSceneHoverEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneHelpEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneHelpEvent"
>QGraphicsSceneHelpEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneHelpEvent"
>QGraphicsSceneHelpEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItemGroup (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItemGroup"
>QGraphicsItemGroup</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItemGroup"
>QGraphicsItemGroup</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsPixmapItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPixmapItem"
>QGraphicsPixmapItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPixmapItem"
>QGraphicsPixmapItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsLineItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsLineItem"
>QGraphicsLineItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsLineItem"
>QGraphicsLineItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QRadialGradient (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRadialGradient"
>QRadialGradient</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRadialGradient"
>QRadialGradient</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QConicalGradient (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQConicalGradient"
>QConicalGradient</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQConicalGradient"
>QConicalGradient</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLinearGradient (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLinearGradient"
>QLinearGradient</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLinearGradient"
>QLinearGradient</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSplitter (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplitter"
>QSplitter</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplitter"
>QSplitter</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStackedWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStackedWidget"
>QStackedWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStackedWidget"
>QStackedWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLCDNumber (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLCDNumber"
>QLCDNumber</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLCDNumber"
>QLCDNumber</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QToolBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolBox"
>QToolBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolBox"
>QToolBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLabel (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLabel"
>QLabel</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLabel"
>QLabel</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMoveEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMoveEvent"
>QMoveEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMoveEvent"
>QMoveEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QCloseEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCloseEvent"
>QCloseEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCloseEvent"
>QCloseEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QShortcutEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQShortcutEvent"
>QShortcutEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQShortcutEvent"
>QShortcutEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QHideEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHideEvent"
>QHideEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHideEvent"
>QHideEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDragLeaveEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDragLeaveEvent"
>QDragLeaveEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDragLeaveEvent"
>QDragLeaveEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStatusTipEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStatusTipEvent"
>QStatusTipEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStatusTipEvent"
>QStatusTipEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QHelpEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHelpEvent"
>QHelpEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHelpEvent"
>QHelpEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QResizeEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQResizeEvent"
>QResizeEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQResizeEvent"
>QResizeEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFocusEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFocusEvent"
>QFocusEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFocusEvent"
>QFocusEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QInputMethodEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQInputMethodEvent"
>QInputMethodEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQInputMethodEvent"
>QInputMethodEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QActionEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQActionEvent"
>QActionEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQActionEvent"
>QActionEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QShowEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQShowEvent"
>QShowEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQShowEvent"
>QShowEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QIconDragEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIconDragEvent"
>QIconDragEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIconDragEvent"
>QIconDragEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QToolBarChangeEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolBarChangeEvent"
>QToolBarChangeEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolBarChangeEvent"
>QToolBarChangeEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWhatsThisClickedEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWhatsThisClickedEvent"
>QWhatsThisClickedEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWhatsThisClickedEvent"
>QWhatsThisClickedEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QHoverEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHoverEvent"
>QHoverEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHoverEvent"
>QHoverEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPaintEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPaintEvent"
>QPaintEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPaintEvent"
>QPaintEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWindowStateChangeEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWindowStateChangeEvent"
>QWindowStateChangeEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWindowStateChangeEvent"
>QWindowStateChangeEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDragEnterEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDragEnterEvent"
>QDragEnterEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDragEnterEvent"
>QDragEnterEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QProgressDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQProgressDialog"
>QProgressDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQProgressDialog"
>QProgressDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFontDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontDialog"
>QFontDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontDialog"
>QFontDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFileDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFileDialog"
>QFileDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFileDialog"
>QFileDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QErrorMessage (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQErrorMessage"
>QErrorMessage</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQErrorMessage"
>QErrorMessage</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMessageBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMessageBox"
>QMessageBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMessageBox"
>QMessageBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractPageSetupDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractPageSetupDialog"
>QAbstractPageSetupDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractPageSetupDialog"
>QAbstractPageSetupDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QColorDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQColorDialog"
>QColorDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQColorDialog"
>QColorDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDateEdit (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateEdit"
>QDateEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateEdit"
>QDateEdit</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTimeEdit (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTimeEdit"
>QTimeEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTimeEdit"
>QTimeEdit</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWindowsStyle (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWindowsStyle"
>QWindowsStyle</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWindowsStyle"
>QWindowsStyle</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFontComboBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontComboBox"
>QFontComboBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontComboBox"
>QFontComboBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QHBoxLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHBoxLayout"
>QHBoxLayout</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHBoxLayout"
>QHBoxLayout</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QVBoxLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQVBoxLayout"
>QVBoxLayout</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQVBoxLayout"
>QVBoxLayout</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSpinBox"
>QSpinBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSpinBox"
>QSpinBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDoubleSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDoubleSpinBox"
>QDoubleSpinBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDoubleSpinBox"
>QDoubleSpinBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QScrollBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQScrollBar"
>QScrollBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQScrollBar"
>QScrollBar</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDial (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDial"
>QDial</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDial"
>QDial</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSlider (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSlider"
>QSlider</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSlider"
>QSlider</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQScrollArea"
>QScrollArea</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQScrollArea"
>QScrollArea</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsView"
>QGraphicsView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsView"
>QGraphicsView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPrintDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPrintDialog"
>QPrintDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPrintDialog"
>QPrintDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QHeaderView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHeaderView"
>QHeaderView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHeaderView"
>QHeaderView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractProxyModel (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractProxyModel"
>QAbstractProxyModel</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractProxyModel"
>QAbstractProxyModel</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStandardItemModel (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStandardItemModel"
>QStandardItemModel</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStandardItemModel"
>QStandardItemModel</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDirModel (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDirModel"
>QDirModel</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDirModel"
>QDirModel</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsPolygonItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPolygonItem"
>QGraphicsPolygonItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPolygonItem"
>QGraphicsPolygonItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsPathItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPathItem"
>QGraphicsPathItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPathItem"
>QGraphicsPathItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsRectItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsRectItem"
>QGraphicsRectItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsRectItem"
>QGraphicsRectItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSimpleTextItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSimpleTextItem"
>QGraphicsSimpleTextItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSimpleTextItem"
>QGraphicsSimpleTextItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsEllipseItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsEllipseItem"
>QGraphicsEllipseItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsEllipseItem"
>QGraphicsEllipseItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QToolButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolButton"
>QToolButton</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolButton"
>QToolButton</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QCheckBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCheckBox"
>QCheckBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCheckBox"
>QCheckBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QRadioButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRadioButton"
>QRadioButton</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRadioButton"
>QRadioButton</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPushButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPushButton"
>QPushButton</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPushButton"
>QPushButton</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFontMetricsF (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontMetricsF"
>QFontMetricsF</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontMetricsF"
>QFontMetricsF</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextLayout"
>QTextLayout</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextLayout"
>QTextLayout</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFont (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFont"
>QFont</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFont"
>QFont</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPalette (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPalette"
>QPalette</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPalette"
>QPalette</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextLength (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextLength"
>QTextLength</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextLength"
>QTextLength</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStandardItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStandardItem"
>QStandardItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStandardItem"
>QStandardItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTreeWidgetItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeWidgetItem"
>QTreeWidgetItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeWidgetItem"
>QTreeWidgetItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QKeySequence (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQKeySequence"
>QKeySequence</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQKeySequence"
>QKeySequence</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPaintEngine (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPaintEngine"
>QPaintEngine</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPaintEngine"
>QPaintEngine</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QColormap (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQColormap"
>QColormap</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQColormap"
>QColormap</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextLine (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextLine"
>QTextLine</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextLine"
>QTextLine</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QCursor (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCursor"
>QCursor</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCursor"
>QCursor</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFontDatabase (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontDatabase"
>QFontDatabase</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontDatabase"
>QFontDatabase</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPainter (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPainter"
>QPainter</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPainter"
>QPainter</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextDocumentFragment (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextDocumentFragment"
>QTextDocumentFragment</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextDocumentFragment"
>QTextDocumentFragment</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTableWidgetSelectionRange (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidgetSelectionRange"
>QTableWidgetSelectionRange</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidgetSelectionRange"
>QTableWidgetSelectionRange</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextLayout__FormatRange (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextLayout__FormatRange"
>QTextLayout__FormatRange</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextLayout__FormatRange"
>QTextLayout__FormatRange</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QColor (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQColor"
>QColor</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQColor"
>QColor</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QIcon (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIcon"
>QIcon</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIcon"
>QIcon</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextBlock (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlock"
>QTextBlock</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlock"
>QTextBlock</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QRegion (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRegion"
>QRegion</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRegion"
>QRegion</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QUndoCommand (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoCommand"
>QUndoCommand</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoCommand"
>QUndoCommand</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QToolTip (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolTip"
>QToolTip</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolTip"
>QToolTip</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QItemSelection (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQItemSelection"
>QItemSelection</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQItemSelection"
>QItemSelection</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QListWidgetItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListWidgetItem"
>QListWidgetItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListWidgetItem"
>QListWidgetItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPen (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPen"
>QPen</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPen"
>QPen</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFontMetrics (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontMetrics"
>QFontMetrics</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontMetrics"
>QFontMetrics</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextTableCell (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTableCell"
>QTextTableCell</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTableCell"
>QTextTableCell</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFragment (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFragment"
>QTextFragment</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFragment"
>QTextFragment</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextCursor (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextCursor"
>QTextCursor</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextCursor"
>QTextCursor</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QBrush (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBrush"
>QBrush</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBrush"
>QBrush</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSizePolicy (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSizePolicy"
>QSizePolicy</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSizePolicy"
>QSizePolicy</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFontInfo (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontInfo"
>QFontInfo</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontInfo"
>QFontInfo</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPixmapCache (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPixmapCache"
>QPixmapCache</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPixmapCache"
>QPixmapCache</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleHintReturn (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleHintReturn"
>QStyleHintReturn</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleHintReturn"
>QStyleHintReturn</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextBlockUserData (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlockUserData"
>QTextBlockUserData</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlockUserData"
>QTextBlockUserData</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPainterPath (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPainterPath"
>QPainterPath</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPainterPath"
>QPainterPath</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTableWidgetItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidgetItem"
>QTableWidgetItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidgetItem"
>QTableWidgetItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFrameLayoutData (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFrameLayoutData"
>QTextFrameLayoutData</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFrameLayoutData"
>QTextFrameLayoutData</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextOption"
>QTextOption</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextOption"
>QTextOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QComboBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontComboBox"
>QFontComboBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQComboBox"
>QComboBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QComboBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQComboBox"
>QComboBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQComboBox"
>QComboBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTable"
>QTextTable</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFrame"
>QTextFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFrame"
>QTextFrame</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFrame"
>QTextFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextBlockGroup (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextList"
>QTextList</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlockGroup"
>QTextBlockGroup</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextBlockGroup (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlockGroup"
>QTextBlockGroup</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlockGroup"
>QTextBlockGroup</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextCharFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextImageFormat"
>QTextImageFormat</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextCharFormat"
>QTextCharFormat</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextCharFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextCharFormat"
>QTextCharFormat</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextCharFormat"
>QTextCharFormat</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFrameFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTableFormat"
>QTextTableFormat</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFrameFormat"
>QTextFrameFormat</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFrameFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFrameFormat"
>QTextFrameFormat</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFrameFormat"
>QTextFrameFormat</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionViewItemV2 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV3"
>QStyleOptionViewItemV3</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV2"
>QStyleOptionViewItemV2</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionViewItemV2 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV2"
>QStyleOptionViewItemV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV2"
>QStyleOptionViewItemV2</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionToolBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBoxV2"
>QStyleOptionToolBoxV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBox"
>QStyleOptionToolBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionToolBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBox"
>QStyleOptionToolBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBox"
>QStyleOptionToolBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionTab (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabV2"
>QStyleOptionTabV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTab"
>QStyleOptionTab</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionTab (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTab"
>QStyleOptionTab</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTab"
>QStyleOptionTab</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFrameV2"
>QStyleOptionFrameV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFrame"
>QStyleOptionFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFrame"
>QStyleOptionFrame</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFrame"
>QStyleOptionFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionDockWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionDockWidgetV2"
>QStyleOptionDockWidgetV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionDockWidget"
>QStyleOptionDockWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionDockWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionDockWidget"
>QStyleOptionDockWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionDockWidget"
>QStyleOptionDockWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionProgressBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionProgressBarV2"
>QStyleOptionProgressBarV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionProgressBar"
>QStyleOptionProgressBar</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionProgressBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionProgressBar"
>QStyleOptionProgressBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionProgressBar"
>QStyleOptionProgressBar</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QCommonStyle (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWindowsStyle"
>QWindowsStyle</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCommonStyle"
>QCommonStyle</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QCommonStyle (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCommonStyle"
>QCommonStyle</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCommonStyle"
>QCommonStyle</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPixmap (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBitmap"
>QBitmap</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPixmap"
>QPixmap</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPixmap (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPixmap"
>QPixmap</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPixmap"
>QPixmap</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDragMoveEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDragEnterEvent"
>QDragEnterEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDragMoveEvent"
>QDragMoveEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDragMoveEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDragMoveEvent"
>QDragMoveEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDragMoveEvent"
>QDragMoveEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractPrintDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPrintDialog"
>QPrintDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractPrintDialog"
>QAbstractPrintDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractPrintDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractPrintDialog"
>QAbstractPrintDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractPrintDialog"
>QAbstractPrintDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextEdit (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBrowser"
>QTextBrowser</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextEdit"
>QTextEdit</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextEdit (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextEdit"
>QTextEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextEdit"
>QTextEdit</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTableView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidget"
>QTableWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableView"
>QTableView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTableView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableView"
>QTableView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableView"
>QTableView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTreeView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeWidget"
>QTreeWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeView"
>QTreeView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTreeView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeView"
>QTreeView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeView"
>QTreeView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QIconEngine (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIconEngineV2"
>QIconEngineV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIconEngine"
>QIconEngine</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QIconEngine (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIconEngine"
>QIconEngine</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIconEngine"
>QIconEngine</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionViewItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV3"
>QStyleOptionViewItemV3</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItem"
>QStyleOptionViewItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionViewItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV2"
>QStyleOptionViewItemV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItem"
>QStyleOptionViewItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionViewItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItem"
>QStyleOptionViewItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItem"
>QStyleOptionViewItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyle (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWindowsStyle"
>QWindowsStyle</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyle"
>QStyle</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyle (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCommonStyle"
>QCommonStyle</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyle"
>QStyle</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyle (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyle"
>QStyle</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyle"
>QStyle</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QBoxLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHBoxLayout"
>QHBoxLayout</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBoxLayout"
>QBoxLayout</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QBoxLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQVBoxLayout"
>QVBoxLayout</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBoxLayout"
>QBoxLayout</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QBoxLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBoxLayout"
>QBoxLayout</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBoxLayout"
>QBoxLayout</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDropEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDragEnterEvent"
>QDragEnterEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDropEvent"
>QDropEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDropEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDragMoveEvent"
>QDragMoveEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDropEvent"
>QDropEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDropEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDropEvent"
>QDropEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDropEvent"
>QDropEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDateTimeEdit (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateEdit"
>QDateEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateTimeEdit"
>QDateTimeEdit</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDateTimeEdit (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTimeEdit"
>QTimeEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateTimeEdit"
>QDateTimeEdit</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDateTimeEdit (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateTimeEdit"
>QDateTimeEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateTimeEdit"
>QDateTimeEdit</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QListView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoView"
>QUndoView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListView"
>QListView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QListView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListWidget"
>QListWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListView"
>QListView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QListView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListView"
>QListView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListView"
>QListView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMimeSource (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMimeSource"
>QMimeSource</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMimeSource"
>QMimeSource</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSlider (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQScrollBar"
>QScrollBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSlider"
>QAbstractSlider</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSlider (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDial"
>QDial</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSlider"
>QAbstractSlider</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSlider (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSlider"
>QSlider</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSlider"
>QAbstractSlider</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSlider (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSlider"
>QAbstractSlider</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSlider"
>QAbstractSlider</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QValidator (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDoubleValidator"
>QDoubleValidator</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQValidator"
>QValidator</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QValidator (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIntValidator"
>QIntValidator</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQValidator"
>QValidator</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QValidator (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRegExpValidator"
>QRegExpValidator</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQValidator"
>QValidator</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QValidator (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQValidator"
>QValidator</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQValidator"
>QValidator</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGradient (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRadialGradient"
>QRadialGradient</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGradient"
>QGradient</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGradient (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQConicalGradient"
>QConicalGradient</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGradient"
>QGradient</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGradient (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLinearGradient"
>QLinearGradient</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGradient"
>QGradient</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGradient (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGradient"
>QGradient</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGradient"
>QGradient</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolButton"
>QToolButton</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractButton"
>QAbstractButton</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCheckBox"
>QCheckBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractButton"
>QAbstractButton</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRadioButton"
>QRadioButton</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractButton"
>QAbstractButton</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPushButton"
>QPushButton</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractButton"
>QAbstractButton</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractButton"
>QAbstractButton</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractButton"
>QAbstractButton</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextObject (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTable"
>QTextTable</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextObject"
>QTextObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextObject (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextList"
>QTextList</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextObject"
>QTextObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextObject (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFrame"
>QTextFrame</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextObject"
>QTextObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextObject (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlockGroup"
>QTextBlockGroup</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextObject"
>QTextObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextObject (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextObject"
>QTextObject</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextObject"
>QTextObject</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QInputEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQContextMenuEvent"
>QContextMenuEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQInputEvent"
>QInputEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QInputEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTabletEvent"
>QTabletEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQInputEvent"
>QInputEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QInputEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWheelEvent"
>QWheelEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQInputEvent"
>QInputEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QInputEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQKeyEvent"
>QKeyEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQInputEvent"
>QInputEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QInputEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMouseEvent"
>QMouseEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQInputEvent"
>QInputEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QInputEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQInputEvent"
>QInputEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQInputEvent"
>QInputEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateEdit"
>QDateEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSpinBox"
>QAbstractSpinBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTimeEdit"
>QTimeEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSpinBox"
>QAbstractSpinBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSpinBox"
>QSpinBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSpinBox"
>QAbstractSpinBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDoubleSpinBox"
>QDoubleSpinBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSpinBox"
>QAbstractSpinBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateTimeEdit"
>QDateTimeEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSpinBox"
>QAbstractSpinBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSpinBox"
>QAbstractSpinBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSpinBox"
>QAbstractSpinBox</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStackedLayout"
>QStackedLayout</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLayout"
>QLayout</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGridLayout"
>QGridLayout</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLayout"
>QLayout</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHBoxLayout"
>QHBoxLayout</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLayout"
>QLayout</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQVBoxLayout"
>QVBoxLayout</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLayout"
>QLayout</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBoxLayout"
>QBoxLayout</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLayout"
>QLayout</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLayout"
>QLayout</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLayout"
>QLayout</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractGraphicsShapeItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPolygonItem"
>QGraphicsPolygonItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractGraphicsShapeItem"
>QAbstractGraphicsShapeItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractGraphicsShapeItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPathItem"
>QGraphicsPathItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractGraphicsShapeItem"
>QAbstractGraphicsShapeItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractGraphicsShapeItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsRectItem"
>QGraphicsRectItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractGraphicsShapeItem"
>QAbstractGraphicsShapeItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractGraphicsShapeItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSimpleTextItem"
>QGraphicsSimpleTextItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractGraphicsShapeItem"
>QAbstractGraphicsShapeItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractGraphicsShapeItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsEllipseItem"
>QGraphicsEllipseItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractGraphicsShapeItem"
>QAbstractGraphicsShapeItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractGraphicsShapeItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractGraphicsShapeItem"
>QAbstractGraphicsShapeItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractGraphicsShapeItem"
>QAbstractGraphicsShapeItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneWheelEvent"
>QGraphicsSceneWheelEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneEvent"
>QGraphicsSceneEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneDragDropEvent"
>QGraphicsSceneDragDropEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneEvent"
>QGraphicsSceneEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneMouseEvent"
>QGraphicsSceneMouseEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneEvent"
>QGraphicsSceneEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneContextMenuEvent"
>QGraphicsSceneContextMenuEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneEvent"
>QGraphicsSceneEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneHoverEvent"
>QGraphicsSceneHoverEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneEvent"
>QGraphicsSceneEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneHelpEvent"
>QGraphicsSceneHelpEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneEvent"
>QGraphicsSceneEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneEvent"
>QGraphicsSceneEvent</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneEvent"
>QGraphicsSceneEvent</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTableFormat"
>QTextTableFormat</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFormat"
>QTextFormat</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextListFormat"
>QTextListFormat</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFormat"
>QTextFormat</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlockFormat"
>QTextBlockFormat</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFormat"
>QTextFormat</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextImageFormat"
>QTextImageFormat</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFormat"
>QTextFormat</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextCharFormat"
>QTextCharFormat</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFormat"
>QTextFormat</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFrameFormat"
>QTextFrameFormat</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFormat"
>QTextFormat</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFormat"
>QTextFormat</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFormat"
>QTextFormat</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLayoutItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSpacerItem"
>QSpacerItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLayoutItem"
>QLayoutItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLayoutItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLayoutItem"
>QLayoutItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLayoutItem"
>QLayoutItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComplex (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSizeGrip"
>QStyleOptionSizeGrip</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComplex"
>QStyleOptionComplex</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComplex (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComboBox"
>QStyleOptionComboBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComplex"
>QStyleOptionComplex</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComplex (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSpinBox"
>QStyleOptionSpinBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComplex"
>QStyleOptionComplex</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComplex (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionGroupBox"
>QStyleOptionGroupBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComplex"
>QStyleOptionComplex</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComplex (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTitleBar"
>QStyleOptionTitleBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComplex"
>QStyleOptionComplex</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComplex (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSlider"
>QStyleOptionSlider</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComplex"
>QStyleOptionComplex</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComplex (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolButton"
>QStyleOptionToolButton</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComplex"
>QStyleOptionComplex</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComplex (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComplex"
>QStyleOptionComplex</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComplex"
>QStyleOptionComplex</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeWidget"
>QTreeWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidget"
>QTableWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoView"
>QUndoView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListWidget"
>QListWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHeaderView"
>QHeaderView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableView"
>QTableView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeView"
>QTreeView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListView"
>QListView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQProgressDialog"
>QProgressDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialog"
>QDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontDialog"
>QFontDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialog"
>QDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFileDialog"
>QFileDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialog"
>QDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQErrorMessage"
>QErrorMessage</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialog"
>QDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMessageBox"
>QMessageBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialog"
>QDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractPageSetupDialog"
>QAbstractPageSetupDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialog"
>QDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQColorDialog"
>QColorDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialog"
>QDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPrintDialog"
>QPrintDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialog"
>QDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractPrintDialog"
>QAbstractPrintDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialog"
>QDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialog"
>QDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialog"
>QDialog</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItemGroup"
>QGraphicsItemGroup</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItem"
>QGraphicsItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPixmapItem"
>QGraphicsPixmapItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItem"
>QGraphicsItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsLineItem"
>QGraphicsLineItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItem"
>QGraphicsItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPolygonItem"
>QGraphicsPolygonItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItem"
>QGraphicsItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPathItem"
>QGraphicsPathItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItem"
>QGraphicsItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsRectItem"
>QGraphicsRectItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItem"
>QGraphicsItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSimpleTextItem"
>QGraphicsSimpleTextItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItem"
>QGraphicsItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsEllipseItem"
>QGraphicsEllipseItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItem"
>QGraphicsItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractGraphicsShapeItem"
>QAbstractGraphicsShapeItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItem"
>QGraphicsItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItem"
>QGraphicsItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItem"
>QGraphicsItem</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeWidget"
>QTreeWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBrowser"
>QTextBrowser</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidget"
>QTableWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoView"
>QUndoView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListWidget"
>QListWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQScrollArea"
>QScrollArea</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsView"
>QGraphicsView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHeaderView"
>QHeaderView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextEdit"
>QTextEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableView"
>QTableView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeView"
>QTreeView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListView"
>QListView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeWidget"
>QTreeWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBrowser"
>QTextBrowser</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidget"
>QTableWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoView"
>QUndoView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListWidget"
>QListWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplitter"
>QSplitter</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStackedWidget"
>QStackedWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLCDNumber"
>QLCDNumber</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolBox"
>QToolBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLabel"
>QLabel</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQScrollArea"
>QScrollArea</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsView"
>QGraphicsView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHeaderView"
>QHeaderView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextEdit"
>QTextEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableView"
>QTableView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeView"
>QTreeView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListView"
>QListView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV3"
>QStyleOptionViewItemV3</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBoxV2"
>QStyleOptionToolBoxV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabV2"
>QStyleOptionTabV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionProgressBarV2"
>QStyleOptionProgressBarV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFrameV2"
>QStyleOptionFrameV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionDockWidgetV2"
>QStyleOptionDockWidgetV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSizeGrip"
>QStyleOptionSizeGrip</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComboBox"
>QStyleOptionComboBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSpinBox"
>QStyleOptionSpinBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionGroupBox"
>QStyleOptionGroupBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTitleBar"
>QStyleOptionTitleBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSlider"
>QStyleOptionSlider</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolButton"
>QStyleOptionToolButton</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionButton"
>QStyleOptionButton</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionMenuItem"
>QStyleOptionMenuItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabWidgetFrame"
>QStyleOptionTabWidgetFrame</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFocusRect"
>QStyleOptionFocusRect</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabBarBase"
>QStyleOptionTabBarBase</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionHeader"
>QStyleOptionHeader</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBar"
>QStyleOptionToolBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionGraphicsItem"
>QStyleOptionGraphicsItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionRubberBand"
>QStyleOptionRubberBand</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV2"
>QStyleOptionViewItemV2</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBox"
>QStyleOptionToolBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTab"
>QStyleOptionTab</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFrame"
>QStyleOptionFrame</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionDockWidget"
>QStyleOptionDockWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionProgressBar"
>QStyleOptionProgressBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItem"
>QStyleOptionViewItem</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComplex"
>QStyleOptionComplex</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolBar"
>QToolBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGroupBox"
>QGroupBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTabBar"
>QTabBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStatusBar"
>QStatusBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSizeGrip"
>QSizeGrip</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDockWidget"
>QDockWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMenuBar"
>QMenuBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRubberBand"
>QRubberBand</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialogButtonBox"
>QDialogButtonBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQProgressBar"
>QProgressBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTabWidget"
>QTabWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplashScreen"
>QSplashScreen</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFocusFrame"
>QFocusFrame</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMainWindow"
>QMainWindow</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplitterHandle"
>QSplitterHandle</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDesktopWidget"
>QDesktopWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLineEdit"
>QLineEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCalendarWidget"
>QCalendarWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMenu"
>QMenu</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeWidget"
>QTreeWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBrowser"
>QTextBrowser</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidget"
>QTableWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoView"
>QUndoView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListWidget"
>QListWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplitter"
>QSplitter</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStackedWidget"
>QStackedWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLCDNumber"
>QLCDNumber</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolBox"
>QToolBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLabel"
>QLabel</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQProgressDialog"
>QProgressDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontDialog"
>QFontDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFileDialog"
>QFileDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQErrorMessage"
>QErrorMessage</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMessageBox"
>QMessageBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractPageSetupDialog"
>QAbstractPageSetupDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQColorDialog"
>QColorDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateEdit"
>QDateEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTimeEdit"
>QTimeEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontComboBox"
>QFontComboBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSpinBox"
>QSpinBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDoubleSpinBox"
>QDoubleSpinBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQScrollBar"
>QScrollBar</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDial"
>QDial</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSlider"
>QSlider</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQScrollArea"
>QScrollArea</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsView"
>QGraphicsView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPrintDialog"
>QPrintDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHeaderView"
>QHeaderView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolButton"
>QToolButton</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCheckBox"
>QCheckBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRadioButton"
>QRadioButton</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPushButton"
>QPushButton</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQComboBox"
>QComboBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractPrintDialog"
>QAbstractPrintDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextEdit"
>QTextEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableView"
>QTableView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeView"
>QTreeView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateTimeEdit"
>QDateTimeEdit</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListView"
>QListView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSlider"
>QAbstractSlider</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractButton"
>QAbstractButton</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSpinBox"
>QAbstractSpinBox</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialog"
>QDialog</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPaintDevice (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBitmap"
>QBitmap</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPaintDevice"
>QPaintDevice</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPaintDevice (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQImage"
>QImage</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPaintDevice"
>QPaintDevice</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPaintDevice (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPrinter"
>QPrinter</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPaintDevice"
>QPaintDevice</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPaintDevice (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPicture"
>QPicture</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPaintDevice"
>QPaintDevice</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPaintDevice (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPixmap"
>QPixmap</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPaintDevice"
>QPaintDevice</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPaintDevice (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPaintDevice"
>QPaintDevice</A
> ()) ([] (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPaintDevice"
>QPaintDevice</A
> ()))</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Qtc-Core-Base.html#t%3AQqpoints"
>Qqpoints</A
> (<A HREF="Qtc-ClassTypes-Core.html#t%3AQPolygon"
>QPolygon</A
> ()) (IO ([] <A HREF="Qth-ClassTypes-Core-Point.html#t%3APoint"
>Point</A
>))</TD
></TR
><TR
><TD CLASS="decl"
><A HREF="Qtc-Core-Base.html#t%3AQqpoints"
>Qqpoints</A
> (<A HREF="Qtc-ClassTypes-Core.html#t%3AQPolygonF"
>QPolygonF</A
> ()) (IO ([] <A HREF="Qth-ClassTypes-Core-Point.html#t%3APointF"
>PointF</A
>))</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTimeLine a r => QqCastList_QTimeLine (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTimeLine"
>QTimeLine</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTimer a r => QqCastList_QTimer (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTimer"
>QTimer</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTranslator a r => QqCastList_QTranslator (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTranslator"
>QTranslator</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMimeData a r => QqCastList_QMimeData (<A HREF="Qtc-ClassTypes-Core.html#t%3AQMimeData"
>QMimeData</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QEventLoop a r => QqCastList_QEventLoop (<A HREF="Qtc-ClassTypes-Core.html#t%3AQEventLoop"
>QEventLoop</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFile a r => QqCastList_QFile (<A HREF="Qtc-ClassTypes-Core.html#t%3AQFile"
>QFile</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFileOpenEvent a r => QqCastList_QFileOpenEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQFileOpenEvent"
>QFileOpenEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QChildEvent a r => QqCastList_QChildEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQChildEvent"
>QChildEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDynamicPropertyChangeEvent a r => QqCastList_QDynamicPropertyChangeEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDynamicPropertyChangeEvent"
>QDynamicPropertyChangeEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTimerEvent a r => QqCastList_QTimerEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTimerEvent"
>QTimerEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractListModel a r => QqCastList_QAbstractListModel (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractListModel"
>QAbstractListModel</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractTableModel a r => QqCastList_QAbstractTableModel (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractTableModel"
>QAbstractTableModel</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPolygon a r => QqCastList_QPolygon (<A HREF="Qtc-ClassTypes-Core.html#t%3AQPolygon"
>QPolygon</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLine a r => QqCastList_QLine (<A HREF="Qtc-ClassTypes-Core.html#t%3AQLine"
>QLine</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QRegExp a r => QqCastList_QRegExp (<A HREF="Qtc-ClassTypes-Core.html#t%3AQRegExp"
>QRegExp</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QRect a r => QqCastList_QRect (<A HREF="Qtc-ClassTypes-Core.html#t%3AQRect"
>QRect</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QVariant a r => QqCastList_QVariant (<A HREF="Qtc-ClassTypes-Core.html#t%3AQVariant"
>QVariant</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPolygonF a r => QqCastList_QPolygonF (<A HREF="Qtc-ClassTypes-Core.html#t%3AQPolygonF"
>QPolygonF</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractFileEngine a r => QqCastList_QAbstractFileEngine (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractFileEngine"
>QAbstractFileEngine</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QChar a r => QqCastList_QChar (<A HREF="Qtc-ClassTypes-Core.html#t%3AQChar"
>QChar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDir a r => QqCastList_QDir (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDir"
>QDir</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLocale a r => QqCastList_QLocale (<A HREF="Qtc-ClassTypes-Core.html#t%3AQLocale"
>QLocale</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QUuid a r => QqCastList_QUuid (<A HREF="Qtc-ClassTypes-Core.html#t%3AQUuid"
>QUuid</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextStream a r => QqCastList_QTextStream (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTextStream"
>QTextStream</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMatrix a r => QqCastList_QMatrix (<A HREF="Qtc-ClassTypes-Core.html#t%3AQMatrix"
>QMatrix</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPoint a r => QqCastList_QPoint (<A HREF="Qtc-ClassTypes-Core.html#t%3AQPoint"
>QPoint</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QModelIndex a r => QqCastList_QModelIndex (<A HREF="Qtc-ClassTypes-Core.html#t%3AQModelIndex"
>QModelIndex</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDataStream a r => QqCastList_QDataStream (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDataStream"
>QDataStream</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QBasicTimer a r => QqCastList_QBasicTimer (<A HREF="Qtc-ClassTypes-Core.html#t%3AQBasicTimer"
>QBasicTimer</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSizeF a r => QqCastList_QSizeF (<A HREF="Qtc-ClassTypes-Core.html#t%3AQSizeF"
>QSizeF</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QUrl a r => QqCastList_QUrl (<A HREF="Qtc-ClassTypes-Core.html#t%3AQUrl"
>QUrl</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDateTime a r => QqCastList_QDateTime (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDateTime"
>QDateTime</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QRectF a r => QqCastList_QRectF (<A HREF="Qtc-ClassTypes-Core.html#t%3AQRectF"
>QRectF</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSize a r => QqCastList_QSize (<A HREF="Qtc-ClassTypes-Core.html#t%3AQSize"
>QSize</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPointF a r => QqCastList_QPointF (<A HREF="Qtc-ClassTypes-Core.html#t%3AQPointF"
>QPointF</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTime a r => QqCastList_QTime (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTime"
>QTime</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDate a r => QqCastList_QDate (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDate"
>QDate</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFileInfo a r => QqCastList_QFileInfo (<A HREF="Qtc-ClassTypes-Core.html#t%3AQFileInfo"
>QFileInfo</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_Qt a r => QqCastList_Qt (<A HREF="Qtc-ClassTypes-Core.html#t%3AQt"
>Qt</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLineF a r => QqCastList_QLineF (<A HREF="Qtc-ClassTypes-Core.html#t%3AQLineF"
>QLineF</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextCodec a r => QqCastList_QTextCodec (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTextCodec"
>QTextCodec</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QIODevice a r => QqCastList_QIODevice (<A HREF="Qtc-ClassTypes-Core.html#t%3AQFile"
>QFile</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QIODevice a r => QqCastList_QIODevice (<A HREF="Qtc-ClassTypes-Core.html#t%3AQIODevice"
>QIODevice</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemModel a r => QqCastList_QAbstractItemModel (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractListModel"
>QAbstractListModel</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemModel a r => QqCastList_QAbstractItemModel (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractTableModel"
>QAbstractTableModel</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemModel a r => QqCastList_QAbstractItemModel (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractItemModel"
>QAbstractItemModel</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QEvent a r => QqCastList_QEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQFileOpenEvent"
>QFileOpenEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QEvent a r => QqCastList_QEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQChildEvent"
>QChildEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QEvent a r => QqCastList_QEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQDynamicPropertyChangeEvent"
>QDynamicPropertyChangeEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QEvent a r => QqCastList_QEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTimerEvent"
>QTimerEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QEvent a r => QqCastList_QEvent (<A HREF="Qtc-ClassTypes-Core.html#t%3AQEvent"
>QEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject a r => QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTimeLine"
>QTimeLine</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject a r => QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTimer"
>QTimer</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject a r => QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQCoreApplication"
>QCoreApplication</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject a r => QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQTranslator"
>QTranslator</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject a r => QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQMimeData"
>QMimeData</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject a r => QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQEventLoop"
>QEventLoop</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject a r => QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQFile"
>QFile</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject a r => QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractListModel"
>QAbstractListModel</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject a r => QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractTableModel"
>QAbstractTableModel</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject a r => QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQIODevice"
>QIODevice</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject a r => QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQAbstractItemModel"
>QAbstractItemModel</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QObject a r => QqCastList_QObject (<A HREF="Qtc-ClassTypes-Core.html#t%3AQObject"
>QObject</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QToolBar a r => QqCastList_QToolBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolBar"
>QToolBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGroupBox a r => QqCastList_QGroupBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGroupBox"
>QGroupBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTabBar a r => QqCastList_QTabBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTabBar"
>QTabBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStatusBar a r => QqCastList_QStatusBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStatusBar"
>QStatusBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSizeGrip a r => QqCastList_QSizeGrip (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSizeGrip"
>QSizeGrip</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDockWidget a r => QqCastList_QDockWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDockWidget"
>QDockWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMenuBar a r => QqCastList_QMenuBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMenuBar"
>QMenuBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QRubberBand a r => QqCastList_QRubberBand (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRubberBand"
>QRubberBand</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialogButtonBox a r => QqCastList_QDialogButtonBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialogButtonBox"
>QDialogButtonBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QProgressBar a r => QqCastList_QProgressBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQProgressBar"
>QProgressBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTabWidget a r => QqCastList_QTabWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTabWidget"
>QTabWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSplashScreen a r => QqCastList_QSplashScreen (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplashScreen"
>QSplashScreen</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFocusFrame a r => QqCastList_QFocusFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFocusFrame"
>QFocusFrame</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMainWindow a r => QqCastList_QMainWindow (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMainWindow"
>QMainWindow</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSplitterHandle a r => QqCastList_QSplitterHandle (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplitterHandle"
>QSplitterHandle</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDesktopWidget a r => QqCastList_QDesktopWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDesktopWidget"
>QDesktopWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLineEdit a r => QqCastList_QLineEdit (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLineEdit"
>QLineEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QCalendarWidget a r => QqCastList_QCalendarWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCalendarWidget"
>QCalendarWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMenu a r => QqCastList_QMenu (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMenu"
>QMenu</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDoubleValidator a r => QqCastList_QDoubleValidator (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDoubleValidator"
>QDoubleValidator</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QIntValidator a r => QqCastList_QIntValidator (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIntValidator"
>QIntValidator</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QRegExpValidator a r => QqCastList_QRegExpValidator (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRegExpValidator"
>QRegExpValidator</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTreeWidget a r => QqCastList_QTreeWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeWidget"
>QTreeWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextTableFormat a r => QqCastList_QTextTableFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTableFormat"
>QTextTableFormat</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextTable a r => QqCastList_QTextTable (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTable"
>QTextTable</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextListFormat a r => QqCastList_QTextListFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextListFormat"
>QTextListFormat</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextBlockFormat a r => QqCastList_QTextBlockFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlockFormat"
>QTextBlockFormat</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextBrowser a r => QqCastList_QTextBrowser (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBrowser"
>QTextBrowser</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextImageFormat a r => QqCastList_QTextImageFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextImageFormat"
>QTextImageFormat</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextList a r => QqCastList_QTextList (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextList"
>QTextList</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTableWidget a r => QqCastList_QTableWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidget"
>QTableWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionViewItemV3 a r => QqCastList_QStyleOptionViewItemV3 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV3"
>QStyleOptionViewItemV3</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionToolBoxV2 a r => QqCastList_QStyleOptionToolBoxV2 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBoxV2"
>QStyleOptionToolBoxV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionTabV2 a r => QqCastList_QStyleOptionTabV2 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabV2"
>QStyleOptionTabV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionProgressBarV2 a r => QqCastList_QStyleOptionProgressBarV2 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionProgressBarV2"
>QStyleOptionProgressBarV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionFrameV2 a r => QqCastList_QStyleOptionFrameV2 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFrameV2"
>QStyleOptionFrameV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionDockWidgetV2 a r => QqCastList_QStyleOptionDockWidgetV2 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionDockWidgetV2"
>QStyleOptionDockWidgetV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionSizeGrip a r => QqCastList_QStyleOptionSizeGrip (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSizeGrip"
>QStyleOptionSizeGrip</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComboBox a r => QqCastList_QStyleOptionComboBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComboBox"
>QStyleOptionComboBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionSpinBox a r => QqCastList_QStyleOptionSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSpinBox"
>QStyleOptionSpinBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionGroupBox a r => QqCastList_QStyleOptionGroupBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionGroupBox"
>QStyleOptionGroupBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionTitleBar a r => QqCastList_QStyleOptionTitleBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTitleBar"
>QStyleOptionTitleBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionSlider a r => QqCastList_QStyleOptionSlider (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSlider"
>QStyleOptionSlider</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionToolButton a r => QqCastList_QStyleOptionToolButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolButton"
>QStyleOptionToolButton</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionButton a r => QqCastList_QStyleOptionButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionButton"
>QStyleOptionButton</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionMenuItem a r => QqCastList_QStyleOptionMenuItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionMenuItem"
>QStyleOptionMenuItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionTabWidgetFrame a r => QqCastList_QStyleOptionTabWidgetFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabWidgetFrame"
>QStyleOptionTabWidgetFrame</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionFocusRect a r => QqCastList_QStyleOptionFocusRect (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFocusRect"
>QStyleOptionFocusRect</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionTabBarBase a r => QqCastList_QStyleOptionTabBarBase (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabBarBase"
>QStyleOptionTabBarBase</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionHeader a r => QqCastList_QStyleOptionHeader (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionHeader"
>QStyleOptionHeader</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionToolBar a r => QqCastList_QStyleOptionToolBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBar"
>QStyleOptionToolBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionGraphicsItem a r => QqCastList_QStyleOptionGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionGraphicsItem"
>QStyleOptionGraphicsItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionRubberBand a r => QqCastList_QStyleOptionRubberBand (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionRubberBand"
>QStyleOptionRubberBand</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QBitmap a r => QqCastList_QBitmap (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBitmap"
>QBitmap</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QImage a r => QqCastList_QImage (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQImage"
>QImage</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPrinter a r => QqCastList_QPrinter (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPrinter"
>QPrinter</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPicture a r => QqCastList_QPicture (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPicture"
>QPicture</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QItemSelectionModel a r => QqCastList_QItemSelectionModel (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQItemSelectionModel"
>QItemSelectionModel</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QActionGroup a r => QqCastList_QActionGroup (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQActionGroup"
>QActionGroup</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsTextItem a r => QqCastList_QGraphicsTextItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsTextItem"
>QGraphicsTextItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QUndoGroup a r => QqCastList_QUndoGroup (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoGroup"
>QUndoGroup</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsScene a r => QqCastList_QGraphicsScene (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsScene"
>QGraphicsScene</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QClipboard a r => QqCastList_QClipboard (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQClipboard"
>QClipboard</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSystemTrayIcon a r => QqCastList_QSystemTrayIcon (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSystemTrayIcon"
>QSystemTrayIcon</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDataWidgetMapper a r => QqCastList_QDataWidgetMapper (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDataWidgetMapper"
>QDataWidgetMapper</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractTextDocumentLayout a r => QqCastList_QAbstractTextDocumentLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractTextDocumentLayout"
>QAbstractTextDocumentLayout</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QInputContext a r => QqCastList_QInputContext (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQInputContext"
>QInputContext</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QUndoStack a r => QqCastList_QUndoStack (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoStack"
>QUndoStack</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QCompleter a r => QqCastList_QCompleter (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCompleter"
>QCompleter</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSyntaxHighlighter a r => QqCastList_QSyntaxHighlighter (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSyntaxHighlighter"
>QSyntaxHighlighter</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemDelegate a r => QqCastList_QAbstractItemDelegate (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemDelegate"
>QAbstractItemDelegate</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSound a r => QqCastList_QSound (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSound"
>QSound</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QShortcut a r => QqCastList_QShortcut (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQShortcut"
>QShortcut</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDrag a r => QqCastList_QDrag (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDrag"
>QDrag</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QButtonGroup a r => QqCastList_QButtonGroup (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQButtonGroup"
>QButtonGroup</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAction a r => QqCastList_QAction (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAction"
>QAction</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMovie a r => QqCastList_QMovie (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMovie"
>QMovie</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextDocument a r => QqCastList_QTextDocument (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextDocument"
>QTextDocument</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItemAnimation a r => QqCastList_QGraphicsItemAnimation (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItemAnimation"
>QGraphicsItemAnimation</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QUndoView a r => QqCastList_QUndoView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoView"
>QUndoView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QListWidget a r => QqCastList_QListWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListWidget"
>QListWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSpacerItem a r => QqCastList_QSpacerItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSpacerItem"
>QSpacerItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStackedLayout a r => QqCastList_QStackedLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStackedLayout"
>QStackedLayout</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGridLayout a r => QqCastList_QGridLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGridLayout"
>QGridLayout</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QContextMenuEvent a r => QqCastList_QContextMenuEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQContextMenuEvent"
>QContextMenuEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTabletEvent a r => QqCastList_QTabletEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTabletEvent"
>QTabletEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWheelEvent a r => QqCastList_QWheelEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWheelEvent"
>QWheelEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QKeyEvent a r => QqCastList_QKeyEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQKeyEvent"
>QKeyEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMouseEvent a r => QqCastList_QMouseEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMouseEvent"
>QMouseEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QIconEngineV2 a r => QqCastList_QIconEngineV2 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIconEngineV2"
>QIconEngineV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneWheelEvent a r => QqCastList_QGraphicsSceneWheelEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneWheelEvent"
>QGraphicsSceneWheelEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneDragDropEvent a r => QqCastList_QGraphicsSceneDragDropEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneDragDropEvent"
>QGraphicsSceneDragDropEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneMouseEvent a r => QqCastList_QGraphicsSceneMouseEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneMouseEvent"
>QGraphicsSceneMouseEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneContextMenuEvent a r => QqCastList_QGraphicsSceneContextMenuEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneContextMenuEvent"
>QGraphicsSceneContextMenuEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneHoverEvent a r => QqCastList_QGraphicsSceneHoverEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneHoverEvent"
>QGraphicsSceneHoverEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneHelpEvent a r => QqCastList_QGraphicsSceneHelpEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneHelpEvent"
>QGraphicsSceneHelpEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItemGroup a r => QqCastList_QGraphicsItemGroup (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItemGroup"
>QGraphicsItemGroup</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsPixmapItem a r => QqCastList_QGraphicsPixmapItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPixmapItem"
>QGraphicsPixmapItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsLineItem a r => QqCastList_QGraphicsLineItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsLineItem"
>QGraphicsLineItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QRadialGradient a r => QqCastList_QRadialGradient (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRadialGradient"
>QRadialGradient</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QConicalGradient a r => QqCastList_QConicalGradient (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQConicalGradient"
>QConicalGradient</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLinearGradient a r => QqCastList_QLinearGradient (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLinearGradient"
>QLinearGradient</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSplitter a r => QqCastList_QSplitter (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplitter"
>QSplitter</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStackedWidget a r => QqCastList_QStackedWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStackedWidget"
>QStackedWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLCDNumber a r => QqCastList_QLCDNumber (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLCDNumber"
>QLCDNumber</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QToolBox a r => QqCastList_QToolBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolBox"
>QToolBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLabel a r => QqCastList_QLabel (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLabel"
>QLabel</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMoveEvent a r => QqCastList_QMoveEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMoveEvent"
>QMoveEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QCloseEvent a r => QqCastList_QCloseEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCloseEvent"
>QCloseEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QShortcutEvent a r => QqCastList_QShortcutEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQShortcutEvent"
>QShortcutEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QHideEvent a r => QqCastList_QHideEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHideEvent"
>QHideEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDragLeaveEvent a r => QqCastList_QDragLeaveEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDragLeaveEvent"
>QDragLeaveEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStatusTipEvent a r => QqCastList_QStatusTipEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStatusTipEvent"
>QStatusTipEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QHelpEvent a r => QqCastList_QHelpEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHelpEvent"
>QHelpEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QResizeEvent a r => QqCastList_QResizeEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQResizeEvent"
>QResizeEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFocusEvent a r => QqCastList_QFocusEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFocusEvent"
>QFocusEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QInputMethodEvent a r => QqCastList_QInputMethodEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQInputMethodEvent"
>QInputMethodEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QActionEvent a r => QqCastList_QActionEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQActionEvent"
>QActionEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QShowEvent a r => QqCastList_QShowEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQShowEvent"
>QShowEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QIconDragEvent a r => QqCastList_QIconDragEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIconDragEvent"
>QIconDragEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QToolBarChangeEvent a r => QqCastList_QToolBarChangeEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolBarChangeEvent"
>QToolBarChangeEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWhatsThisClickedEvent a r => QqCastList_QWhatsThisClickedEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWhatsThisClickedEvent"
>QWhatsThisClickedEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QHoverEvent a r => QqCastList_QHoverEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHoverEvent"
>QHoverEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPaintEvent a r => QqCastList_QPaintEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPaintEvent"
>QPaintEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWindowStateChangeEvent a r => QqCastList_QWindowStateChangeEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWindowStateChangeEvent"
>QWindowStateChangeEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDragEnterEvent a r => QqCastList_QDragEnterEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDragEnterEvent"
>QDragEnterEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QProgressDialog a r => QqCastList_QProgressDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQProgressDialog"
>QProgressDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFontDialog a r => QqCastList_QFontDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontDialog"
>QFontDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFileDialog a r => QqCastList_QFileDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFileDialog"
>QFileDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QErrorMessage a r => QqCastList_QErrorMessage (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQErrorMessage"
>QErrorMessage</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMessageBox a r => QqCastList_QMessageBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMessageBox"
>QMessageBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractPageSetupDialog a r => QqCastList_QAbstractPageSetupDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractPageSetupDialog"
>QAbstractPageSetupDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QColorDialog a r => QqCastList_QColorDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQColorDialog"
>QColorDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDateEdit a r => QqCastList_QDateEdit (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateEdit"
>QDateEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTimeEdit a r => QqCastList_QTimeEdit (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTimeEdit"
>QTimeEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWindowsStyle a r => QqCastList_QWindowsStyle (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWindowsStyle"
>QWindowsStyle</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFontComboBox a r => QqCastList_QFontComboBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontComboBox"
>QFontComboBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QHBoxLayout a r => QqCastList_QHBoxLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHBoxLayout"
>QHBoxLayout</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QVBoxLayout a r => QqCastList_QVBoxLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQVBoxLayout"
>QVBoxLayout</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSpinBox a r => QqCastList_QSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSpinBox"
>QSpinBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDoubleSpinBox a r => QqCastList_QDoubleSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDoubleSpinBox"
>QDoubleSpinBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QScrollBar a r => QqCastList_QScrollBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQScrollBar"
>QScrollBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDial a r => QqCastList_QDial (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDial"
>QDial</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSlider a r => QqCastList_QSlider (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSlider"
>QSlider</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QScrollArea a r => QqCastList_QScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQScrollArea"
>QScrollArea</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsView a r => QqCastList_QGraphicsView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsView"
>QGraphicsView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPrintDialog a r => QqCastList_QPrintDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPrintDialog"
>QPrintDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QHeaderView a r => QqCastList_QHeaderView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHeaderView"
>QHeaderView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractProxyModel a r => QqCastList_QAbstractProxyModel (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractProxyModel"
>QAbstractProxyModel</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStandardItemModel a r => QqCastList_QStandardItemModel (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStandardItemModel"
>QStandardItemModel</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDirModel a r => QqCastList_QDirModel (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDirModel"
>QDirModel</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsPolygonItem a r => QqCastList_QGraphicsPolygonItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPolygonItem"
>QGraphicsPolygonItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsPathItem a r => QqCastList_QGraphicsPathItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPathItem"
>QGraphicsPathItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsRectItem a r => QqCastList_QGraphicsRectItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsRectItem"
>QGraphicsRectItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSimpleTextItem a r => QqCastList_QGraphicsSimpleTextItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSimpleTextItem"
>QGraphicsSimpleTextItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsEllipseItem a r => QqCastList_QGraphicsEllipseItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsEllipseItem"
>QGraphicsEllipseItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QToolButton a r => QqCastList_QToolButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolButton"
>QToolButton</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QCheckBox a r => QqCastList_QCheckBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCheckBox"
>QCheckBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QRadioButton a r => QqCastList_QRadioButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRadioButton"
>QRadioButton</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPushButton a r => QqCastList_QPushButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPushButton"
>QPushButton</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFontMetricsF a r => QqCastList_QFontMetricsF (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontMetricsF"
>QFontMetricsF</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextLayout a r => QqCastList_QTextLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextLayout"
>QTextLayout</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFont a r => QqCastList_QFont (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFont"
>QFont</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPalette a r => QqCastList_QPalette (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPalette"
>QPalette</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextLength a r => QqCastList_QTextLength (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextLength"
>QTextLength</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStandardItem a r => QqCastList_QStandardItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStandardItem"
>QStandardItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTreeWidgetItem a r => QqCastList_QTreeWidgetItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeWidgetItem"
>QTreeWidgetItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QKeySequence a r => QqCastList_QKeySequence (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQKeySequence"
>QKeySequence</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPaintEngine a r => QqCastList_QPaintEngine (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPaintEngine"
>QPaintEngine</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QColormap a r => QqCastList_QColormap (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQColormap"
>QColormap</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextLine a r => QqCastList_QTextLine (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextLine"
>QTextLine</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QCursor a r => QqCastList_QCursor (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCursor"
>QCursor</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFontDatabase a r => QqCastList_QFontDatabase (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontDatabase"
>QFontDatabase</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPainter a r => QqCastList_QPainter (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPainter"
>QPainter</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextDocumentFragment a r => QqCastList_QTextDocumentFragment (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextDocumentFragment"
>QTextDocumentFragment</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTableWidgetSelectionRange a r => QqCastList_QTableWidgetSelectionRange (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidgetSelectionRange"
>QTableWidgetSelectionRange</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextLayout__FormatRange a r => QqCastList_QTextLayout__FormatRange (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextLayout__FormatRange"
>QTextLayout__FormatRange</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QColor a r => QqCastList_QColor (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQColor"
>QColor</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QIcon a r => QqCastList_QIcon (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIcon"
>QIcon</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextBlock a r => QqCastList_QTextBlock (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlock"
>QTextBlock</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QRegion a r => QqCastList_QRegion (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRegion"
>QRegion</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QUndoCommand a r => QqCastList_QUndoCommand (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoCommand"
>QUndoCommand</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QToolTip a r => QqCastList_QToolTip (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolTip"
>QToolTip</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QItemSelection a r => QqCastList_QItemSelection (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQItemSelection"
>QItemSelection</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QListWidgetItem a r => QqCastList_QListWidgetItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListWidgetItem"
>QListWidgetItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPen a r => QqCastList_QPen (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPen"
>QPen</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFontMetrics a r => QqCastList_QFontMetrics (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontMetrics"
>QFontMetrics</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextTableCell a r => QqCastList_QTextTableCell (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTableCell"
>QTextTableCell</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFragment a r => QqCastList_QTextFragment (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFragment"
>QTextFragment</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextCursor a r => QqCastList_QTextCursor (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextCursor"
>QTextCursor</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QBrush a r => QqCastList_QBrush (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBrush"
>QBrush</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QSizePolicy a r => QqCastList_QSizePolicy (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSizePolicy"
>QSizePolicy</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFontInfo a r => QqCastList_QFontInfo (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontInfo"
>QFontInfo</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPixmapCache a r => QqCastList_QPixmapCache (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPixmapCache"
>QPixmapCache</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleHintReturn a r => QqCastList_QStyleHintReturn (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleHintReturn"
>QStyleHintReturn</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextBlockUserData a r => QqCastList_QTextBlockUserData (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlockUserData"
>QTextBlockUserData</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPainterPath a r => QqCastList_QPainterPath (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPainterPath"
>QPainterPath</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTableWidgetItem a r => QqCastList_QTableWidgetItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidgetItem"
>QTableWidgetItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFrameLayoutData a r => QqCastList_QTextFrameLayoutData (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFrameLayoutData"
>QTextFrameLayoutData</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextOption a r => QqCastList_QTextOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextOption"
>QTextOption</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QComboBox a r => QqCastList_QComboBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontComboBox"
>QFontComboBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QComboBox a r => QqCastList_QComboBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQComboBox"
>QComboBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFrame a r => QqCastList_QTextFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTable"
>QTextTable</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFrame a r => QqCastList_QTextFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFrame"
>QTextFrame</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextBlockGroup a r => QqCastList_QTextBlockGroup (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextList"
>QTextList</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextBlockGroup a r => QqCastList_QTextBlockGroup (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlockGroup"
>QTextBlockGroup</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextCharFormat a r => QqCastList_QTextCharFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextImageFormat"
>QTextImageFormat</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextCharFormat a r => QqCastList_QTextCharFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextCharFormat"
>QTextCharFormat</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFrameFormat a r => QqCastList_QTextFrameFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTableFormat"
>QTextTableFormat</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFrameFormat a r => QqCastList_QTextFrameFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFrameFormat"
>QTextFrameFormat</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionViewItemV2 a r => QqCastList_QStyleOptionViewItemV2 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV3"
>QStyleOptionViewItemV3</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionViewItemV2 a r => QqCastList_QStyleOptionViewItemV2 (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV2"
>QStyleOptionViewItemV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionToolBox a r => QqCastList_QStyleOptionToolBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBoxV2"
>QStyleOptionToolBoxV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionToolBox a r => QqCastList_QStyleOptionToolBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBox"
>QStyleOptionToolBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionTab a r => QqCastList_QStyleOptionTab (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabV2"
>QStyleOptionTabV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionTab a r => QqCastList_QStyleOptionTab (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTab"
>QStyleOptionTab</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionFrame a r => QqCastList_QStyleOptionFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFrameV2"
>QStyleOptionFrameV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionFrame a r => QqCastList_QStyleOptionFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFrame"
>QStyleOptionFrame</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionDockWidget a r => QqCastList_QStyleOptionDockWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionDockWidgetV2"
>QStyleOptionDockWidgetV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionDockWidget a r => QqCastList_QStyleOptionDockWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionDockWidget"
>QStyleOptionDockWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionProgressBar a r => QqCastList_QStyleOptionProgressBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionProgressBarV2"
>QStyleOptionProgressBarV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionProgressBar a r => QqCastList_QStyleOptionProgressBar (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionProgressBar"
>QStyleOptionProgressBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QCommonStyle a r => QqCastList_QCommonStyle (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWindowsStyle"
>QWindowsStyle</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QCommonStyle a r => QqCastList_QCommonStyle (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCommonStyle"
>QCommonStyle</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPixmap a r => QqCastList_QPixmap (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBitmap"
>QBitmap</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPixmap a r => QqCastList_QPixmap (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPixmap"
>QPixmap</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDragMoveEvent a r => QqCastList_QDragMoveEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDragEnterEvent"
>QDragEnterEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDragMoveEvent a r => QqCastList_QDragMoveEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDragMoveEvent"
>QDragMoveEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractPrintDialog a r => QqCastList_QAbstractPrintDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPrintDialog"
>QPrintDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractPrintDialog a r => QqCastList_QAbstractPrintDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractPrintDialog"
>QAbstractPrintDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextEdit a r => QqCastList_QTextEdit (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBrowser"
>QTextBrowser</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextEdit a r => QqCastList_QTextEdit (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextEdit"
>QTextEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTableView a r => QqCastList_QTableView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidget"
>QTableWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTableView a r => QqCastList_QTableView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableView"
>QTableView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTreeView a r => QqCastList_QTreeView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeWidget"
>QTreeWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTreeView a r => QqCastList_QTreeView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeView"
>QTreeView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QIconEngine a r => QqCastList_QIconEngine (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIconEngineV2"
>QIconEngineV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QIconEngine a r => QqCastList_QIconEngine (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIconEngine"
>QIconEngine</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionViewItem a r => QqCastList_QStyleOptionViewItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV3"
>QStyleOptionViewItemV3</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionViewItem a r => QqCastList_QStyleOptionViewItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV2"
>QStyleOptionViewItemV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionViewItem a r => QqCastList_QStyleOptionViewItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItem"
>QStyleOptionViewItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyle a r => QqCastList_QStyle (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWindowsStyle"
>QWindowsStyle</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyle a r => QqCastList_QStyle (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCommonStyle"
>QCommonStyle</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyle a r => QqCastList_QStyle (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyle"
>QStyle</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QBoxLayout a r => QqCastList_QBoxLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHBoxLayout"
>QHBoxLayout</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QBoxLayout a r => QqCastList_QBoxLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQVBoxLayout"
>QVBoxLayout</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QBoxLayout a r => QqCastList_QBoxLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBoxLayout"
>QBoxLayout</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDropEvent a r => QqCastList_QDropEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDragEnterEvent"
>QDragEnterEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDropEvent a r => QqCastList_QDropEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDragMoveEvent"
>QDragMoveEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDropEvent a r => QqCastList_QDropEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDropEvent"
>QDropEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDateTimeEdit a r => QqCastList_QDateTimeEdit (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateEdit"
>QDateEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDateTimeEdit a r => QqCastList_QDateTimeEdit (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTimeEdit"
>QTimeEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDateTimeEdit a r => QqCastList_QDateTimeEdit (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateTimeEdit"
>QDateTimeEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QListView a r => QqCastList_QListView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoView"
>QUndoView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QListView a r => QqCastList_QListView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListWidget"
>QListWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QListView a r => QqCastList_QListView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListView"
>QListView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QMimeSource a r => QqCastList_QMimeSource (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMimeSource"
>QMimeSource</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSlider a r => QqCastList_QAbstractSlider (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQScrollBar"
>QScrollBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSlider a r => QqCastList_QAbstractSlider (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDial"
>QDial</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSlider a r => QqCastList_QAbstractSlider (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSlider"
>QSlider</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSlider a r => QqCastList_QAbstractSlider (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSlider"
>QAbstractSlider</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QValidator a r => QqCastList_QValidator (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDoubleValidator"
>QDoubleValidator</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QValidator a r => QqCastList_QValidator (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQIntValidator"
>QIntValidator</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QValidator a r => QqCastList_QValidator (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRegExpValidator"
>QRegExpValidator</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QValidator a r => QqCastList_QValidator (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQValidator"
>QValidator</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGradient a r => QqCastList_QGradient (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRadialGradient"
>QRadialGradient</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGradient a r => QqCastList_QGradient (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQConicalGradient"
>QConicalGradient</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGradient a r => QqCastList_QGradient (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLinearGradient"
>QLinearGradient</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGradient a r => QqCastList_QGradient (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGradient"
>QGradient</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractButton a r => QqCastList_QAbstractButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolButton"
>QToolButton</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractButton a r => QqCastList_QAbstractButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCheckBox"
>QCheckBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractButton a r => QqCastList_QAbstractButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRadioButton"
>QRadioButton</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractButton a r => QqCastList_QAbstractButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPushButton"
>QPushButton</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractButton a r => QqCastList_QAbstractButton (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractButton"
>QAbstractButton</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextObject a r => QqCastList_QTextObject (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTable"
>QTextTable</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextObject a r => QqCastList_QTextObject (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextList"
>QTextList</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextObject a r => QqCastList_QTextObject (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFrame"
>QTextFrame</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextObject a r => QqCastList_QTextObject (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlockGroup"
>QTextBlockGroup</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextObject a r => QqCastList_QTextObject (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextObject"
>QTextObject</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QInputEvent a r => QqCastList_QInputEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQContextMenuEvent"
>QContextMenuEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QInputEvent a r => QqCastList_QInputEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTabletEvent"
>QTabletEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QInputEvent a r => QqCastList_QInputEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWheelEvent"
>QWheelEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QInputEvent a r => QqCastList_QInputEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQKeyEvent"
>QKeyEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QInputEvent a r => QqCastList_QInputEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMouseEvent"
>QMouseEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QInputEvent a r => QqCastList_QInputEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQInputEvent"
>QInputEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSpinBox a r => QqCastList_QAbstractSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateEdit"
>QDateEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSpinBox a r => QqCastList_QAbstractSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTimeEdit"
>QTimeEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSpinBox a r => QqCastList_QAbstractSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSpinBox"
>QSpinBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSpinBox a r => QqCastList_QAbstractSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDoubleSpinBox"
>QDoubleSpinBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSpinBox a r => QqCastList_QAbstractSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateTimeEdit"
>QDateTimeEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractSpinBox a r => QqCastList_QAbstractSpinBox (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSpinBox"
>QAbstractSpinBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLayout a r => QqCastList_QLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStackedLayout"
>QStackedLayout</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLayout a r => QqCastList_QLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGridLayout"
>QGridLayout</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLayout a r => QqCastList_QLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHBoxLayout"
>QHBoxLayout</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLayout a r => QqCastList_QLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQVBoxLayout"
>QVBoxLayout</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLayout a r => QqCastList_QLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBoxLayout"
>QBoxLayout</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLayout a r => QqCastList_QLayout (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLayout"
>QLayout</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractGraphicsShapeItem a r => QqCastList_QAbstractGraphicsShapeItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPolygonItem"
>QGraphicsPolygonItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractGraphicsShapeItem a r => QqCastList_QAbstractGraphicsShapeItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPathItem"
>QGraphicsPathItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractGraphicsShapeItem a r => QqCastList_QAbstractGraphicsShapeItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsRectItem"
>QGraphicsRectItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractGraphicsShapeItem a r => QqCastList_QAbstractGraphicsShapeItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSimpleTextItem"
>QGraphicsSimpleTextItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractGraphicsShapeItem a r => QqCastList_QAbstractGraphicsShapeItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsEllipseItem"
>QGraphicsEllipseItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractGraphicsShapeItem a r => QqCastList_QAbstractGraphicsShapeItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractGraphicsShapeItem"
>QAbstractGraphicsShapeItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneEvent a r => QqCastList_QGraphicsSceneEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneWheelEvent"
>QGraphicsSceneWheelEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneEvent a r => QqCastList_QGraphicsSceneEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneDragDropEvent"
>QGraphicsSceneDragDropEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneEvent a r => QqCastList_QGraphicsSceneEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneMouseEvent"
>QGraphicsSceneMouseEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneEvent a r => QqCastList_QGraphicsSceneEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneContextMenuEvent"
>QGraphicsSceneContextMenuEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneEvent a r => QqCastList_QGraphicsSceneEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneHoverEvent"
>QGraphicsSceneHoverEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneEvent a r => QqCastList_QGraphicsSceneEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneHelpEvent"
>QGraphicsSceneHelpEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsSceneEvent a r => QqCastList_QGraphicsSceneEvent (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSceneEvent"
>QGraphicsSceneEvent</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFormat a r => QqCastList_QTextFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextTableFormat"
>QTextTableFormat</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFormat a r => QqCastList_QTextFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextListFormat"
>QTextListFormat</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFormat a r => QqCastList_QTextFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBlockFormat"
>QTextBlockFormat</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFormat a r => QqCastList_QTextFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextImageFormat"
>QTextImageFormat</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFormat a r => QqCastList_QTextFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextCharFormat"
>QTextCharFormat</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFormat a r => QqCastList_QTextFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFrameFormat"
>QTextFrameFormat</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QTextFormat a r => QqCastList_QTextFormat (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextFormat"
>QTextFormat</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLayoutItem a r => QqCastList_QLayoutItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSpacerItem"
>QSpacerItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QLayoutItem a r => QqCastList_QLayoutItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLayoutItem"
>QLayoutItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComplex a r => QqCastList_QStyleOptionComplex (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSizeGrip"
>QStyleOptionSizeGrip</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComplex a r => QqCastList_QStyleOptionComplex (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComboBox"
>QStyleOptionComboBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComplex a r => QqCastList_QStyleOptionComplex (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSpinBox"
>QStyleOptionSpinBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComplex a r => QqCastList_QStyleOptionComplex (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionGroupBox"
>QStyleOptionGroupBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComplex a r => QqCastList_QStyleOptionComplex (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTitleBar"
>QStyleOptionTitleBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComplex a r => QqCastList_QStyleOptionComplex (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSlider"
>QStyleOptionSlider</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComplex a r => QqCastList_QStyleOptionComplex (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolButton"
>QStyleOptionToolButton</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOptionComplex a r => QqCastList_QStyleOptionComplex (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComplex"
>QStyleOptionComplex</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView a r => QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeWidget"
>QTreeWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView a r => QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidget"
>QTableWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView a r => QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoView"
>QUndoView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView a r => QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListWidget"
>QListWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView a r => QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHeaderView"
>QHeaderView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView a r => QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableView"
>QTableView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView a r => QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeView"
>QTreeView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView a r => QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListView"
>QListView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractItemView a r => QqCastList_QAbstractItemView (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog a r => QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQProgressDialog"
>QProgressDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog a r => QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontDialog"
>QFontDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog a r => QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFileDialog"
>QFileDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog a r => QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQErrorMessage"
>QErrorMessage</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog a r => QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMessageBox"
>QMessageBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog a r => QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractPageSetupDialog"
>QAbstractPageSetupDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog a r => QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQColorDialog"
>QColorDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog a r => QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPrintDialog"
>QPrintDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog a r => QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractPrintDialog"
>QAbstractPrintDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QDialog a r => QqCastList_QDialog (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialog"
>QDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem a r => QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItemGroup"
>QGraphicsItemGroup</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem a r => QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPixmapItem"
>QGraphicsPixmapItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem a r => QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsLineItem"
>QGraphicsLineItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem a r => QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPolygonItem"
>QGraphicsPolygonItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem a r => QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsPathItem"
>QGraphicsPathItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem a r => QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsRectItem"
>QGraphicsRectItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem a r => QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsSimpleTextItem"
>QGraphicsSimpleTextItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem a r => QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsEllipseItem"
>QGraphicsEllipseItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem a r => QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractGraphicsShapeItem"
>QAbstractGraphicsShapeItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QGraphicsItem a r => QqCastList_QGraphicsItem (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsItem"
>QGraphicsItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea a r => QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeWidget"
>QTreeWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea a r => QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBrowser"
>QTextBrowser</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea a r => QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidget"
>QTableWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea a r => QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoView"
>QUndoView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea a r => QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListWidget"
>QListWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea a r => QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQScrollArea"
>QScrollArea</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea a r => QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsView"
>QGraphicsView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea a r => QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHeaderView"
>QHeaderView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea a r => QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextEdit"
>QTextEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea a r => QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableView"
>QTableView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea a r => QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeView"
>QTreeView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea a r => QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListView"
>QListView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea a r => QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QAbstractScrollArea a r => QqCastList_QAbstractScrollArea (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeWidget"
>QTreeWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBrowser"
>QTextBrowser</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidget"
>QTableWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoView"
>QUndoView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListWidget"
>QListWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplitter"
>QSplitter</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStackedWidget"
>QStackedWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLCDNumber"
>QLCDNumber</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolBox"
>QToolBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLabel"
>QLabel</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQScrollArea"
>QScrollArea</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsView"
>QGraphicsView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHeaderView"
>QHeaderView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextEdit"
>QTextEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableView"
>QTableView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeView"
>QTreeView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListView"
>QListView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QFrame a r => QqCastList_QFrame (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV3"
>QStyleOptionViewItemV3</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBoxV2"
>QStyleOptionToolBoxV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabV2"
>QStyleOptionTabV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionProgressBarV2"
>QStyleOptionProgressBarV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFrameV2"
>QStyleOptionFrameV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionDockWidgetV2"
>QStyleOptionDockWidgetV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSizeGrip"
>QStyleOptionSizeGrip</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComboBox"
>QStyleOptionComboBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSpinBox"
>QStyleOptionSpinBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionGroupBox"
>QStyleOptionGroupBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTitleBar"
>QStyleOptionTitleBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionSlider"
>QStyleOptionSlider</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolButton"
>QStyleOptionToolButton</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionButton"
>QStyleOptionButton</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionMenuItem"
>QStyleOptionMenuItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabWidgetFrame"
>QStyleOptionTabWidgetFrame</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFocusRect"
>QStyleOptionFocusRect</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTabBarBase"
>QStyleOptionTabBarBase</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionHeader"
>QStyleOptionHeader</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBar"
>QStyleOptionToolBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionGraphicsItem"
>QStyleOptionGraphicsItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionRubberBand"
>QStyleOptionRubberBand</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItemV2"
>QStyleOptionViewItemV2</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionToolBox"
>QStyleOptionToolBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionTab"
>QStyleOptionTab</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionFrame"
>QStyleOptionFrame</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionDockWidget"
>QStyleOptionDockWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionProgressBar"
>QStyleOptionProgressBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionViewItem"
>QStyleOptionViewItem</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOptionComplex"
>QStyleOptionComplex</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QStyleOption a r => QqCastList_QStyleOption (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStyleOption"
>QStyleOption</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolBar"
>QToolBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGroupBox"
>QGroupBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTabBar"
>QTabBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStatusBar"
>QStatusBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSizeGrip"
>QSizeGrip</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDockWidget"
>QDockWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMenuBar"
>QMenuBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRubberBand"
>QRubberBand</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialogButtonBox"
>QDialogButtonBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQProgressBar"
>QProgressBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTabWidget"
>QTabWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplashScreen"
>QSplashScreen</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFocusFrame"
>QFocusFrame</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMainWindow"
>QMainWindow</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplitterHandle"
>QSplitterHandle</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDesktopWidget"
>QDesktopWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLineEdit"
>QLineEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCalendarWidget"
>QCalendarWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMenu"
>QMenu</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeWidget"
>QTreeWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextBrowser"
>QTextBrowser</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableWidget"
>QTableWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQUndoView"
>QUndoView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListWidget"
>QListWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSplitter"
>QSplitter</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQStackedWidget"
>QStackedWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLCDNumber"
>QLCDNumber</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolBox"
>QToolBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQLabel"
>QLabel</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQProgressDialog"
>QProgressDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontDialog"
>QFontDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFileDialog"
>QFileDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQErrorMessage"
>QErrorMessage</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQMessageBox"
>QMessageBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractPageSetupDialog"
>QAbstractPageSetupDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQColorDialog"
>QColorDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateEdit"
>QDateEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTimeEdit"
>QTimeEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFontComboBox"
>QFontComboBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSpinBox"
>QSpinBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDoubleSpinBox"
>QDoubleSpinBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQScrollBar"
>QScrollBar</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDial"
>QDial</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQSlider"
>QSlider</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQScrollArea"
>QScrollArea</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQGraphicsView"
>QGraphicsView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPrintDialog"
>QPrintDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQHeaderView"
>QHeaderView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQToolButton"
>QToolButton</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQCheckBox"
>QCheckBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQRadioButton"
>QRadioButton</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPushButton"
>QPushButton</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQComboBox"
>QComboBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractPrintDialog"
>QAbstractPrintDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTextEdit"
>QTextEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTableView"
>QTableView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQTreeView"
>QTreeView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDateTimeEdit"
>QDateTimeEdit</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQListView"
>QListView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSlider"
>QAbstractSlider</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractButton"
>QAbstractButton</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractSpinBox"
>QAbstractSpinBox</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractItemView"
>QAbstractItemView</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQDialog"
>QDialog</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQAbstractScrollArea"
>QAbstractScrollArea</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQFrame"
>QFrame</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QWidget a r => QqCastList_QWidget (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQWidget"
>QWidget</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPaintDevice a r => QqCastList_QPaintDevice (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQBitmap"
>QBitmap</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPaintDevice a r => QqCastList_QPaintDevice (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQImage"
>QImage</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPaintDevice a r => QqCastList_QPaintDevice (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPrinter"
>QPrinter</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPaintDevice a r => QqCastList_QPaintDevice (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPicture"
>QPicture</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPaintDevice a r => QqCastList_QPaintDevice (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPixmap"
>QPixmap</A
> ()) (a -> r)</TD
></TR
><TR
><TD CLASS="decl"
>QqCastList_QPaintDevice a r => QqCastList_QPaintDevice (<A HREF="Qtc-ClassTypes-Gui.html#t%3AQPaintDevice"
>QPaintDevice</A
> ()) (a -> r)</TD
></TR
></TABLE
></DIV
></TD
></TR
></TABLE
></TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:objectNull"
><A NAME="v%3AobjectNull"
></A
></A
><B
>objectNull</B
> :: <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:objectIsNull"
><A NAME="v%3AobjectIsNull"
></A
></A
><B
>objectIsNull</B
> :: <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a -> Bool</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:objectCast"
><A NAME="v%3AobjectCast"
></A
></A
><B
>objectCast</B
> :: <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a -> <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> b</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:objectFromPtr"
><A NAME="v%3AobjectFromPtr"
></A
></A
><B
>objectFromPtr</B
> :: FunPtr (Ptr a -> IO ()) -> Ptr a -> IO (<A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:objectFromPtr_nf"
><A NAME="v%3AobjectFromPtr_nf"
></A
></A
><B
>objectFromPtr_nf</B
> :: Ptr a -> IO (<A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withObjectPtr"
><A NAME="v%3AwithObjectPtr"
></A
></A
><B
>withObjectPtr</B
> :: <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a -> (Ptr a -> IO b) -> IO b</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:ptrFromObject"
><A NAME="v%3AptrFromObject"
></A
></A
><B
>ptrFromObject</B
> :: <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a -> Ptr a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:objectListFromPtrList"
><A NAME="v%3AobjectListFromPtrList"
></A
></A
><B
>objectListFromPtrList</B
> :: FunPtr (Ptr a -> IO ()) -> [Ptr a] -> IO [<A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a]</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:objectListFromPtrList_nf"
><A NAME="v%3AobjectListFromPtrList_nf"
></A
></A
><B
>objectListFromPtrList_nf</B
> :: [Ptr a] -> IO [<A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a]</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:QVoid"
><A NAME="t%3AQVoid"
></A
></A
><B
>QVoid</B
> a = <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> (<A HREF="Qtc-Classes-Types.html#t%3ACQVoid"
>CQVoid</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:TQVoid"
><A NAME="t%3ATQVoid"
></A
></A
><B
>TQVoid</B
> a = <A HREF="Qtc-Classes-Types.html#t%3ACQVoid"
>CQVoid</A
> a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>data</SPAN
> <A NAME="t:CQVoid"
><A NAME="t%3ACQVoid"
></A
></A
><B
>CQVoid</B
> a </TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withQVoidResult"
><A NAME="v%3AwithQVoidResult"
></A
></A
><B
>withQVoidResult</B
> :: IO (Ptr (<A HREF="Qtc-Classes-Types.html#t%3ATQVoid"
>TQVoid</A
> a)) -> IO (<A HREF="Qtc-Classes-Types.html#t%3AQVoid"
>QVoid</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:QMetaObject"
><A NAME="t%3AQMetaObject"
></A
></A
><B
>QMetaObject</B
> a = <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> (<A HREF="Qtc-Classes-Types.html#t%3ACQMetaObject"
>CQMetaObject</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:TQMetaObject"
><A NAME="t%3ATQMetaObject"
></A
></A
><B
>TQMetaObject</B
> a = <A HREF="Qtc-Classes-Types.html#t%3ACQMetaObject"
>CQMetaObject</A
> a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>data</SPAN
> <A NAME="t:CQMetaObject"
><A NAME="t%3ACQMetaObject"
></A
></A
><B
>CQMetaObject</B
> a </TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withQMetaObjectResult"
><A NAME="v%3AwithQMetaObjectResult"
></A
></A
><B
>withQMetaObjectResult</B
> :: IO (Ptr (<A HREF="Qtc-Classes-Types.html#t%3ATQMetaObject"
>TQMetaObject</A
> a)) -> IO (<A HREF="Qtc-Classes-Types.html#t%3AQMetaObject"
>QMetaObject</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:QString"
><A NAME="t%3AQString"
></A
></A
><B
>QString</B
> a = <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> (<A HREF="Qtc-Classes-Types.html#t%3ACQString"
>CQString</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:TQString"
><A NAME="t%3ATQString"
></A
></A
><B
>TQString</B
> a = <A HREF="Qtc-Classes-Types.html#t%3ACQString"
>CQString</A
> a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>data</SPAN
> <A NAME="t:CQString"
><A NAME="t%3ACQString"
></A
></A
><B
>CQString</B
> a </TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:QByteArray"
><A NAME="t%3AQByteArray"
></A
></A
><B
>QByteArray</B
> a = <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> (<A HREF="Qtc-Classes-Types.html#t%3ACQByteArray"
>CQByteArray</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:TQByteArray"
><A NAME="t%3ATQByteArray"
></A
></A
><B
>TQByteArray</B
> a = <A HREF="Qtc-Classes-Types.html#t%3ACQByteArray"
>CQByteArray</A
> a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>data</SPAN
> <A NAME="t:CQByteArray"
><A NAME="t%3ACQByteArray"
></A
></A
><B
>CQByteArray</B
> a </TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:QResource"
><A NAME="t%3AQResource"
></A
></A
><B
>QResource</B
> a = <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> (<A HREF="Qtc-Classes-Types.html#t%3ACQResource"
>CQResource</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:TQResource"
><A NAME="t%3ATQResource"
></A
></A
><B
>TQResource</B
> a = <A HREF="Qtc-Classes-Types.html#t%3ACQResource"
>CQResource</A
> a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>data</SPAN
> <A NAME="t:CQResource"
><A NAME="t%3ACQResource"
></A
></A
><B
>CQResource</B
> a </TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withQResourceResult"
><A NAME="v%3AwithQResourceResult"
></A
></A
><B
>withQResourceResult</B
> :: IO (Ptr (<A HREF="Qtc-Classes-Types.html#t%3ATQResource"
>TQResource</A
> a)) -> IO (<A HREF="Qtc-Classes-Types.html#t%3AQResource"
>QResource</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:QTransform"
><A NAME="t%3AQTransform"
></A
></A
><B
>QTransform</B
> a = <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> (<A HREF="Qtc-Classes-Types.html#t%3ACQTransform"
>CQTransform</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:TQTransform"
><A NAME="t%3ATQTransform"
></A
></A
><B
>TQTransform</B
> a = <A HREF="Qtc-Classes-Types.html#t%3ACQTransform"
>CQTransform</A
> a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>data</SPAN
> <A NAME="t:CQTransform"
><A NAME="t%3ACQTransform"
></A
></A
><B
>CQTransform</B
> a </TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withQTransformResult"
><A NAME="v%3AwithQTransformResult"
></A
></A
><B
>withQTransformResult</B
> :: IO (Ptr (<A HREF="Qtc-Classes-Types.html#t%3ATQTransform"
>TQTransform</A
> a)) -> IO (<A HREF="Qtc-Classes-Types.html#t%3AQTransform"
>QTransform</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:Element"
><A NAME="t%3AElement"
></A
></A
><B
>Element</B
> a = <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> (<A HREF="Qtc-Classes-Types.html#t%3ACElement"
>CElement</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:TElement"
><A NAME="t%3ATElement"
></A
></A
><B
>TElement</B
> a = <A HREF="Qtc-Classes-Types.html#t%3ACElement"
>CElement</A
> a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>data</SPAN
> <A NAME="t:CElement"
><A NAME="t%3ACElement"
></A
></A
><B
>CElement</B
> a </TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withElementResult"
><A NAME="v%3AwithElementResult"
></A
></A
><B
>withElementResult</B
> :: IO (Ptr (<A HREF="Qtc-Classes-Types.html#t%3ATElement"
>TElement</A
> a)) -> IO (<A HREF="Qtc-Classes-Types.html#t%3AElement"
>Element</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:PaintContext"
><A NAME="t%3APaintContext"
></A
></A
><B
>PaintContext</B
> a = <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> (<A HREF="Qtc-Classes-Types.html#t%3ACPaintContext"
>CPaintContext</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:TPaintContext"
><A NAME="t%3ATPaintContext"
></A
></A
><B
>TPaintContext</B
> a = <A HREF="Qtc-Classes-Types.html#t%3ACPaintContext"
>CPaintContext</A
> a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>data</SPAN
> <A NAME="t:CPaintContext"
><A NAME="t%3ACPaintContext"
></A
></A
><B
>CPaintContext</B
> a </TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withPaintContextResult"
><A NAME="v%3AwithPaintContextResult"
></A
></A
><B
>withPaintContextResult</B
> :: IO (Ptr (<A HREF="Qtc-Classes-Types.html#t%3ATPaintContext"
>TPaintContext</A
> a)) -> IO (<A HREF="Qtc-Classes-Types.html#t%3APaintContext"
>PaintContext</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:ExtraSelection"
><A NAME="t%3AExtraSelection"
></A
></A
><B
>ExtraSelection</B
> a = <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> (<A HREF="Qtc-Classes-Types.html#t%3ACExtraSelection"
>CExtraSelection</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:TExtraSelection"
><A NAME="t%3ATExtraSelection"
></A
></A
><B
>TExtraSelection</B
> a = <A HREF="Qtc-Classes-Types.html#t%3ACExtraSelection"
>CExtraSelection</A
> a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>data</SPAN
> <A NAME="t:CExtraSelection"
><A NAME="t%3ACExtraSelection"
></A
></A
><B
>CExtraSelection</B
> a </TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:QTextInlineObject"
><A NAME="t%3AQTextInlineObject"
></A
></A
><B
>QTextInlineObject</B
> a = <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> (<A HREF="Qtc-Classes-Types.html#t%3ACQTextInlineObject"
>CQTextInlineObject</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:TQTextInlineObject"
><A NAME="t%3ATQTextInlineObject"
></A
></A
><B
>TQTextInlineObject</B
> a = <A HREF="Qtc-Classes-Types.html#t%3ACQTextInlineObject"
>CQTextInlineObject</A
> a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>data</SPAN
> <A NAME="t:CQTextInlineObject"
><A NAME="t%3ACQTextInlineObject"
></A
></A
><B
>CQTextInlineObject</B
> a </TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:QTextObjectInterface"
><A NAME="t%3AQTextObjectInterface"
></A
></A
><B
>QTextObjectInterface</B
> a = <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> (<A HREF="Qtc-Classes-Types.html#t%3ACQTextObjectInterface"
>CQTextObjectInterface</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:TQTextObjectInterface"
><A NAME="t%3ATQTextObjectInterface"
></A
></A
><B
>TQTextObjectInterface</B
> a = <A HREF="Qtc-Classes-Types.html#t%3ACQTextObjectInterface"
>CQTextObjectInterface</A
> a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>data</SPAN
> <A NAME="t:CQTextObjectInterface"
><A NAME="t%3ACQTextObjectInterface"
></A
></A
><B
>CQTextObjectInterface</B
> a </TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:QImageTextKeyLang"
><A NAME="t%3AQImageTextKeyLang"
></A
></A
><B
>QImageTextKeyLang</B
> a = <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> (<A HREF="Qtc-Classes-Types.html#t%3ACQImageTextKeyLang"
>CQImageTextKeyLang</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:TQImageTextKeyLang"
><A NAME="t%3ATQImageTextKeyLang"
></A
></A
><B
>TQImageTextKeyLang</B
> a = <A HREF="Qtc-Classes-Types.html#t%3ACQImageTextKeyLang"
>CQImageTextKeyLang</A
> a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>data</SPAN
> <A NAME="t:CQImageTextKeyLang"
><A NAME="t%3ACQImageTextKeyLang"
></A
></A
><B
>CQImageTextKeyLang</B
> a </TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:Q_IPV6ADDR"
><A NAME="t%3AQ_IPV6ADDR"
></A
></A
><B
>Q_IPV6ADDR</B
> a = <A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> (<A HREF="Qtc-Classes-Types.html#t%3ACQ_IPV6ADDR"
>CQ_IPV6ADDR</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:TQ_IPV6ADDR"
><A NAME="t%3ATQ_IPV6ADDR"
></A
></A
><B
>TQ_IPV6ADDR</B
> a = <A HREF="Qtc-Classes-Types.html#t%3ACQ_IPV6ADDR"
>CQ_IPV6ADDR</A
> a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>data</SPAN
> <A NAME="t:CQ_IPV6ADDR"
><A NAME="t%3ACQ_IPV6ADDR"
></A
></A
><B
>CQ_IPV6ADDR</B
> a </TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withQ_IPV6ADDRResult"
><A NAME="v%3AwithQ_IPV6ADDRResult"
></A
></A
><B
>withQ_IPV6ADDRResult</B
> :: IO (Ptr (<A HREF="Qtc-Classes-Types.html#t%3ATQ_IPV6ADDR"
>TQ_IPV6ADDR</A
> a)) -> IO (<A HREF="Qtc-Classes-Types.html#t%3AQ_IPV6ADDR"
>Q_IPV6ADDR</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withObjectResult"
><A NAME="v%3AwithObjectResult"
></A
></A
><B
>withObjectResult</B
> :: FunPtr (Ptr a -> IO ()) -> IO (Ptr a) -> IO (<A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withObjectRefResult"
><A NAME="v%3AwithObjectRefResult"
></A
></A
><B
>withObjectRefResult</B
> :: IO (Ptr a) -> IO (<A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:intFromBool"
><A NAME="v%3AintFromBool"
></A
></A
><B
>intFromBool</B
> :: Bool -> Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:boolFromInt"
><A NAME="v%3AboolFromInt"
></A
></A
><B
>boolFromInt</B
> :: Int -> Bool</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withQListObject"
><A NAME="v%3AwithQListObject"
></A
></A
><B
>withQListObject</B
> :: [<A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a] -> (CInt -> Ptr (Ptr a) -> IO b) -> IO b</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withPtrPtrObject"
><A NAME="v%3AwithPtrPtrObject"
></A
></A
><B
>withPtrPtrObject</B
> :: [<A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> ()] -> (CInt -> Ptr (Ptr ()) -> IO a) -> IO a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withQListString"
><A NAME="v%3AwithQListString"
></A
></A
><B
>withQListString</B
> :: [String] -> (CInt -> Ptr CWString -> IO a) -> IO a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withQListObjectResult"
><A NAME="v%3AwithQListObjectResult"
></A
></A
><B
>withQListObjectResult</B
> :: FunPtr (Ptr a -> IO ()) -> (Ptr (Ptr a) -> IO CInt) -> IO [<A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a]</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withQListObjectRefResult"
><A NAME="v%3AwithQListObjectRefResult"
></A
></A
><B
>withQListObjectRefResult</B
> :: (Ptr (Ptr a) -> IO CInt) -> IO [<A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> a]</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withPtrPtrObjectResult"
><A NAME="v%3AwithPtrPtrObjectResult"
></A
></A
><B
>withPtrPtrObjectResult</B
> :: (Ptr (Ptr ()) -> IO CInt) -> IO [<A HREF="Qtc-Classes-Types.html#t%3AObject"
>Object</A
> ()]</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withQListStringResult"
><A NAME="v%3AwithQListStringResult"
></A
></A
><B
>withQListStringResult</B
> :: (Ptr (Ptr (<A HREF="Qtc-Classes-Types.html#t%3ATQString"
>TQString</A
> a)) -> IO CInt) -> IO [String]</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withQListDouble"
><A NAME="v%3AwithQListDouble"
></A
></A
><B
>withQListDouble</B
> :: [Double] -> (CInt -> Ptr CDouble -> IO b) -> IO b</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withQListDoubleResult"
><A NAME="v%3AwithQListDoubleResult"
></A
></A
><B
>withQListDoubleResult</B
> :: (Ptr CDouble -> IO CInt) -> IO [Double]</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withQListIntResult"
><A NAME="v%3AwithQListIntResult"
></A
></A
><B
>withQListIntResult</B
> :: (Ptr CInt -> IO CInt) -> IO [Int]</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withQListLongResult"
><A NAME="v%3AwithQListLongResult"
></A
></A
><B
>withQListLongResult</B
> :: (Ptr CLong -> IO CInt) -> IO [Int]</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>CString</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>withCString</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withStringResult"
><A NAME="v%3AwithStringResult"
></A
></A
><B
>withStringResult</B
> :: IO (Ptr (<A HREF="Qtc-Classes-Types.html#t%3ATQString"
>TQString</A
> a)) -> IO String</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withCStringResult"
><A NAME="v%3AwithCStringResult"
></A
></A
><B
>withCStringResult</B
> :: IO (Ptr (<A HREF="Qtc-Classes-Types.html#t%3ATQByteArray"
>TQByteArray</A
> a)) -> IO String</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:stringFromPtr"
><A NAME="v%3AstringFromPtr"
></A
></A
><B
>stringFromPtr</B
> :: Ptr (<A HREF="Qtc-Classes-Types.html#t%3ATQString"
>TQString</A
> a) -> IO String</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:cstringFromPtr"
><A NAME="v%3AcstringFromPtr"
></A
></A
><B
>cstringFromPtr</B
> :: Ptr (<A HREF="Qtc-Classes-Types.html#t%3ATQByteArray"
>TQByteArray</A
> a) -> IO String</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>newCWString</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>CWString</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>withCWString</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>CDouble</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:toCDouble"
><A NAME="v%3AtoCDouble"
></A
></A
><B
>toCDouble</B
> :: Double -> CDouble</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:fromCDouble"
><A NAME="v%3AfromCDouble"
></A
></A
><B
>fromCDouble</B
> :: CDouble -> Double</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withDoubleResult"
><A NAME="v%3AwithDoubleResult"
></A
></A
><B
>withDoubleResult</B
> :: IO CDouble -> IO Double</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>CInt</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:toCInt"
><A NAME="v%3AtoCInt"
></A
></A
><B
>toCInt</B
> :: Int -> CInt</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:fromCInt"
><A NAME="v%3AfromCInt"
></A
></A
><B
>fromCInt</B
> :: CInt -> Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withIntResult"
><A NAME="v%3AwithIntResult"
></A
></A
><B
>withIntResult</B
> :: IO CInt -> IO Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>CUInt</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:toCUInt"
><A NAME="v%3AtoCUInt"
></A
></A
><B
>toCUInt</B
> :: Int -> CUInt</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:fromCUInt"
><A NAME="v%3AfromCUInt"
></A
></A
><B
>fromCUInt</B
> :: CUInt -> Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withUnsignedIntResult"
><A NAME="v%3AwithUnsignedIntResult"
></A
></A
><B
>withUnsignedIntResult</B
> :: IO CUInt -> IO Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>CShort</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:toCShort"
><A NAME="v%3AtoCShort"
></A
></A
><B
>toCShort</B
> :: Int -> CShort</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:fromCShort"
><A NAME="v%3AfromCShort"
></A
></A
><B
>fromCShort</B
> :: CShort -> Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withShortResult"
><A NAME="v%3AwithShortResult"
></A
></A
><B
>withShortResult</B
> :: IO CShort -> IO Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>CUShort</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:toCUShort"
><A NAME="v%3AtoCUShort"
></A
></A
><B
>toCUShort</B
> :: Int -> CUShort</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:fromCUShort"
><A NAME="v%3AfromCUShort"
></A
></A
><B
>fromCUShort</B
> :: CUShort -> Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withUnsignedShortResult"
><A NAME="v%3AwithUnsignedShortResult"
></A
></A
><B
>withUnsignedShortResult</B
> :: IO CUShort -> IO Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>CLong</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:toCLong"
><A NAME="v%3AtoCLong"
></A
></A
><B
>toCLong</B
> :: Int -> CLong</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:fromCLong"
><A NAME="v%3AfromCLong"
></A
></A
><B
>fromCLong</B
> :: CLong -> Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withLongResult"
><A NAME="v%3AwithLongResult"
></A
></A
><B
>withLongResult</B
> :: IO CLong -> IO Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>CULong</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:toCULong"
><A NAME="v%3AtoCULong"
></A
></A
><B
>toCULong</B
> :: Int -> CULong</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:fromCULong"
><A NAME="v%3AfromCULong"
></A
></A
><B
>fromCULong</B
> :: CULong -> Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withUnsignedLongResult"
><A NAME="v%3AwithUnsignedLongResult"
></A
></A
><B
>withUnsignedLongResult</B
> :: IO CULong -> IO Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>CLLong</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:toCLLong"
><A NAME="v%3AtoCLLong"
></A
></A
><B
>toCLLong</B
> :: Int -> CLLong</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:fromCLLong"
><A NAME="v%3AfromCLLong"
></A
></A
><B
>fromCLLong</B
> :: CLLong -> Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withLongLongResult"
><A NAME="v%3AwithLongLongResult"
></A
></A
><B
>withLongLongResult</B
> :: IO CLLong -> IO Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>CULLong</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:toCULLong"
><A NAME="v%3AtoCULLong"
></A
></A
><B
>toCULLong</B
> :: Int -> CULLong</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:fromCULLong"
><A NAME="v%3AfromCULLong"
></A
></A
><B
>fromCULLong</B
> :: CULLong -> Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withUnsignedLongLongResult"
><A NAME="v%3AwithUnsignedLongLongResult"
></A
></A
><B
>withUnsignedLongLongResult</B
> :: IO CULLong -> IO Int</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>CChar</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:toCChar"
><A NAME="v%3AtoCChar"
></A
></A
><B
>toCChar</B
> :: Char -> CChar</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:fromCChar"
><A NAME="v%3AfromCChar"
></A
></A
><B
>fromCChar</B
> :: CChar -> Char</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withCharResult"
><A NAME="v%3AwithCharResult"
></A
></A
><B
>withCharResult</B
> :: (Num a, Integral a) => IO a -> IO Char</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>CWchar</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:toCWchar"
><A NAME="v%3AtoCWchar"
></A
></A
><B
>toCWchar</B
> :: Num a => Char -> a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><SPAN CLASS="keyword"
>type</SPAN
> <A NAME="t:CBool"
><A NAME="t%3ACBool"
></A
></A
><B
>CBool</B
> = CInt</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:toCBool"
><A NAME="v%3AtoCBool"
></A
></A
><B
>toCBool</B
> :: Bool -> <A HREF="Qtc-Classes-Types.html#t%3ACBool"
>CBool</A
></TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:fromCBool"
><A NAME="v%3AfromCBool"
></A
></A
><B
>fromCBool</B
> :: <A HREF="Qtc-Classes-Types.html#t%3ACBool"
>CBool</A
> -> Bool</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:withBoolResult"
><A NAME="v%3AwithBoolResult"
></A
></A
><B
>withBoolResult</B
> :: IO <A HREF="Qtc-Classes-Types.html#t%3ACBool"
>CBool</A
> -> IO Bool</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>Ptr</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>nullPtr</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:ptrNull"
><A NAME="v%3AptrNull"
></A
></A
><B
>ptrNull</B
> :: Ptr a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:ptrIsNull"
><A NAME="v%3AptrIsNull"
></A
></A
><B
>ptrIsNull</B
> :: Ptr a -> Bool</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:ptrCast"
><A NAME="v%3AptrCast"
></A
></A
><B
>ptrCast</B
> :: Ptr a -> Ptr b</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>ForeignPtr</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:fptrNull"
><A NAME="v%3AfptrNull"
></A
></A
><B
>fptrNull</B
> :: IO (ForeignPtr a)</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:fptrIsNull"
><A NAME="v%3AfptrIsNull"
></A
></A
><B
>fptrIsNull</B
> :: ForeignPtr a -> Bool</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:fptrCast"
><A NAME="v%3AfptrCast"
></A
></A
><B
>fptrCast</B
> :: ForeignPtr a -> ForeignPtr b</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>FunPtr</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
><A NAME="v:toCFunPtr"
><A NAME="v%3AtoCFunPtr"
></A
></A
><B
>toCFunPtr</B
> :: FunPtr a -> Ptr a</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>freeHaskellFunPtr</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>castPtrToFunPtr</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="decl"
>addForeignPtrFinalizer</TD
></TR
><TR
><TD CLASS="s15"
></TD
></TR
><TR
><TD CLASS="botbar"
>Produced by <A HREF="http://www.haskell.org/haddock/"
>Haddock</A
> version 2.4.2</TD
></TR
></TABLE
></BODY
></HTML
>
|
doc/news/index.html | artillery/capnproto | ---
title: News
---
{% include header.html %}
<div class="hmargin" style="float: right"><a class="groups_link" style="color: #fff"
href="https://groups.google.com/group/capnproto-announce">Stay Updated</a></div>
<h1>News</h1>
{% for post in site.posts %}
<h2><a href="{{ site.baseurl }}.{{ post.url }}">{{ post.title }}</a></h2>
<p class="author">
<a href="https://github.com/{{ post.author }}">{{ post.author }}</a>
{% if post.author == 'kentonv' %}
<span class="gplus-followbutton"><span class="g-follow" data-annotation="none" data-height="15" data-href="//plus.google.com/118187272963262049674" data-rel="author"></span></span>
<a href="https://www.gittip.com/kentonv/"><img class="gittip" src="{{ site.baseurl }}images/gittip.png" alt="Gittip"></a>
{% endif %}
on <span class="date">{{ post.date | date_to_string }}</span>
</p>
{{ post.content }}
{% endfor %}
<script type="text/javascript">setupSidebar()</script>
{% include footer.html %}
|
hub/templates/hub/users.html | westerncapelabs/uopbmoh-hub | {% extends "hub/base.html" %}
{% load staticfiles %}
{% block pagetitle %}Users{% endblock %}
{% block content %}
<div class="dashhead">
<div class="dashhead-titles">
<h6 class="dashhead-subtitle">UoP Botswana MoH / TB Training</h6>
<h2 class="dashhead-title">Users</h2>
</div>
</div>
<hr class="m-t">
<div class="flextable">
<form class="form-inline" method="post" action=".">
{% csrf_token %}
<div class="form-group">
<label for="code">Facility Code</label>
{{ form.code }}
<!-- <select class="custom-select form-control" name="address_type" id="address_type">
<option value="msisdn">Cell Phone</option>
</select> -->
</div>
<button type="submit" class="btn btn-default">Search</button>
<b>Results:</b> {{ identities.count }}
</form>
</div>
<div class="table-full">
<div class="table-responsive">
<table class="table" data-sort="table">
<thead>
<tr>
<th>Identity</th>
<th>Created At</th>
<th>Action</th>
</tr>
</thead>
<tbody>
{% for identity in identities.results %}
<tr>
{% url 'user-detail' identity.id as url %}
<td>{{ identity.id }}</td>
<td>{{ identity.created_at|get_date|date:"D d M Y H:i" }}</td>
<td><a href="{{ url }}">view</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
<!-- <div class="text-center">
<ul class="pagination">
<li>
<a href="#" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
<li class="active"><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
<li>
<a href="#" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
</ul>
</div> -->
{% endblock %}
|
output/api/0.3.4/html/colour.models.cie_xyy.html | colour-science/colour-science.org | <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>colour.models.cie_xyy Module — Colour 0.3.4 documentation</title>
<link rel="stylesheet" href="_static/basic.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/bootswatch-3.1.0/colour/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" />
<link rel="stylesheet" href="_static/styles.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '0.3.4',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="_static/js/jquery-fix.js"></script>
<script type="text/javascript" src="_static/bootstrap-3.1.0/js/bootstrap.min.js"></script>
<script type="text/javascript" src="_static/bootstrap-sphinx.js"></script>
<link rel="top" title="Colour 0.3.4 documentation" href="index.html" />
<link rel="up" title="colour.models Package" href="colour.models.html" />
<link rel="next" title="colour.models.common Module" href="colour.models.common.html" />
<link rel="prev" title="colour.models.cie_uvw Module" href="colour.models.cie_uvw.html" />
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'>
<meta name="apple-mobile-web-app-capable" content="yes">
</head>
<body>
<div id="navbar" class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<!-- .btn-navbar is used as the toggle for collapsed navbar content -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="_static/Colour_Logo_Icon_001.png">
Colour 0.3</a>
<!--<span class="navbar-text navbar-version pull-left"><b>0.3</b></span>-->
</div>
<div class="collapse navbar-collapse nav-collapse">
<ul class="nav navbar-nav">
<li class="divider-vertical"></li>
<li><a href="https://www.colour-science.org">colour-science.org</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-life-ring"> Documentation</i><b class="caret"></b></a>
<ul class="dropdown-menu">
<li>
<a href="api.html" class="fa fa-life-ring"> API Reference</a>
</li>
<li>
<a href="http://nbviewer.ipython.org/github/colour-science/colour-ipython/blob/master/notebooks/colour.ipynb', True)" class="fa fa-book"> IPython Notebooks</a>
</li>
<li>
<a href="https://www.colour-science.org/features.php" class="fa fa-lightbulb-o"> Features</a>
</li>
<li>
<a href="https://www.colour-science.org/contributing.php"><span class="fa fa-gears"> Contributing</span></a>
</li>
</ul>
</li>
<li>
<a href="colour.models.cie_uvw.html" title="Previous Chapter: colour.models.cie_uvw Module"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm">« colour.models.ci...</span>
</a>
</li>
<li>
<a href="colour.models.common.html" title="Next Chapter: colour.models.common Module"><span class="glyphicon glyphicon-chevron-right visible-sm"></span><span class="hidden-sm">colour.models.co... »</span>
</a>
</li>
</ul>
<form class="navbar-form navbar-right" action="search.html" method="get">
<div class="form-group">
<input type="text" name="q" class="form-control" placeholder="Search" />
</div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section" id="module-colour.models.cie_xyy">
<span id="colour-models-cie-xyy-module"></span><h1>colour.models.cie_xyy Module<a class="headerlink" href="#module-colour.models.cie_xyy" title="Permalink to this headline">¶</a></h1>
<div class="section" id="cie-xyy-colourspace">
<h2>CIE xyY Colourspace<a class="headerlink" href="#cie-xyy-colourspace" title="Permalink to this headline">¶</a></h2>
<p>Defines the <em>CIE xyY</em> colourspace transformations:</p>
<ul class="simple">
<li><a class="reference internal" href="#colour.models.cie_xyy.XYZ_to_xyY" title="colour.models.cie_xyy.XYZ_to_xyY"><tt class="xref py py-func docutils literal"><span class="pre">XYZ_to_xyY()</span></tt></a></li>
<li><a class="reference internal" href="#colour.models.cie_xyy.xyY_to_XYZ" title="colour.models.cie_xyy.xyY_to_XYZ"><tt class="xref py py-func docutils literal"><span class="pre">xyY_to_XYZ()</span></tt></a></li>
<li><a class="reference internal" href="#colour.models.cie_xyy.xy_to_XYZ" title="colour.models.cie_xyy.xy_to_XYZ"><tt class="xref py py-func docutils literal"><span class="pre">xy_to_XYZ()</span></tt></a></li>
<li><a class="reference internal" href="#colour.models.cie_xyy.XYZ_to_xy" title="colour.models.cie_xyy.XYZ_to_xy"><tt class="xref py py-func docutils literal"><span class="pre">XYZ_to_xy()</span></tt></a></li>
</ul>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference external" href="http://nbviewer.ipython.org/github/colour-science/colour-ipython/blob/master/notebooks/models/cie_xyy.ipynb">CIE xyY Colourspace IPython Notebook</a></p>
</div>
<p class="rubric">References</p>
<table class="docutils footnote" frame="void" id="id1" rules="none">
<colgroup><col class="label" /><col /></colgroup>
<tbody valign="top">
<tr><td class="label">[1]</td><td>Wikipedia. (n.d.). CIE 1931 color space. Retrieved February 24, 2014,
from <a class="reference external" href="http://en.wikipedia.org/wiki/CIE_1931_color_space">http://en.wikipedia.org/wiki/CIE_1931_color_space</a></td></tr>
</tbody>
</table>
<dl class="function">
<dt id="colour.models.cie_xyy.XYZ_to_xyY">
<tt class="descclassname">colour.models.cie_xyy.</tt><tt class="descname">XYZ_to_xyY</tt><big>(</big><em>XYZ</em>, <em>illuminant=(0.34567</em>, <em>0.3585)</em><big>)</big><a class="reference internal" href="_modules/colour/models/cie_xyy.html#XYZ_to_xyY"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#colour.models.cie_xyy.XYZ_to_xyY" title="Permalink to this definition">¶</a></dt>
<dd><p>Converts from <em>CIE XYZ</em> colourspace to <em>CIE xyY</em> colourspace and reference
<em>illuminant</em>.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">
<li><strong>XYZ</strong> (<em>array_like, (3,)</em>) – <em>CIE XYZ</em> colourspace matrix.</li>
<li><strong>illuminant</strong> (<em>array_like, optional</em>) – Reference <em>illuminant</em> chromaticity coordinates.</li>
</ul>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first"><em>CIE xyY</em> colourspace matrix.</p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last">ndarray, (3,)</p>
</td>
</tr>
</tbody>
</table>
<p class="rubric">Notes</p>
<ul class="simple">
<li>Input <em>CIE XYZ</em> colourspace matrix is in domain [0, 1].</li>
<li>Output <em>CIE xyY</em> colourspace matrix is in domain [0, 1].</li>
</ul>
<p class="rubric">References</p>
<table class="docutils footnote" frame="void" id="id2" rules="none">
<colgroup><col class="label" /><col /></colgroup>
<tbody valign="top">
<tr><td class="label">[2]</td><td>Lindbloom, B. (2003). XYZ to xyY. Retrieved February 24, 2014,
from <a class="reference external" href="http://www.brucelindbloom.com/Eqn_XYZ_to_xyY.html">http://www.brucelindbloom.com/Eqn_XYZ_to_xyY.html</a></td></tr>
</tbody>
</table>
<p class="rubric">Examples</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">XYZ</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">array</span><span class="p">([</span><span class="mf">0.07049534</span><span class="p">,</span> <span class="mf">0.1008</span><span class="p">,</span> <span class="mf">0.09558313</span><span class="p">])</span>
<span class="gp">>>> </span><span class="n">XYZ_to_xyY</span><span class="p">(</span><span class="n">XYZ</span><span class="p">)</span>
<span class="go">array([ 0.2641477..., 0.3777000..., 0.1008 ])</span>
</pre></div>
</div>
</dd></dl>
<dl class="function">
<dt id="colour.models.cie_xyy.xyY_to_XYZ">
<tt class="descclassname">colour.models.cie_xyy.</tt><tt class="descname">xyY_to_XYZ</tt><big>(</big><em>xyY</em><big>)</big><a class="reference internal" href="_modules/colour/models/cie_xyy.html#xyY_to_XYZ"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#colour.models.cie_xyy.xyY_to_XYZ" title="Permalink to this definition">¶</a></dt>
<dd><p>Converts from <em>CIE xyY</em> colourspace to <em>CIE XYZ</em> colourspace.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>xyY</strong> (<em>array_like, (3,)</em>) – <em>CIE xyY</em> colourspace matrix.</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><em>CIE XYZ</em> colourspace matrix.</td>
</tr>
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">ndarray, (3,)</td>
</tr>
</tbody>
</table>
<p class="rubric">Notes</p>
<ul class="simple">
<li>Input <em>CIE xyY</em> colourspace matrix is in domain [0, 1].</li>
<li>Output <em>CIE XYZ</em> colourspace matrix is in domain [0, 1].</li>
</ul>
<p class="rubric">References</p>
<table class="docutils footnote" frame="void" id="id3" rules="none">
<colgroup><col class="label" /><col /></colgroup>
<tbody valign="top">
<tr><td class="label">[3]</td><td>Lindbloom, B. (2009). xyY to XYZ. Retrieved February 24, 2014,
from <a class="reference external" href="http://www.brucelindbloom.com/Eqn_xyY_to_XYZ.html">http://www.brucelindbloom.com/Eqn_xyY_to_XYZ.html</a></td></tr>
</tbody>
</table>
<p class="rubric">Examples</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">xyY</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">array</span><span class="p">([</span><span class="mf">0.26414772</span><span class="p">,</span> <span class="mf">0.37770001</span><span class="p">,</span> <span class="mf">0.1008</span><span class="p">])</span>
<span class="gp">>>> </span><span class="n">xyY_to_XYZ</span><span class="p">(</span><span class="n">xyY</span><span class="p">)</span>
<span class="go">array([ 0.0704953..., 0.1008 , 0.0955831...])</span>
</pre></div>
</div>
</dd></dl>
<dl class="function">
<dt id="colour.models.cie_xyy.xy_to_XYZ">
<tt class="descclassname">colour.models.cie_xyy.</tt><tt class="descname">xy_to_XYZ</tt><big>(</big><em>xy</em><big>)</big><a class="reference internal" href="_modules/colour/models/cie_xyy.html#xy_to_XYZ"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#colour.models.cie_xyy.xy_to_XYZ" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns the <em>CIE XYZ</em> colourspace matrix from given <em>xy</em> chromaticity
coordinates.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>xy</strong> (<em>array_like</em>) – <em>xy</em> chromaticity coordinates.</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><em>CIE XYZ</em> colourspace matrix.</td>
</tr>
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">ndarray, (3,)</td>
</tr>
</tbody>
</table>
<p class="rubric">Notes</p>
<ul class="simple">
<li>Input <em>xy</em> chromaticity coordinates are in domain [0, 1].</li>
<li>Output <em>CIE XYZ</em> colourspace matrix is in domain [0, 1].</li>
</ul>
<p class="rubric">Examples</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">xy</span> <span class="o">=</span> <span class="p">(</span><span class="mf">0.26414772236966133</span><span class="p">,</span> <span class="mf">0.37770000704815188</span><span class="p">)</span>
<span class="gp">>>> </span><span class="n">xy_to_XYZ</span><span class="p">(</span><span class="n">xy</span><span class="p">)</span>
<span class="go">array([ 0.6993585..., 1. , 0.9482453...])</span>
</pre></div>
</div>
</dd></dl>
<dl class="function">
<dt id="colour.models.cie_xyy.XYZ_to_xy">
<tt class="descclassname">colour.models.cie_xyy.</tt><tt class="descname">XYZ_to_xy</tt><big>(</big><em>XYZ</em>, <em>illuminant=(0.34567</em>, <em>0.3585)</em><big>)</big><a class="reference internal" href="_modules/colour/models/cie_xyy.html#XYZ_to_xy"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#colour.models.cie_xyy.XYZ_to_xy" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns the <em>xy</em> chromaticity coordinates from given <em>CIE XYZ</em> colourspace
matrix.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple">
<li><strong>XYZ</strong> (<em>array_like, (3,)</em>) – <em>CIE XYZ</em> colourspace matrix.</li>
<li><strong>illuminant</strong> (<em>array_like, optional</em>) – Reference <em>illuminant</em> chromaticity coordinates.</li>
</ul>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first"><em>xy</em> chromaticity coordinates.</p>
</td>
</tr>
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last">tuple</p>
</td>
</tr>
</tbody>
</table>
<p class="rubric">Notes</p>
<ul class="simple">
<li>Input <em>CIE XYZ</em> colourspace matrix is in domain [0, 1].</li>
<li>Output <em>xy</em> chromaticity coordinates are in domain [0, 1].</li>
</ul>
<p class="rubric">Examples</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">XYZ</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">array</span><span class="p">([</span><span class="mf">0.07049534</span><span class="p">,</span> <span class="mf">0.1008</span><span class="p">,</span> <span class="mf">0.09558313</span><span class="p">])</span>
<span class="gp">>>> </span><span class="n">XYZ_to_xy</span><span class="p">(</span><span class="n">XYZ</span><span class="p">)</span>
<span class="go">(0.2641477..., 0.3777000...)</span>
</pre></div>
</div>
</dd></dl>
</div>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<p class="pull-right">
<a href="#">Back to top</a>
</p>
<p>
© Copyright 2013 - 2015, Colour Developers.<br/>
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.2.2.<br/>
</p>
</div>
</footer>
</body>
</html> |
tests/loop_test/l9.html | darkrsw/safe | <script>
var xx = [];
var x = ["aa", "bb"];
var j=Math.random();
for(var i=0; i <2; i++){
for(var k=0; k<2; k++) {
if(i==k)
xx[i] = x[k];
}
}
// xx = ["aa", "bb"]
</script>
|
src/3rdparty/LeapSDK/docs/Languages/ObjectiveC/html/Classes/LeapVector.html | nakajimakou1/cvdrone-master_leap_FaceDetect | <!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="html/html; charset=utf-8" />
<title>LeapVector Class Reference</title>
<meta id="xcode-display" name="xcode-display" content="render"/>
<link rel="stylesheet" type="text/css" href="../css/styles.css" media="all" />
<link rel="stylesheet" type="text/css" media="print" href="../css/stylesPrint.css" />
<meta name="generator" content="appledoc 2.1 (build 858)" />
</head>
<body>
<header id="top_header">
<div id="library" class="hideInXcode">
<h1><a id="libraryTitle" href="../index.html">Leap Motion API </a></h1>
<a id="developerHome" href="../index.html">Leap Motion</a>
</div>
<div id="title" role="banner">
<h1 class="hideInXcode">LeapVector Class Reference</h1>
</div>
<ul id="headerButtons" role="toolbar">
<li id="toc_button">
<button aria-label="Show Table of Contents" role="checkbox" class="open" id="table_of_contents"><span class="disclosure"></span>Table of Contents</button>
</li>
<li id="jumpto_button" role="navigation">
<select id="jumpTo">
<option value="top">Jump To…</option>
<option value="overview">Overview</option>
<option value="tasks">Tasks</option>
<option value="properties">Properties</option>
<option value="//api/name/x"> x</option>
<option value="//api/name/y"> y</option>
<option value="//api/name/z"> z</option>
<option value="class_methods">Class Methods</option>
<option value="//api/name/backward"> + backward</option>
<option value="//api/name/down"> + down</option>
<option value="//api/name/forward"> + forward</option>
<option value="//api/name/left"> + left</option>
<option value="//api/name/right"> + right</option>
<option value="//api/name/up"> + up</option>
<option value="//api/name/xAxis"> + xAxis</option>
<option value="//api/name/yAxis"> + yAxis</option>
<option value="//api/name/zAxis"> + zAxis</option>
<option value="//api/name/zero"> + zero</option>
<option value="instance_methods">Instance Methods</option>
<option value="//api/name/angleTo:"> - angleTo:</option>
<option value="//api/name/cross:"> - cross:</option>
<option value="//api/name/distanceTo:"> - distanceTo:</option>
<option value="//api/name/divide:"> - divide:</option>
<option value="//api/name/dot:"> - dot:</option>
<option value="//api/name/equals:"> - equals:</option>
<option value="//api/name/initWithVector:"> - initWithVector:</option>
<option value="//api/name/initWithX:y:z:"> - initWithX:y:z:</option>
<option value="//api/name/magnitude"> - magnitude</option>
<option value="//api/name/magnitudeSquared"> - magnitudeSquared</option>
<option value="//api/name/minus:"> - minus:</option>
<option value="//api/name/negate"> - negate</option>
<option value="//api/name/normalized"> - normalized</option>
<option value="//api/name/pitch"> - pitch</option>
<option value="//api/name/plus:"> - plus:</option>
<option value="//api/name/roll"> - roll</option>
<option value="//api/name/times:"> - times:</option>
<option value="//api/name/toFloatPointer"> - toFloatPointer</option>
<option value="//api/name/toNSArray"> - toNSArray</option>
<option value="//api/name/yaw"> - yaw</option>
</select>
</li>
</ul>
</header>
<nav id="tocContainer" class="isShowingTOC">
<ul id="toc" role="tree">
<li role="treeitem"><span class="nodisclosure"></span><span class="sectionName"><a href="#overview">Overview</a></span></li>
<li role="treeitem" id="task_treeitem"><span class="nodisclosure"></span><span class="sectionName"><a href="#tasks">Tasks</a></span><ul>
</ul></li>
<li role="treeitem" class="children"><span class="disclosure"></span><span class="sectionName"><a href="#properties">Properties</a></span><ul>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/x">x</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/y">y</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/z">z</a></span></li>
</ul></li>
<li role="treeitem" class="children"><span class="disclosure"></span><span class="sectionName"><a href="#class_methods">Class Methods</a></span><ul>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/backward">backward</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/down">down</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/forward">forward</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/left">left</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/right">right</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/up">up</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/xAxis">xAxis</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/yAxis">yAxis</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/zAxis">zAxis</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/zero">zero</a></span></li>
</ul></li>
<li role="treeitem" class="children"><span class="disclosure"></span><span class="sectionName"><a href="#instance_methods">Instance Methods</a></span><ul>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/angleTo:">angleTo:</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/cross:">cross:</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/distanceTo:">distanceTo:</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/divide:">divide:</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/dot:">dot:</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/equals:">equals:</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/initWithVector:">initWithVector:</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/initWithX:y:z:">initWithX:y:z:</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/magnitude">magnitude</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/magnitudeSquared">magnitudeSquared</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/minus:">minus:</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/negate">negate</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/normalized">normalized</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/pitch">pitch</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/plus:">plus:</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/roll">roll</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/times:">times:</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/toFloatPointer">toFloatPointer</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/toNSArray">toNSArray</a></span></li>
<li><span class="nodisclosure"></span><span class="sectionName"><a href="#//api/name/yaw">yaw</a></span></li>
</ul></li>
</ul>
</nav>
<article>
<div id="contents" class="isShowingTOC" role="main">
<a title="LeapVector Class Reference" name="top"></a>
<div class="main-navigation navigation-top">
<ul>
<li><a href="../index.html">Index</a></li>
<li><a href="../hierarchy.html">Hierarchy</a></li>
</ul>
</div>
<div id="header">
<div class="section-header">
<h1 class="title title-header">LeapVector Class Reference</h1>
</div>
</div>
<div id="container">
<div class="section section-specification"><table cellspacing="0"><tbody>
<tr>
<td class="specification-title">Inherits from</td>
<td class="specification-value">NSObject</td>
</tr><tr>
<td class="specification-title">Declared in</td>
<td class="specification-value">LeapObjectiveC.h</td>
</tr>
</tbody></table></div>
<div class="section section-overview">
<a title="Overview" name="overview"></a>
<h2 class="subtitle subtitle-overview">Overview</h2>
<p>The LeapVector class represents a three-component mathematical vector or point<br/>
such as a direction or position in three-dimensional space.</p>
<p>The Leap software employs a right-handed Cartesian coordinate system.<br/>
Values given are in units of real-world millimeters. The origin is centered<br/>
at the center of the Leap device. The x- and z-axes lie in the horizontal<br/>
plane, with the x-axis running parallel to the long edge of the device.<br/>
The y-axis is vertical, with positive values increasing upwards (in contrast<br/>
to the downward orientation of most computer graphics coordinate systems).<br/>
The z-axis has positive values increasing away from the computer screen.</p>
<p><img src="../docs/images/Leap_Axes.png"/></p>
</div>
<div class="section section-tasks">
<a title="Tasks" name="tasks"></a>
<h2 class="subtitle subtitle-tasks">Tasks</h2>
<ul class="task-list">
<li>
<span class="tooltip">
<code><a href="#//api/name/initWithX:y:z:">– initWithX:y:z:</a></code>
<span class="tooltip"><p>Creates a new LeapVector with the specified component values.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/initWithVector:">– initWithVector:</a></code>
<span class="tooltip"><p>Copies the specified LeapVector.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/magnitude">– magnitude</a></code>
<span class="tooltip"><p>The magnitude, or length, of this vector.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/magnitudeSquared">– magnitudeSquared</a></code>
<span class="tooltip"><p>The square of the magnitude, or length, of this vector.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/distanceTo:">– distanceTo:</a></code>
<span class="tooltip"><p>The distance between the point represented by this LeapVector<br/>
object and a point represented by the specified LeapVector object.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/angleTo:">– angleTo:</a></code>
<span class="tooltip"><p>The angle between this vector and the specified vector in radians.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/pitch">– pitch</a></code>
<span class="tooltip"><p>The pitch angle in radians.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/roll">– roll</a></code>
<span class="tooltip"><p>The roll angle in radians.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/yaw">– yaw</a></code>
<span class="tooltip"><p>The yaw angle in radians.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/plus:">– plus:</a></code>
<span class="tooltip"><p>Adds two vectors.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/minus:">– minus:</a></code>
<span class="tooltip"><p>Subtract a vector from this vector.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/negate">– negate</a></code>
<span class="tooltip"><p>Negate this vector.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/times:">– times:</a></code>
<span class="tooltip"><p>Multiply this vector by a number.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/divide:">– divide:</a></code>
<span class="tooltip"><p>Divide this vector by a number.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/equals:">– equals:</a></code>
<span class="tooltip"><p>Checks LeapVector equality.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/dot:">– dot:</a></code>
<span class="tooltip"><p>The dot product of this vector with another vector.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/cross:">– cross:</a></code>
<span class="tooltip"><p>The cross product of this vector and the specified vector.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/normalized">– normalized</a></code>
<span class="tooltip"><p>A normalized copy of this vector.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/toNSArray">– toNSArray</a></code>
<span class="tooltip"><p>Returns an NSArray object containing the vector components in the<br/>
order: x, y, z.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/toFloatPointer">– toFloatPointer</a></code>
<span class="tooltip"><p>Returns an NSMutableData object containing the vector components as<br/>
consecutive floating point values.</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/zero">+ zero</a></code>
<span class="tooltip"><p>The zero vector: (0, 0, 0)</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/xAxis">+ xAxis</a></code>
<span class="tooltip"><p>The x-axis unit vector: (1, 0, 0).</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/yAxis">+ yAxis</a></code>
<span class="tooltip"><p>The y-axis unit vector: (0, 1, 0).</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/zAxis">+ zAxis</a></code>
<span class="tooltip"><p>The z-axis unit vector: (0, 0, 1).</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/left">+ left</a></code>
<span class="tooltip"><p>The unit vector pointing left along the negative x-axis: (-1, 0, 0).</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/right">+ right</a></code>
<span class="tooltip"><p>The unit vector pointing right along the positive x-axis: (1, 0, 0).</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/down">+ down</a></code>
<span class="tooltip"><p>The unit vector pointing down along the negative y-axis: (0, -1, 0).</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/up">+ up</a></code>
<span class="tooltip"><p>The unit vector pointing up along the positive y-axis: (0, 1, 0).</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/forward">+ forward</a></code>
<span class="tooltip"><p>The unit vector pointing forward along the negative z-axis: (0, 0, -1).</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/backward">+ backward</a></code>
<span class="tooltip"><p>The unit vector pointing backward along the positive z-axis: (0, 0, 1).</p></span>
</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/x"> x</a></code>
<span class="tooltip"><p>The horizontal component.</p></span>
</span>
<span class="task-item-suffix">property</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/y"> y</a></code>
<span class="tooltip"><p>The vertical component.</p></span>
</span>
<span class="task-item-suffix">property</span>
</li><li>
<span class="tooltip">
<code><a href="#//api/name/z"> z</a></code>
<span class="tooltip"><p>The depth component.</p></span>
</span>
<span class="task-item-suffix">property</span>
</li>
</ul>
</div>
<div class="section section-methods">
<a title="Properties" name="properties"></a>
<h2 class="subtitle subtitle-methods">Properties</h2>
<div class="section-method">
<a name="//api/name/x" title="x"></a>
<h3 class="subsubtitle method-title">x</h3>
<div class="method-subsection brief-description">
<p>The horizontal component.</p>
</div>
<div class="method-subsection method-declaration"><code>@property (nonatomic, assign, readonly) float x</code></div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The horizontal component.</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/y" title="y"></a>
<h3 class="subsubtitle method-title">y</h3>
<div class="method-subsection brief-description">
<p>The vertical component.</p>
</div>
<div class="method-subsection method-declaration"><code>@property (nonatomic, assign, readonly) float y</code></div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The vertical component.</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/z" title="z"></a>
<h3 class="subsubtitle method-title">z</h3>
<div class="method-subsection brief-description">
<p>The depth component.</p>
</div>
<div class="method-subsection method-declaration"><code>@property (nonatomic, assign, readonly) float z</code></div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The depth component.</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
</div>
<div class="section section-methods">
<a title="Class Methods" name="class_methods"></a>
<h2 class="subtitle subtitle-methods">Class Methods</h2>
<div class="section-method">
<a name="//api/name/backward" title="backward"></a>
<h3 class="subsubtitle method-title">backward</h3>
<div class="method-subsection brief-description">
<p>The unit vector pointing backward along the positive z-axis: (0, 0, 1).</p>
</div>
<div class="method-subsection method-declaration"><code>+ (LeapVector *)backward</code></div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The unit vector pointing backward along the positive z-axis: (0, 0, 1).</p>
<pre><code> LeapVector *backwardVector = [LeapVector backward];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/down" title="down"></a>
<h3 class="subsubtitle method-title">down</h3>
<div class="method-subsection brief-description">
<p>The unit vector pointing down along the negative y-axis: (0, -1, 0).</p>
</div>
<div class="method-subsection method-declaration"><code>+ (LeapVector *)down</code></div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The unit vector pointing down along the negative y-axis: (0, -1, 0).</p>
<pre><code> LeapVector *downVector = [LeapVector down];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/forward" title="forward"></a>
<h3 class="subsubtitle method-title">forward</h3>
<div class="method-subsection brief-description">
<p>The unit vector pointing forward along the negative z-axis: (0, 0, -1).</p>
</div>
<div class="method-subsection method-declaration"><code>+ (LeapVector *)forward</code></div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The unit vector pointing forward along the negative z-axis: (0, 0, -1).</p>
<pre><code> LeapVector *forwardVector = [LeapVector forward];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/left" title="left"></a>
<h3 class="subsubtitle method-title">left</h3>
<div class="method-subsection brief-description">
<p>The unit vector pointing left along the negative x-axis: (-1, 0, 0).</p>
</div>
<div class="method-subsection method-declaration"><code>+ (LeapVector *)left</code></div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The unit vector pointing left along the negative x-axis: (-1, 0, 0).</p>
<pre><code> LeapVector *leftVector = [LeapVector left];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/right" title="right"></a>
<h3 class="subsubtitle method-title">right</h3>
<div class="method-subsection brief-description">
<p>The unit vector pointing right along the positive x-axis: (1, 0, 0).</p>
</div>
<div class="method-subsection method-declaration"><code>+ (LeapVector *)right</code></div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The unit vector pointing right along the positive x-axis: (1, 0, 0).</p>
<pre><code> LeapVector *rightVector = [LeapVector right];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/up" title="up"></a>
<h3 class="subsubtitle method-title">up</h3>
<div class="method-subsection brief-description">
<p>The unit vector pointing up along the positive y-axis: (0, 1, 0).</p>
</div>
<div class="method-subsection method-declaration"><code>+ (LeapVector *)up</code></div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The unit vector pointing up along the positive y-axis: (0, 1, 0).</p>
<pre><code> LeapVector *upVector = [LeapVector up];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/xAxis" title="xAxis"></a>
<h3 class="subsubtitle method-title">xAxis</h3>
<div class="method-subsection brief-description">
<p>The x-axis unit vector: (1, 0, 0).</p>
</div>
<div class="method-subsection method-declaration"><code>+ (LeapVector *)xAxis</code></div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The x-axis unit vector: (1, 0, 0).</p>
<pre><code> LeapVector *xAxisVector = [LeapVector xAxis];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/yAxis" title="yAxis"></a>
<h3 class="subsubtitle method-title">yAxis</h3>
<div class="method-subsection brief-description">
<p>The y-axis unit vector: (0, 1, 0).</p>
</div>
<div class="method-subsection method-declaration"><code>+ (LeapVector *)yAxis</code></div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The y-axis unit vector: (0, 1, 0).</p>
<pre><code> LeapVector *yAxisVector = [LeapVector yAxis];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/zAxis" title="zAxis"></a>
<h3 class="subsubtitle method-title">zAxis</h3>
<div class="method-subsection brief-description">
<p>The z-axis unit vector: (0, 0, 1).</p>
</div>
<div class="method-subsection method-declaration"><code>+ (LeapVector *)zAxis</code></div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The z-axis unit vector: (0, 0, 1).</p>
<pre><code> LeapVector *zAxisVector = [LeapVector zAxis];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/zero" title="zero"></a>
<h3 class="subsubtitle method-title">zero</h3>
<div class="method-subsection brief-description">
<p>The zero vector: (0, 0, 0)</p>
</div>
<div class="method-subsection method-declaration"><code>+ (LeapVector *)zero</code></div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The zero vector: (0, 0, 0)</p>
<pre><code> LeapVector *zeroVector = [LeapVector zero];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
</div>
<div class="section section-methods">
<a title="Instance Methods" name="instance_methods"></a>
<h2 class="subtitle subtitle-methods">Instance Methods</h2>
<div class="section-method">
<a name="//api/name/angleTo:" title="angleTo:"></a>
<h3 class="subsubtitle method-title">angleTo:</h3>
<div class="method-subsection brief-description">
<p>The angle between this vector and the specified vector in radians.</p>
</div>
<div class="method-subsection method-declaration"><code>- (float)angleTo:(const LeapVector *)<em>vector</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<dl class="argument-def parameter-def">
<dt><em>vector</em></dt>
<dd><p>A LeapVector object.</p></dd>
</dl>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>The angle between this vector and the specified vector in radians.</p>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The angle between this vector and the specified vector in radians.</p>
<pre><code> float angleInRadians = [[LeapVector xAxis] angleTo:[LeapVector yAxis]];
// angleInRadians = PI/2 (90 degrees)
</code></pre>
<p>The angle is measured in the plane formed by the two vectors. The<br/>
angle returned is always the smaller of the two conjugate angles.<br/>
Thus <code>[A angleTo:B] == [B angleTo:A]</code> and is always a positive<br/>
value less than or equal to pi radians (180 degrees).</p>
<p>If either vector has zero length, then this function returns zero.</p>
<p><img src="../docs/images/Math_AngleTo.png"/></p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/cross:" title="cross:"></a>
<h3 class="subsubtitle method-title">cross:</h3>
<div class="method-subsection brief-description">
<p>The cross product of this vector and the specified vector.</p>
</div>
<div class="method-subsection method-declaration"><code>- (LeapVector *)cross:(const LeapVector *)<em>vector</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<dl class="argument-def parameter-def">
<dt><em>vector</em></dt>
<dd><p>A LeapVector object.</p></dd>
</dl>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>The cross product of this vector and the specified vector.</p>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The cross product of this vector and the specified vector.</p>
<pre><code> LeapVector *crossProduct = [thisVector cross:thatVector];
</code></pre>
<p>The cross product is a vector orthogonal to both original vectors.<br/>
It has a magnitude equal to the area of a parallelogram having the<br/>
two vectors as sides. The direction of the returned vector is<br/>
determined by the right-hand rule. Thus <code>[A cross:B] ==
[[B negate] cross:A]</code>.</p>
<p><img src="../docs/images/Math_Cross.png"/></p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/distanceTo:" title="distanceTo:"></a>
<h3 class="subsubtitle method-title">distanceTo:</h3>
<div class="method-subsection brief-description">
<p>The distance between the point represented by this LeapVector<br/>
object and a point represented by the specified LeapVector object.</p>
</div>
<div class="method-subsection method-declaration"><code>- (float)distanceTo:(const LeapVector *)<em>vector</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<dl class="argument-def parameter-def">
<dt><em>vector</em></dt>
<dd><p>A LeapVector object.</p></dd>
</dl>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>The distance from this point to the specified point.</p>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The distance between the point represented by this LeapVector<br/>
object and a point represented by the specified LeapVector object.</p>
<pre><code> LeapVector *aPoint = [[LeapVector alloc] initWithX:10 y:0 z:0];
LeapVector *origin = [LeapVector zero];
float distance = [origin distanceTo:aPoint]; // distance = 10
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/divide:" title="divide:"></a>
<h3 class="subsubtitle method-title">divide:</h3>
<div class="method-subsection brief-description">
<p>Divide this vector by a number.</p>
</div>
<div class="method-subsection method-declaration"><code>- (LeapVector *)divide:(float)<em>scalar</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<dl class="argument-def parameter-def">
<dt><em>scalar</em></dt>
<dd><p>The scalar divisor;</p></dd>
</dl>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>The dividend of this LeapVector divided by a scalar.</p>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>Divide this vector by a number.</p>
<pre><code> LeapVector *quotient = [thisVector divide:2.5];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/dot:" title="dot:"></a>
<h3 class="subsubtitle method-title">dot:</h3>
<div class="method-subsection brief-description">
<p>The dot product of this vector with another vector.</p>
</div>
<div class="method-subsection method-declaration"><code>- (float)dot:(const LeapVector *)<em>vector</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<dl class="argument-def parameter-def">
<dt><em>vector</em></dt>
<dd><p>A LeapVector object.</p></dd>
</dl>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>The dot product of this vector and the specified vector.</p>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The dot product of this vector with another vector.</p>
<pre><code> float dotProduct = [thisVector dot:thatVector];
</code></pre>
<p>The dot product is the magnitude of the projection of this vector<br/>
onto the specified vector.</p>
<p><img src="../docs/images/Math_Dot.png"/></p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/equals:" title="equals:"></a>
<h3 class="subsubtitle method-title">equals:</h3>
<div class="method-subsection brief-description">
<p>Checks LeapVector equality.</p>
</div>
<div class="method-subsection method-declaration"><code>- (BOOL)equals:(const LeapVector *)<em>vector</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<dl class="argument-def parameter-def">
<dt><em>vector</em></dt>
<dd><p>The LeapVector to compare.</p></dd>
</dl>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>YES, if the LeapVectors are equal.</p>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>Checks LeapVector equality.</p>
<pre><code> bool vectorsAreEqual = [thisVector equals:thatVector];
</code></pre>
<p>Vectors are equal if each corresponding component is equal.</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/initWithVector:" title="initWithVector:"></a>
<h3 class="subsubtitle method-title">initWithVector:</h3>
<div class="method-subsection brief-description">
<p>Copies the specified LeapVector.</p>
</div>
<div class="method-subsection method-declaration"><code>- (id)initWithVector:(const LeapVector *)<em>vector</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<dl class="argument-def parameter-def">
<dt><em>vector</em></dt>
<dd><p>The LeapVector to copy.</p></dd>
</dl>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>Copies the specified LeapVector.</p>
<pre><code> LeapVector *copiedVector = [[LeapVector alloc] initWithVector:otherVector];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/initWithX:y:z:" title="initWithX:y:z:"></a>
<h3 class="subsubtitle method-title">initWithX:y:z:</h3>
<div class="method-subsection brief-description">
<p>Creates a new LeapVector with the specified component values.</p>
</div>
<div class="method-subsection method-declaration"><code>- (id)initWithX:(float)<em>x</em> y:(float)<em>y</em> z:(float)<em>z</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<dl class="argument-def parameter-def">
<dt><em>x</em></dt>
<dd><p>The horizontal component.</p></dd>
</dl>
<dl class="argument-def parameter-def">
<dt><em>y</em></dt>
<dd><p>The vertical component.</p></dd>
</dl>
<dl class="argument-def parameter-def">
<dt><em>z</em></dt>
<dd><p>The depth component.</p></dd>
</dl>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>Creates a new LeapVector with the specified component values.</p>
<pre><code> LeapVector *newVector = [[LeapVector alloc] initWithX:0.5 y:200.3 z:67];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/magnitude" title="magnitude"></a>
<h3 class="subsubtitle method-title">magnitude</h3>
<div class="method-subsection brief-description">
<p>The magnitude, or length, of this vector.</p>
</div>
<div class="method-subsection method-declaration"><code>- (float)magnitude</code></div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>The length of this vector.</p>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The magnitude, or length, of this vector.</p>
<pre><code> float length = thisVector.magnitude;
</code></pre>
<p>The magnitude is the L2 norm, or Euclidean distance between the origin and<br/>
the point represented by the (x, y, z) components of this LeapVector object.</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/magnitudeSquared" title="magnitudeSquared"></a>
<h3 class="subsubtitle method-title">magnitudeSquared</h3>
<div class="method-subsection brief-description">
<p>The square of the magnitude, or length, of this vector.</p>
</div>
<div class="method-subsection method-declaration"><code>- (float)magnitudeSquared</code></div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>The square of the length of this vector.</p>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The square of the magnitude, or length, of this vector.</p>
<pre><code> float lengthSquared = thisVector.magnitudeSquared;
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/minus:" title="minus:"></a>
<h3 class="subsubtitle method-title">minus:</h3>
<div class="method-subsection brief-description">
<p>Subtract a vector from this vector.</p>
</div>
<div class="method-subsection method-declaration"><code>- (LeapVector *)minus:(const LeapVector *)<em>vector</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<dl class="argument-def parameter-def">
<dt><em>vector</em></dt>
<dd><p>the LeapVector subtrahend.</p></dd>
</dl>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>the difference between the two LeapVectors.</p>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>Subtract a vector from this vector.</p>
<pre><code> LeapVector *difference = [thisVector minus:thatVector];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/negate" title="negate"></a>
<h3 class="subsubtitle method-title">negate</h3>
<div class="method-subsection brief-description">
<p>Negate this vector.</p>
</div>
<div class="method-subsection method-declaration"><code>- (LeapVector *)negate</code></div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>The negation of this LeapVector.</p>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>Negate this vector.</p>
<pre><code> LeapVector *negation = thisVector.negate;
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/normalized" title="normalized"></a>
<h3 class="subsubtitle method-title">normalized</h3>
<div class="method-subsection brief-description">
<p>A normalized copy of this vector.</p>
</div>
<div class="method-subsection method-declaration"><code>- (LeapVector *)normalized</code></div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>A LeapVector object with a length of one, pointing in the same<br/>
direction as this Vector object.</p>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>A normalized copy of this vector.</p>
<pre><code> LeapVector *normalizedVector = otherVector.normalized;
</code></pre>
<p>A normalized vector has the same direction as the original vector,<br/>
but with a length of one.</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/pitch" title="pitch"></a>
<h3 class="subsubtitle method-title">pitch</h3>
<div class="method-subsection brief-description">
<p>The pitch angle in radians.</p>
</div>
<div class="method-subsection method-declaration"><code>- (float)pitch</code></div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>The angle of this vector above or below the horizon (x-z plane).</p>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The pitch angle in radians.</p>
<pre><code> float pitchInRadians = thisVector.pitch;
</code></pre>
<p>Pitch is the angle between the negative z-axis and the projection of<br/>
the vector onto the y-z plane. In other words, pitch represents rotation<br/>
around the x-axis.<br/>
If the vector points upward, the returned angle is between 0 and pi radians<br/>
(180 degrees); if it points downward, the angle is between 0 and -pi radians.</p>
<p><img src="../docs/images/Math_Pitch_Angle.png"/></p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/plus:" title="plus:"></a>
<h3 class="subsubtitle method-title">plus:</h3>
<div class="method-subsection brief-description">
<p>Adds two vectors.</p>
</div>
<div class="method-subsection method-declaration"><code>- (LeapVector *)plus:(const LeapVector *)<em>vector</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<dl class="argument-def parameter-def">
<dt><em>vector</em></dt>
<dd><p>The LeapVector addend.</p></dd>
</dl>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>The sum of the two LeapVectors.</p>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>Adds two vectors.</p>
<pre><code> LeapVector *sum = [thisVector plus:thatVector];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/roll" title="roll"></a>
<h3 class="subsubtitle method-title">roll</h3>
<div class="method-subsection brief-description">
<p>The roll angle in radians.</p>
</div>
<div class="method-subsection method-declaration"><code>- (float)roll</code></div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>The angle of this vector to the right or left of the y-axis.</p>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The roll angle in radians.</p>
<pre><code> float rollInRadians = thatVector.roll;
</code></pre>
<p>Roll is the angle between the y-axis and the projection of<br/>
the vector onto the x-y plane. In other words, roll represents rotation<br/>
around the z-axis. If the vector points to the left of the y-axis,<br/>
then the returned angle is between 0 and pi radians (180 degrees);<br/>
if it points to the right, the angle is between 0 and -pi radians.</p>
<p><img src="../docs/images/Math_Roll_Angle.png"/></p>
<p>Use this function to get roll angle of the plane to which this vector is a<br/>
normal. For example, if this vector represents the normal to the palm,<br/>
then this function returns the tilt or roll of the palm plane compared<br/>
to the horizontal (x-z) plane.</p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/times:" title="times:"></a>
<h3 class="subsubtitle method-title">times:</h3>
<div class="method-subsection brief-description">
<p>Multiply this vector by a number.</p>
</div>
<div class="method-subsection method-declaration"><code>- (LeapVector *)times:(float)<em>scalar</em></code></div>
<div class="method-subsection arguments-section parameters">
<h4 class="method-subtitle parameter-title">Parameters</h4>
<dl class="argument-def parameter-def">
<dt><em>scalar</em></dt>
<dd><p>The scalar factor.</p></dd>
</dl>
</div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>The product of this LeapVector and a scalar.</p>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>Multiply this vector by a number.</p>
<pre><code> LeapVector *product = [thisVector times:5.0];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/toFloatPointer" title="toFloatPointer"></a>
<h3 class="subsubtitle method-title">toFloatPointer</h3>
<div class="method-subsection brief-description">
<p>Returns an NSMutableData object containing the vector components as<br/>
consecutive floating point values.</p>
</div>
<div class="method-subsection method-declaration"><code>- (NSMutableData *)toFloatPointer</code></div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>Returns an NSMutableData object containing the vector components as<br/>
consecutive floating point values.</p>
<pre><code> NSData *vectorData = thisVector.toFloatPointer;
float x, y, z;
[vectorData getBytes:&x length:sizeof(float)];
[vectorData getBytes:&y length:sizeof(float)];
[vectorData getBytes:&z length:sizeof(float)];
//Or access as an array of float:
float array[3];
[vectorData getBytes:&array length:sizeof(float) * 3];
x = array[0];
y = array[1];
z = array[2];
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/toNSArray" title="toNSArray"></a>
<h3 class="subsubtitle method-title">toNSArray</h3>
<div class="method-subsection brief-description">
<p>Returns an NSArray object containing the vector components in the<br/>
order: x, y, z.</p>
</div>
<div class="method-subsection method-declaration"><code>- (NSArray *)toNSArray</code></div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>Returns an NSArray object containing the vector components in the<br/>
order: x, y, z.</p>
<pre><code> NSArray *vectorArray = thisVector.toNSArray;
</code></pre>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
<div class="section-method">
<a name="//api/name/yaw" title="yaw"></a>
<h3 class="subsubtitle method-title">yaw</h3>
<div class="method-subsection brief-description">
<p>The yaw angle in radians.</p>
</div>
<div class="method-subsection method-declaration"><code>- (float)yaw</code></div>
<div class="method-subsection return">
<h4 class="method-subtitle parameter-title">Return Value</h4>
<p>The angle of this vector to the right or left of the negative z-axis.</p>
</div>
<div class="method-subsection availability">
<h4 class="method-subtitle parameter-title">Availability</h4>
<p>Since 1.0</p>
</div>
<div class="method-subsection discussion-section">
<h4 class="method-subtitle">Discussion</h4>
<p>The yaw angle in radians.</p>
<pre><code> float yawInRadians = thisVector.yaw;
</code></pre>
<p>Yaw is the angle between the negative z-axis and the projection of<br/>
the vector onto the x-z plane. In other words, yaw represents rotation<br/>
around the y-axis. If the vector points to the right of the negative z-axis,<br/>
then the returned angle is between 0 and pi radians (180 degrees);<br/>
if it points to the left, the angle is between 0 and -pi radians.</p>
<p><img src="../docs/images/Math_Yaw_Angle.png"/></p>
</div>
<div class="method-subsection declared-in-section">
<h4 class="method-subtitle">Declared In</h4>
<code class="declared-in-ref">LeapObjectiveC.h</code><br />
</div>
</div>
</div>
</div>
<div class="main-navigation navigation-bottom">
<ul>
<li><a href="../index.html">Index</a></li>
<li><a href="../hierarchy.html">Hierarchy</a></li>
</ul>
</div>
<div id="footer">
<hr />
<div class="footer-copyright">
<p><span class="copyright">© 2013 Leap Motion. All rights reserved. (Last updated: 2013-07-19)</span><br />
<span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.1 (build 858)</a>.</span></p>
</div>
</div>
</div>
</article>
<script type="text/javascript">
function jumpToChange()
{
window.location.hash = this.options[this.selectedIndex].value;
}
function toggleTOC()
{
var contents = document.getElementById('contents');
var tocContainer = document.getElementById('tocContainer');
if (this.getAttribute('class') == 'open')
{
this.setAttribute('class', '');
contents.setAttribute('class', '');
tocContainer.setAttribute('class', '');
window.name = "hideTOC";
}
else
{
this.setAttribute('class', 'open');
contents.setAttribute('class', 'isShowingTOC');
tocContainer.setAttribute('class', 'isShowingTOC');
window.name = "";
}
return false;
}
function toggleTOCEntryChildren(e)
{
e.stopPropagation();
var currentClass = this.getAttribute('class');
if (currentClass == 'children') {
this.setAttribute('class', 'children open');
}
else if (currentClass == 'children open') {
this.setAttribute('class', 'children');
}
return false;
}
function tocEntryClick(e)
{
e.stopPropagation();
return true;
}
function init()
{
var selectElement = document.getElementById('jumpTo');
selectElement.addEventListener('change', jumpToChange, false);
var tocButton = document.getElementById('table_of_contents');
tocButton.addEventListener('click', toggleTOC, false);
var taskTreeItem = document.getElementById('task_treeitem');
if (taskTreeItem.getElementsByTagName('li').length > 0)
{
taskTreeItem.setAttribute('class', 'children');
taskTreeItem.firstChild.setAttribute('class', 'disclosure');
}
var tocList = document.getElementById('toc');
var tocEntries = tocList.getElementsByTagName('li');
for (var i = 0; i < tocEntries.length; i++) {
tocEntries[i].addEventListener('click', toggleTOCEntryChildren, false);
}
var tocLinks = tocList.getElementsByTagName('a');
for (var i = 0; i < tocLinks.length; i++) {
tocLinks[i].addEventListener('click', tocEntryClick, false);
}
if (window.name == "hideTOC") {
toggleTOC.call(tocButton);
}
}
window.onload = init;
// If showing in Xcode, hide the TOC and Header
if (navigator.userAgent.match(/xcode/i)) {
document.getElementById("contents").className = "hideInXcode"
document.getElementById("tocContainer").className = "hideInXcode"
document.getElementById("top_header").className = "hideInXcode"
}
</script>
</body>
</html> |
djangobb_forum/static/djangobb_forum/themes/default/css/default_cs.css | aldenjenkins/foobargamingwebsite | /****************************************************************/
/* 1. BACKGROUND AND TEXT COLOURS */
/****************************************************************/
/* 1.1 Default background colour and text colour */
body{text-align:center;background : url(../img/back.gif);}
/* �������� ����� */
.djangobb {COLOR: #333}
DIV.box, #adminconsole FIELDSET TH, .rowodd, .roweven {BACKGROUND-COLOR: #f8f8f8}
.djangobb BLOCKQUOTE, DIV.code {BACKGROUND-COLOR: #f1f1f1}
#adminconsole TD, #adminconsole TH {BORDER-COLOR: #eeeeee} /*<<<<<<<<<<<neizvestno*/
/* 1. 2 Darker background colours */
TD.tc2, TD.tc3, TD.tcmod, #postpreview, #viewprofile DD, DIV.forminfo,
#adminconsole FIELDSET TD, DIV.blockmenu DIV.box, #adstats DD {BACKGROUND-COLOR: #f5f5f5}
TH.tc3 {width: 70px}
/* 1.3 Main headers and navigation bar background and text colour */
.djangobb H2, #brdmenu {BACKGROUND: url(../img/fon111.gif); COLOR: #FFF; font-weight: bold; height: 16px;}
.djangobb H2 {font-weight: bold;BACKGROUND: #46586a url(../img/fon111.gif);border-top: 1px solid #46586a;border-left: 1px solid #46586a;border-right: 1px solid #46586a; height: 16px;}
.djangobb H2 a.toggle {
float: right;
BACKGROUND: url(../img/cat_minimize.png);
display:block;
height:17px;
line-height:1px;
outline-color:-moz-use-text-color;
outline-style:none;
outline-width:0;
text-indent:-3000em;
width:28px;
}
.djangobb H2.collapsed a.toggle {
background-image:url(../img/cat_maximize.png);
}
/* 1.4 Table header rows */
.djangobb TH {BACKGROUND-COLOR: #eeeeee;}
/* 1.5 Fieldset legend text colour */
.djangobb LEGEND {COLOR: #5A799D}
/* 1.6 Highlighted text for various items */
.djangobb DIV.blockmenu LI.isactive A, #posterror LI STRONG {COLOR: #46586a}
/****************************************************************/
/* 2. POST BACKGROUNDS AND TEXT */
/****************************************************************/
/* 2.1 This is the setup for posts. */
DIV.blockpost DIV.box, DIV.postright, DIV.postfootright {BACKGROUND-COLOR: #f8f8f8}
DIV.postright, DIV.postfootright {BORDER-LEFT-COLOR: #f1f1f1}
DIV.postleft, DIV.postfootleft, DIV.blockpost LABEL {BACKGROUND-COLOR: #f1f1f1}
/* 2.2 Background for post headers and text colour for post numbers in viewtopic */
DIV.blockpost H2 {BACKGROUND-COLOR: #46586a}
DIV.blockpost H2 SPAN.conr {COLOR: #CCC}
/* 2.3 This is the line above the signature in posts. Colour and background should be the same */
.djangobb HR {BACKGROUND-COLOR: #35567C; COLOR: #35567C}
/****************************************************************/
/* 3. BORDER COLOURS */
/****************************************************************/
/* 3.1 All external borders */
DIV.box {BORDER-COLOR: #46586a}
/* 3.2 Makes the top border of posts match the colour used for post headers */
/*DIV.blockpost DIV.box {BORDER-COLOR: #686E80 #686E80 #686E80}*/
DIV.blockpost DIV.box {BORDER: 1px solid #46586a;BORDER-TOP: 1px solid #46586a;}
/* 3.3 Table internal borders. By default TH is same as background so border is invisible */
.djangobb TD {BORDER-COLOR: #d6e1f1}
.djangobb TH {BORDER-COLOR: #d6e1f1}
/* 3.4 Creates the inset border for quote boxes, code boxes and form info boxes */
.djangobb BLOCKQUOTE, DIV.code, DIV.forminfo, DIV.blockpost LABEL {BORDER-COLOR: #46586a #46586a #46586a #46586a}
/* 3.5 Gecko's default fieldset borders are really nasty so this gives them a colour
without interferring with IE's rather nice default */
/****************************************************************/
/* 4. LINK COLOURS */
/****************************************************************/
/* 4.1 This is the default for all links */
.djangobb A:link, .djangobb A:visited {COLOR: #46586a;}
.djangobb A:hover {COLOR: #B42000; }
/* 4.2 This is the colour for links in header rows and the navigation bar */
.djangobb H2 A:link, .djangobb H2 A:visited, #brdmenu A:link, #brdmenu A:visited {COLOR: #FFF;text-decoration : underline; }
.djangobb H2 A:hover, #brdmenu A:hover {COLOR: #35567C;}
/* 4.3 This is for closed topics and "hot" links */
LI.postreport A:link, LI.postreport A:visited, TR.iclosed TD.tcl A:link, TR.iclosed TD.tcl A:visited {COLOR: #888}
LI.postreport A:hover, TR.iclosed TD.tcl A:hover {COLOR: #AAA}
LI.maintenancelink A:link, LI.maintenancelink A:visited {COLOR: #B42000}
LI.maintenancelink A:hover {COLOR: #B42000}
/****************************************************************/
/* 5. POST STATUS INDICATORS */
/****************************************************************/
/* These are the post status indicators which appear at the left of some tables.
.inew = new posts, .iredirect = redirect forums, .iclosed = closed topics and
.isticky = sticky topics. The default is "icon". By default only .inew is different.*/
DIV.forum_icon {background:url(../img/active_forum.gif)}
DIV.icon {background:url(../img/inactive_topic.gif)}
DIV.inew {background:url(../img/active_topic.gif)}
DIV.sticky {background:url(../img/sticky_topic.gif)}
DIV.closed {background:url(../img/closed_topic.gif)}
TR.inew DIV.icon {background:url(../img/active_topic.gif)}
TR.isticky DIV.inew {background:url(../img/active_topic.gif)}
TR.iclosed DIV.icon {background:url(../img/closed.png)}
DIV.iredirect {background:url(../img/link.png)}
/****************************************************************/
/* 6. EXTRAS */
/****************************************************************/
#brdmenu {BACKGROUND: url(../img/fon111.gif); border-top: 1px solid #46586a;border-bottom: 1px solid #46586a; BACKGROUND-COLOR: #46586a;}
/* header logo */
.djangobb H1 span
{
color: #3A3B3C;
font-size: 16px; /*bylo 12*/
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
}
.djangobb h2 span {
background:transparent url(../img/category.gif) no-repeat scroll left center;
}
.djangobb h2 span.conr {
background-image:none;
}
/* board stats icon */
#djangobbindex #brdstats div.box div.inbox dl.conl,
#djangobbforum #brdstats div.box div.inbox dl.conl
{
background: transparent url(../img/stats.gif) no-repeat 0% 50%;
padding-left: 38px;
}
|
src/standard/gestures.html | mgiuffrida/polymer | <!--
@license
Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<script>
(function() {
'use strict';
var wrap = Polymer.DomApi.wrap;
// detect native touch action support
var HAS_NATIVE_TA = typeof document.head.style.touchAction === 'string';
var GESTURE_KEY = '__polymerGestures';
var HANDLED_OBJ = '__polymerGesturesHandled';
var TOUCH_ACTION = '__polymerGesturesTouchAction';
// radius for tap and track
var TAP_DISTANCE = 25;
var TRACK_DISTANCE = 5;
// number of last N track positions to keep
var TRACK_LENGTH = 2;
// Disabling "mouse" handlers for 2500ms is enough
var MOUSE_TIMEOUT = 2500;
var MOUSE_EVENTS = ['mousedown', 'mousemove', 'mouseup', 'click'];
// an array of bitmask values for mapping MouseEvent.which to MouseEvent.buttons
var MOUSE_WHICH_TO_BUTTONS = [0, 1, 4, 2];
var MOUSE_HAS_BUTTONS = (function() {
try {
return new MouseEvent('test', {buttons: 1}).buttons === 1;
} catch (e) {
return false;
}
})();
// Check for touch-only devices
var IS_TOUCH_ONLY = navigator.userAgent.match(/iP(?:[oa]d|hone)|Android/);
// touch will make synthetic mouse events
// `preventDefault` on touchend will cancel them,
// but this breaks `<input>` focus and link clicks
// disable mouse handlers for MOUSE_TIMEOUT ms after
// a touchend to ignore synthetic mouse events
var mouseCanceller = function(mouseEvent) {
// Check for sourceCapabilities, used to distinguish synthetic events
// if mouseEvent did not come from a device that fires touch events,
// it was made by a real mouse and should be counted
// http://wicg.github.io/InputDeviceCapabilities/#dom-inputdevicecapabilities-firestouchevents
var sc = mouseEvent.sourceCapabilities;
if (sc && !sc.firesTouchEvents) {
return;
}
// skip synthetic mouse events
mouseEvent[HANDLED_OBJ] = {skip: true};
// disable "ghost clicks"
if (mouseEvent.type === 'click') {
var path = Polymer.dom(mouseEvent).path;
for (var i = 0; i < path.length; i++) {
if (path[i] === POINTERSTATE.mouse.target) {
return;
}
}
mouseEvent.preventDefault();
mouseEvent.stopPropagation();
}
};
function setupTeardownMouseCanceller(setup) {
for (var i = 0, en; i < MOUSE_EVENTS.length; i++) {
en = MOUSE_EVENTS[i];
if (setup) {
document.addEventListener(en, mouseCanceller, true);
} else {
document.removeEventListener(en, mouseCanceller, true);
}
}
}
function ignoreMouse() {
if (IS_TOUCH_ONLY) {
return;
}
if (!POINTERSTATE.mouse.mouseIgnoreJob) {
setupTeardownMouseCanceller(true);
}
var unset = function() {
setupTeardownMouseCanceller();
POINTERSTATE.mouse.target = null;
POINTERSTATE.mouse.mouseIgnoreJob = null;
};
POINTERSTATE.mouse.mouseIgnoreJob =
Polymer.Debounce(POINTERSTATE.mouse.mouseIgnoreJob, unset, MOUSE_TIMEOUT);
}
function hasLeftMouseButton(ev) {
var type = ev.type;
// exit early if the event is not a mouse event
if (MOUSE_EVENTS.indexOf(type) === -1) {
return false;
}
// ev.button is not reliable for mousemove (0 is overloaded as both left button and no buttons)
// instead we use ev.buttons (bitmask of buttons) or fall back to ev.which (deprecated, 0 for no buttons, 1 for left button)
if (type === 'mousemove') {
// allow undefined for testing events
var buttons = ev.buttons === undefined ? 1 : ev.buttons;
if ((ev instanceof window.MouseEvent) && !MOUSE_HAS_BUTTONS) {
buttons = MOUSE_WHICH_TO_BUTTONS[ev.which] || 0;
}
// buttons is a bitmask, check that the left button bit is set (1)
return Boolean(buttons & 1);
} else {
// allow undefined for testing events
var button = ev.button === undefined ? 0 : ev.button;
// ev.button is 0 in mousedown/mouseup/click for left button activation
return button === 0;
}
}
function isSyntheticClick(ev) {
if (ev.type === 'click') {
// ev.detail is 0 for HTMLElement.click in most browsers
if (ev.detail === 0) {
return true;
}
// in the worst case, check that the x/y position of the click is within
// the bounding box of the target of the event
// Thanks IE 10 >:(
var t = Gestures.findOriginalTarget(ev);
var bcr = t.getBoundingClientRect();
// use page x/y to account for scrolling
var x = ev.pageX, y = ev.pageY;
// ev is a synthetic click if the position is outside the bounding box of the target
return !((x >= bcr.left && x <= bcr.right) && (y >= bcr.top && y <= bcr.bottom));
}
return false;
}
var POINTERSTATE = {
mouse: {
target: null,
mouseIgnoreJob: null
},
touch: {
x: 0,
y: 0,
id: -1,
scrollDecided: false
}
};
function firstTouchAction(ev) {
var path = Polymer.dom(ev).path;
var ta = 'auto';
for (var i = 0, n; i < path.length; i++) {
n = path[i];
if (n[TOUCH_ACTION]) {
ta = n[TOUCH_ACTION];
break;
}
}
return ta;
}
function trackDocument(stateObj, movefn, upfn) {
stateObj.movefn = movefn;
stateObj.upfn = upfn;
document.addEventListener('mousemove', movefn);
document.addEventListener('mouseup', upfn);
}
function untrackDocument(stateObj) {
document.removeEventListener('mousemove', stateObj.movefn);
document.removeEventListener('mouseup', stateObj.upfn);
stateObj.movefn = null;
stateObj.upfn = null;
}
var Gestures = {
gestures: {},
recognizers: [],
deepTargetFind: function(x, y) {
var node = document.elementFromPoint(x, y);
var next = node;
// this code path is only taken when native ShadowDOM is used
// if there is a shadowroot, it may have a node at x/y
// if there is not a shadowroot, exit the loop
while (next && next.shadowRoot) {
// if there is a node at x/y in the shadowroot, look deeper
next = next.shadowRoot.elementFromPoint(x, y);
if (next) {
node = next;
}
}
return node;
},
// a cheaper check than Polymer.dom(ev).path[0];
findOriginalTarget: function(ev) {
// shadowdom
if (ev.path) {
return ev.path[0];
}
// shadydom
return ev.target;
},
handleNative: function(ev) {
var handled;
var type = ev.type;
var node = wrap(ev.currentTarget);
var gobj = node[GESTURE_KEY];
if (!gobj) {
return;
}
var gs = gobj[type];
if (!gs) {
return;
}
if (!ev[HANDLED_OBJ]) {
ev[HANDLED_OBJ] = {};
if (type.slice(0, 5) === 'touch') {
var t = ev.changedTouches[0];
if (type === 'touchstart') {
// only handle the first finger
if (ev.touches.length === 1) {
POINTERSTATE.touch.id = t.identifier;
}
}
if (POINTERSTATE.touch.id !== t.identifier) {
return;
}
if (!HAS_NATIVE_TA) {
if (type === 'touchstart' || type === 'touchmove') {
Gestures.handleTouchAction(ev);
}
}
// disable synth mouse events, unless this event is itself simulated
if (type === 'touchend') {
POINTERSTATE.mouse.target = Polymer.dom(ev).rootTarget;
// ignore syntethic mouse events after a touch
ignoreMouse();
}
}
}
handled = ev[HANDLED_OBJ];
// used to ignore synthetic mouse events
if (handled.skip) {
return;
}
var recognizers = Gestures.recognizers;
// reset recognizer state
for (var i = 0, r; i < recognizers.length; i++) {
r = recognizers[i];
if (gs[r.name] && !handled[r.name]) {
if (r.flow && r.flow.start.indexOf(ev.type) > -1 && r.reset) {
r.reset();
}
}
}
// enforce gesture recognizer order
for (i = 0, r; i < recognizers.length; i++) {
r = recognizers[i];
if (gs[r.name] && !handled[r.name]) {
handled[r.name] = true;
r[type](ev);
}
}
},
handleTouchAction: function(ev) {
var t = ev.changedTouches[0];
var type = ev.type;
if (type === 'touchstart') {
POINTERSTATE.touch.x = t.clientX;
POINTERSTATE.touch.y = t.clientY;
POINTERSTATE.touch.scrollDecided = false;
} else if (type === 'touchmove') {
if (POINTERSTATE.touch.scrollDecided) {
return;
}
POINTERSTATE.touch.scrollDecided = true;
var ta = firstTouchAction(ev);
var prevent = false;
var dx = Math.abs(POINTERSTATE.touch.x - t.clientX);
var dy = Math.abs(POINTERSTATE.touch.y - t.clientY);
if (!ev.cancelable) {
// scrolling is happening
} else if (ta === 'none') {
prevent = true;
} else if (ta === 'pan-x') {
prevent = dy > dx;
} else if (ta === 'pan-y') {
prevent = dx > dy;
}
if (prevent) {
ev.preventDefault();
} else {
Gestures.prevent('track');
}
}
},
// automate the event listeners for the native events
add: function(node, evType, handler) {
// SD polyfill: handle case where `node` is unwrapped, like `document`
node = wrap(node);
var recognizer = this.gestures[evType];
var deps = recognizer.deps;
var name = recognizer.name;
var gobj = node[GESTURE_KEY];
if (!gobj) {
node[GESTURE_KEY] = gobj = {};
}
for (var i = 0, dep, gd; i < deps.length; i++) {
dep = deps[i];
// don't add mouse handlers on iOS because they cause gray selection overlays
if (IS_TOUCH_ONLY && MOUSE_EVENTS.indexOf(dep) > -1) {
continue;
}
gd = gobj[dep];
if (!gd) {
gobj[dep] = gd = {_count: 0};
}
if (gd._count === 0) {
node.addEventListener(dep, this.handleNative);
}
gd[name] = (gd[name] || 0) + 1;
gd._count = (gd._count || 0) + 1;
}
node.addEventListener(evType, handler);
if (recognizer.touchAction) {
this.setTouchAction(node, recognizer.touchAction);
}
},
// automate event listener removal for native events
remove: function(node, evType, handler) {
// SD polyfill: handle case where `node` is unwrapped, like `document`
node = wrap(node);
var recognizer = this.gestures[evType];
var deps = recognizer.deps;
var name = recognizer.name;
var gobj = node[GESTURE_KEY];
if (gobj) {
for (var i = 0, dep, gd; i < deps.length; i++) {
dep = deps[i];
gd = gobj[dep];
if (gd && gd[name]) {
gd[name] = (gd[name] || 1) - 1;
gd._count = (gd._count || 1) - 1;
if (gd._count === 0) {
node.removeEventListener(dep, this.handleNative);
}
}
}
}
node.removeEventListener(evType, handler);
},
register: function(recog) {
this.recognizers.push(recog);
for (var i = 0; i < recog.emits.length; i++) {
this.gestures[recog.emits[i]] = recog;
}
},
findRecognizerByEvent: function(evName) {
for (var i = 0, r; i < this.recognizers.length; i++) {
r = this.recognizers[i];
for (var j = 0, n; j < r.emits.length; j++) {
n = r.emits[j];
if (n === evName) {
return r;
}
}
}
return null;
},
// set scrolling direction on node to check later on first move
// must call this before adding event listeners!
setTouchAction: function(node, value) {
if (HAS_NATIVE_TA) {
node.style.touchAction = value;
}
node[TOUCH_ACTION] = value;
},
fire: function(target, type, detail) {
var ev = Polymer.Base.fire(type, detail, {
node: target,
bubbles: true,
cancelable: true
});
// forward `preventDefault` in a clean way
if (ev.defaultPrevented) {
var preventer = detail.preventer || detail.sourceEvent;
if (preventer && preventer.preventDefault) {
preventer.preventDefault();
}
}
},
prevent: function(evName) {
var recognizer = this.findRecognizerByEvent(evName);
if (recognizer.info) {
recognizer.info.prevent = true;
}
},
/**
* Reset the 2500ms timeout on processing mouse input after detecting touch input.
*
* Touch inputs create synthesized mouse inputs anywhere from 0 to 2000ms after the touch.
* This method should only be called during testing with simulated touch inputs.
* Calling this method in production may cause duplicate taps or other gestures.
*
* @method resetMouseCanceller
*/
resetMouseCanceller: function() {
if (POINTERSTATE.mouse.mouseIgnoreJob) {
POINTERSTATE.mouse.mouseIgnoreJob.complete();
}
}
};
Gestures.register({
name: 'downup',
deps: ['mousedown', 'touchstart', 'touchend'],
flow: {
start: ['mousedown', 'touchstart'],
end: ['mouseup', 'touchend']
},
emits: ['down', 'up'],
info: {
movefn: null,
upfn: null
},
reset: function() {
untrackDocument(this.info);
},
mousedown: function(e) {
if (!hasLeftMouseButton(e)) {
return;
}
var t = Gestures.findOriginalTarget(e);
var self = this;
var movefn = function movefn(e) {
if (!hasLeftMouseButton(e)) {
self.fire('up', t, e);
untrackDocument(self.info);
}
};
var upfn = function upfn(e) {
if (hasLeftMouseButton(e)) {
self.fire('up', t, e);
}
untrackDocument(self.info);
};
trackDocument(this.info, movefn, upfn);
this.fire('down', t, e);
},
touchstart: function(e) {
this.fire('down', Gestures.findOriginalTarget(e), e.changedTouches[0], e);
},
touchend: function(e) {
this.fire('up', Gestures.findOriginalTarget(e), e.changedTouches[0], e);
},
fire: function(type, target, event, preventer) {
Gestures.fire(target, type, {
x: event.clientX,
y: event.clientY,
sourceEvent: event,
preventer: preventer,
prevent: function(e) {
return Gestures.prevent(e);
}
});
}
});
Gestures.register({
name: 'track',
touchAction: 'none',
deps: ['mousedown', 'touchstart', 'touchmove', 'touchend'],
flow: {
start: ['mousedown', 'touchstart'],
end: ['mouseup', 'touchend']
},
emits: ['track'],
info: {
x: 0,
y: 0,
state: 'start',
started: false,
moves: [],
addMove: function(move) {
if (this.moves.length > TRACK_LENGTH) {
this.moves.shift();
}
this.moves.push(move);
},
movefn: null,
upfn: null,
prevent: false
},
reset: function() {
this.info.state = 'start';
this.info.started = false;
this.info.moves = [];
this.info.x = 0;
this.info.y = 0;
this.info.prevent = false;
untrackDocument(this.info);
},
hasMovedEnough: function(x, y) {
if (this.info.prevent) {
return false;
}
if (this.info.started) {
return true;
}
var dx = Math.abs(this.info.x - x);
var dy = Math.abs(this.info.y - y);
return (dx >= TRACK_DISTANCE || dy >= TRACK_DISTANCE);
},
mousedown: function(e) {
if (!hasLeftMouseButton(e)) {
return;
}
var t = Gestures.findOriginalTarget(e);
var self = this;
var movefn = function movefn(e) {
var x = e.clientX, y = e.clientY;
if (self.hasMovedEnough(x, y)) {
// first move is 'start', subsequent moves are 'move', mouseup is 'end'
self.info.state = self.info.started ? (e.type === 'mouseup' ? 'end' : 'track') : 'start';
if (self.info.state === 'start') {
// if and only if tracking, always prevent tap
Gestures.prevent('tap');
}
self.info.addMove({x: x, y: y});
if (!hasLeftMouseButton(e)) {
// always fire "end"
self.info.state = 'end';
untrackDocument(self.info);
}
self.fire(t, e);
self.info.started = true;
}
};
var upfn = function upfn(e) {
if (self.info.started) {
movefn(e);
}
// remove the temporary listeners
untrackDocument(self.info);
};
// add temporary document listeners as mouse retargets
trackDocument(this.info, movefn, upfn);
this.info.x = e.clientX;
this.info.y = e.clientY;
},
touchstart: function(e) {
var ct = e.changedTouches[0];
this.info.x = ct.clientX;
this.info.y = ct.clientY;
},
touchmove: function(e) {
var t = Gestures.findOriginalTarget(e);
var ct = e.changedTouches[0];
var x = ct.clientX, y = ct.clientY;
if (this.hasMovedEnough(x, y)) {
if (this.info.state === 'start') {
// if and only if tracking, always prevent tap
Gestures.prevent('tap');
}
this.info.addMove({x: x, y: y});
this.fire(t, ct);
this.info.state = 'track';
this.info.started = true;
}
},
touchend: function(e) {
var t = Gestures.findOriginalTarget(e);
var ct = e.changedTouches[0];
// only trackend if track was started and not aborted
if (this.info.started) {
// reset started state on up
this.info.state = 'end';
this.info.addMove({x: ct.clientX, y: ct.clientY});
this.fire(t, ct, e);
}
},
fire: function(target, touch, preventer) {
var secondlast = this.info.moves[this.info.moves.length - 2];
var lastmove = this.info.moves[this.info.moves.length - 1];
var dx = lastmove.x - this.info.x;
var dy = lastmove.y - this.info.y;
var ddx, ddy = 0;
if (secondlast) {
ddx = lastmove.x - secondlast.x;
ddy = lastmove.y - secondlast.y;
}
return Gestures.fire(target, 'track', {
state: this.info.state,
x: touch.clientX,
y: touch.clientY,
dx: dx,
dy: dy,
ddx: ddx,
ddy: ddy,
sourceEvent: touch,
preventer: preventer,
hover: function() {
return Gestures.deepTargetFind(touch.clientX, touch.clientY);
}
});
}
});
Gestures.register({
name: 'tap',
deps: ['mousedown', 'click', 'touchstart', 'touchend'],
flow: {
start: ['mousedown', 'touchstart'],
end: ['click', 'touchend']
},
emits: ['tap'],
info: {
x: NaN,
y: NaN,
prevent: false
},
reset: function() {
this.info.x = NaN;
this.info.y = NaN;
this.info.prevent = false;
},
save: function(e) {
this.info.x = e.clientX;
this.info.y = e.clientY;
},
mousedown: function(e) {
if (hasLeftMouseButton(e)) {
this.save(e);
}
},
click: function(e) {
if (hasLeftMouseButton(e)) {
this.forward(e);
}
},
touchstart: function(e) {
this.save(e.changedTouches[0], e);
},
touchend: function(e) {
this.forward(e.changedTouches[0], e);
},
forward: function(e, preventer) {
var dx = Math.abs(e.clientX - this.info.x);
var dy = Math.abs(e.clientY - this.info.y);
var t = Gestures.findOriginalTarget(e);
// dx,dy can be NaN if `click` has been simulated and there was no `down` for `start`
if (isNaN(dx) || isNaN(dy) || (dx <= TAP_DISTANCE && dy <= TAP_DISTANCE) || isSyntheticClick(e)) {
// prevent taps from being generated if an event has canceled them
if (!this.info.prevent) {
Gestures.fire(t, 'tap', {
x: e.clientX,
y: e.clientY,
sourceEvent: e,
preventer: preventer
});
}
}
}
});
var DIRECTION_MAP = {
x: 'pan-x',
y: 'pan-y',
none: 'none',
all: 'auto'
};
Polymer.Base._addFeature({
_setupGestures: function() {
this.__polymerGestures = null;
},
// override _listen to handle gestures
_listen: function(node, eventName, handler) {
if (Gestures.gestures[eventName]) {
Gestures.add(node, eventName, handler);
} else {
node.addEventListener(eventName, handler);
}
},
// override _unlisten to handle gestures
_unlisten: function(node, eventName, handler) {
if (Gestures.gestures[eventName]) {
Gestures.remove(node, eventName, handler);
} else {
node.removeEventListener(eventName, handler);
}
},
/**
* Override scrolling behavior to all direction, one direction, or none.
*
* Valid scroll directions:
* - 'all': scroll in any direction
* - 'x': scroll only in the 'x' direction
* - 'y': scroll only in the 'y' direction
* - 'none': disable scrolling for this node
*
* @method setScrollDirection
* @param {String=} direction Direction to allow scrolling
* Defaults to `all`.
* @param {HTMLElement=} node Element to apply scroll direction setting.
* Defaults to `this`.
*/
setScrollDirection: function(direction, node) {
node = node || this;
Gestures.setTouchAction(node, DIRECTION_MAP[direction] || 'auto');
}
});
// export
Polymer.Gestures = Gestures;
})();
</script>
|
api/class-Simpletools.Page.Layout.html | getsimpletools/getsimpletools.github.io | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Class Simpletools\Page\Layout</title>
<link rel="stylesheet" href="resources/style.css?e99947befd7bf673c6b43ff75e9e0f170c88a60e">
</head>
<body>
<div id="left">
<div id="menu">
<a href="index.html" title="Overview"><span>Overview</span></a>
<div id="groups">
<h3>Namespaces</h3>
<ul>
<li class="active">
<a href="namespace-Simpletools.html">
Simpletools<span></span>
</a>
<ul>
<li>
<a href="namespace-Simpletools.Autoload.html">
Autoload </a>
</li>
<li>
<a href="namespace-Simpletools.Config.html">
Config </a>
</li>
<li>
<a href="namespace-Simpletools.Db.html">
Db<span></span>
</a>
<ul>
<li>
<a href="namespace-Simpletools.Db.Mysql.html">
Mysql </a>
</li>
</ul></li>
<li>
<a href="namespace-Simpletools.Event.html">
Event </a>
</li>
<li>
<a href="namespace-Simpletools.Http.html">
Http </a>
</li>
<li>
<a href="namespace-Simpletools.Mvc.html">
Mvc </a>
</li>
<li class="active">
<a href="namespace-Simpletools.Page.html">
Page </a>
</li>
<li>
<a href="namespace-Simpletools.Store.html">
Store </a>
</li>
</ul></li>
</ul>
</div>
<hr>
<div id="elements">
<h3>Classes</h3>
<ul>
<li class="active"><a href="class-Simpletools.Page.Layout.html">Layout</a></li>
</ul>
</div>
</div>
</div>
<div id="splitter"></div>
<div id="right">
<div id="rightInner">
<form id="search">
<input type="hidden" name="cx" value="">
<input type="hidden" name="ie" value="UTF-8">
<input type="text" name="q" class="text" placeholder="Search">
</form>
<div id="navigation">
<ul>
<li>
<a href="index.html" title="Overview"><span>Overview</span></a>
</li>
<li>
<a href="namespace-Simpletools.Page.html" title="Summary of Simpletools\Page"><span>Namespace</span></a>
</li>
<li class="active">
<span>Class</span> </li>
</ul>
<ul>
</ul>
<ul>
</ul>
</div>
<div id="content" class="class">
<h1>Class Layout</h1>
<div class="info">
<b>Namespace:</b> <a href="namespace-Simpletools.html">Simpletools</a>\<a href="namespace-Simpletools.Page.html">Page</a><br>
<b>Located at</b> <a href="source-class-Simpletools.Page.Layout.html#44-413" title="Go to source code">Simpletools/Page/Layout.php</a>
<br>
</div>
<table class="summary methods" id="methods">
<caption>Methods summary</caption>
<tr data-order="__construct" id="___construct">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#___construct">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#67-89" title="Go to source code">__construct</a>( <span>array <var>$settings</var></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="settings" id="_settings">
<td class="attributes"><code>
public static
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_settings">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#91-104" title="Go to source code">settings</a>( <span>array <var>$settings</var></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="getInstance" id="_getInstance">
<td class="attributes"><code>
public static
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_getInstance">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#112-125" title="Go to source code">getInstance</a>( <span> <var>$settings</var> = <span class="php-keyword1">null</span></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="setLayout" id="_setLayout">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_setLayout">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#127-135" title="Go to source code">setLayout</a>( <span> <var>$layDir</var></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="registerLayouts" id="_registerLayouts">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_registerLayouts">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#137-147" title="Go to source code">registerLayouts</a>( <span>array <var>$layouts</var></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="start" id="_start">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_start">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#149-152" title="Go to source code">start</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="startBuffer" id="_startBuffer">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_startBuffer">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#154-159" title="Go to source code">startBuffer</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="clearBuffer" id="_clearBuffer">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_clearBuffer">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#161-164" title="Go to source code">clearBuffer</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="render" id="_render">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_render">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#166-195" title="Go to source code">render</a>( <span> <var>$minify</var> = <span class="php-keyword1">false</span></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="layout" id="_layout">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_layout">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#197-200" title="Go to source code">layout</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="displayContent" id="_displayContent">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_displayContent">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#202-205" title="Go to source code">displayContent</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="disable" id="_disable">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_disable">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#207-213" title="Go to source code">disable</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="set" id="_set">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_set">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#215-223" title="Go to source code">set</a>( <span> <var>$layout</var> = <span class="php-quote">'default'</span></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="enable" id="_enable">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_enable">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#225-235" title="Go to source code">enable</a>( <span> <var>$layout</var> = <span class="php-quote">'default'</span></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="setTitle" id="_setTitle">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_setTitle">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#244-248" title="Go to source code">setTitle</a>( <span> <var>$title</var></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="setDefaultLayoutTitle" id="_setDefaultLayoutTitle">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_setDefaultLayoutTitle">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#250-254" title="Go to source code">setDefaultLayoutTitle</a>( <span> <var>$title</var></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="displayTitle" id="_displayTitle">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_displayTitle">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#256-259" title="Go to source code">displayTitle</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="setDescription" id="_setDescription">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_setDescription">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#261-265" title="Go to source code">setDescription</a>( <span> <var>$description</var></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="displayDescription" id="_displayDescription">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_displayDescription">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#267-270" title="Go to source code">displayDescription</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="addInternalCss" id="_addInternalCss">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_addInternalCss">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#272-276" title="Go to source code">addInternalCss</a>( <span> <var>$style</var></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="displayInternalCss" id="_displayInternalCss">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_displayInternalCss">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#278-288" title="Go to source code">displayInternalCss</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="clearInternalCss" id="_clearInternalCss">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_clearInternalCss">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#290-294" title="Go to source code">clearInternalCss</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="addExternalCss" id="_addExternalCss">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_addExternalCss">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#296-306" title="Go to source code">addExternalCss</a>( <span> <var>$href</var></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="addExternalCss_" id="_addExternalCss_">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_addExternalCss_">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#308-312" title="Go to source code">addExternalCss_</a>( <span> <var>$href</var></span>, <span> <var>$media</var> = <span class="php-quote">'screen'</span></span>, <span> <var>$rel</var> = <span class="php-quote">'stylesheet'</span></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="clearExternalCss" id="_clearExternalCss">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_clearExternalCss">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#314-318" title="Go to source code">clearExternalCss</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="displayExternalCss" id="_displayExternalCss">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_displayExternalCss">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#320-323" title="Go to source code">displayExternalCss</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="addMetaTag" id="_addMetaTag">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_addMetaTag">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#325-330" title="Go to source code">addMetaTag</a>( <span> <var>$name</var></span>, <span> <var>$content</var></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="displayMetaTags" id="_displayMetaTags">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_displayMetaTags">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#332-344" title="Go to source code">displayMetaTags</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="addHeadLink" id="_addHeadLink">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_addHeadLink">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#346-357" title="Go to source code">addHeadLink</a>( <span>array <var>$options</var></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="displayHeadLinks" id="_displayHeadLinks">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_displayHeadLinks">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#359-362" title="Go to source code">displayHeadLinks</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="addExternalJs" id="_addExternalJs">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_addExternalJs">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#364-374" title="Go to source code">addExternalJs</a>( <span> <var>$href</var></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="clearExternalJs" id="_clearExternalJs">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_clearExternalJs">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#376-380" title="Go to source code">clearExternalJs</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="displayExternalJs" id="_displayExternalJs">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_displayExternalJs">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#382-385" title="Go to source code">displayExternalJs</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="addInternalJs" id="_addInternalJs">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_addInternalJs">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#387-391" title="Go to source code">addInternalJs</a>( <span> <var>$source</var></span> )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="clearInternalJs" id="_clearInternalJs">
<td class="attributes"><code>
public
&
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_clearInternalJs">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#393-397" title="Go to source code">clearInternalJs</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
<tr data-order="displayInternalJs" id="_displayInternalJs">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_displayInternalJs">#</a>
<code><a href="source-class-Simpletools.Page.Layout.html#399-411" title="Go to source code">displayInternalJs</a>( )</code>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</div></td>
</tr>
</table>
<table class="summary properties" id="properties">
<caption>Properties summary</caption>
<tr data-order="content" id="$content">
<td class="attributes"><code>
public
string
</code></td>
<td class="name">
<a href="source-class-Simpletools.Page.Layout.html#52" title="Go to source code"><var>$content</var></a>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</td>
<td class="value">
<div>
<a href="#$content" class="anchor">#</a>
<code><span class="php-quote">''</span></code>
</div>
</td>
</tr>
<tr data-order="description" id="$description">
<td class="attributes"><code>
public
</code></td>
<td class="name">
<a href="source-class-Simpletools.Page.Layout.html#57" title="Go to source code"><var>$description</var></a>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</td>
<td class="value">
<div>
<a href="#$description" class="anchor">#</a>
<code><span class="php-keyword1">null</span></code>
</div>
</td>
</tr>
<tr data-order="title" id="$title">
<td class="attributes"><code>
public
</code></td>
<td class="name">
<a href="source-class-Simpletools.Page.Layout.html#58" title="Go to source code"><var>$title</var></a>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</td>
<td class="value">
<div>
<a href="#$title" class="anchor">#</a>
<code><span class="php-keyword1">null</span></code>
</div>
</td>
</tr>
<tr data-order="_layouts" id="$_layouts">
<td class="attributes"><code>
protected
array
</code></td>
<td class="name">
<a href="source-class-Simpletools.Page.Layout.html#62" title="Go to source code"><var>$_layouts</var></a>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</td>
<td class="value">
<div>
<a href="#$_layouts" class="anchor">#</a>
<code><span class="php-keyword1">array</span>()</code>
</div>
</td>
</tr>
<tr data-order="_currentLayout" id="$_currentLayout">
<td class="attributes"><code>
protected
string
</code></td>
<td class="name">
<a href="source-class-Simpletools.Page.Layout.html#63" title="Go to source code"><var>$_currentLayout</var></a>
<div class="description short">
</div>
<div class="description detailed hidden">
</div>
</td>
<td class="value">
<div>
<a href="#$_currentLayout" class="anchor">#</a>
<code><span class="php-quote">'default'</span></code>
</div>
</td>
</tr>
</table>
</div>
<div id="footer">
API documentation generated by <a href="http://apigen.org">ApiGen</a>
</div>
</div>
</div>
<script src="resources/combined.js"></script>
<script src="elementlist.js"></script>
</body>
</html>
|
src/partials/help-reset.html | ucla/iam | <div>
<a href="#" title="Click or press enter to display help" class="dropdown standalone-help" data-toggle="reset-page-help" tab-index="0">
<span class="icon-circle"><i class="fa fa-info"></i></span>
</a>
</div>
<div class="dropdown-pane" id="reset-page-help" data-dropdown data-hover="true" data-hover-pane="true" data-auto-focus="true">
<p>If you cannot complete the password reset form, please bring University-issued photo identification to the Bruin OnLine Help Desk located in Suite 124, Kerckhoff Hall. If you are not able to visit the Help Desk, please fax in a completed copy of the <a href="/files/service_request.pdf">UCLA Logon Service Request Form</a>, with all required supporting documentation.</p>
</div> |
web/_site/doc/pl/systems/ffi/index.html | slawosz/rubinius | <!DOCTYPE html>
<html dir="ltr" lang="pl">
<head>
<title>Foreign Function Interface - Rubinius</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta content='pl' http-equiv='content-language'>
<meta content='Rubinius is an implementation of the Ruby programming language. The Rubinius bytecode virtual machine is written in C++. The bytecode compiler is written in pure Ruby. The vast majority of the core library is also written in Ruby, with some supporting primitives that interact with the VM directly.' name='description'>
<link href='/' rel='home'>
<link href='/' rel='start'>
<link href='/doc/pl/systems/primitives' rel='prev' title='Primitives'>
<link href='/doc/pl/systems/concurrency' rel='next' title='Współbieżność'>
<!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]-->
<script src="/javascripts/jquery-1.3.2.js"></script>
<script src="/javascripts/paging_keys.js"></script>
<script src="/javascripts/application.js"></script>
<style>article, aside, dialog, figure, footer, header, hgroup, menu, nav, section { display: block; }</style>
<link href="/stylesheets/blueprint/screen.css" media="screen" rel="stylesheet" />
<link href="/stylesheets/application.css" media="screen" rel="stylesheet" />
<link href="/stylesheets/blueprint/print.css" media="print" rel="stylesheet" />
<!--[if IE]><link href="/stylesheets/blueprint/ie.css" media="screen" rel="stylesheet" type="text/css" /><![endif]-->
<!--[if IE]><link href="/stylesheets/ie.css" media="screen" rel="stylesheet" type="text/css" /><![endif]-->
<link href="/stylesheets/pygments.css" media="screen" rel="stylesheet" />
</head>
<body>
<div class='container'>
<div class='span-21 doc_menu'>
<header>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a id="blog" href="/blog">Blog</a></li>
<li><a id="documentation" href="/doc/en">Documentation</a></li>
<li><a href="/projects">Projects</a></li>
<li><a href="/roadmap">Roadmap</a></li>
<li><a href="/releases">Releases</a></li>
</ul>
</nav>
</header>
</div>
<div class='span-3 last'>
<div id='version'>
<a href="/releases/1.2.4">1.2.4</a>
</div>
</div>
</div>
<div class="container languages">
<nav>
<span class="label">Język:</span>
<ul>
<li><a href="/doc/de/systems/ffi/"
>de</a></li>
<li><a href="/doc/en/systems/ffi/"
>en</a></li>
<li><a href="/doc/es/systems/ffi/"
>es</a></li>
<li><a href="/doc/fr/systems/ffi/"
>fr</a></li>
<li><a href="/doc/ja/systems/ffi/"
>ja</a></li>
<li><a href="/doc/pl/systems/ffi/"
class="current"
>pl</a></li>
<li><a href="/doc/pt-br/systems/ffi/"
>pt-br</a></li>
<li><a href="/doc/ru/systems/ffi/"
>ru</a></li>
</ul>
</nav>
</div>
<div class="container doc_page_nav">
<span class="label">Wstecz:</span>
<a href="/doc/pl/systems/primitives">Primitives</a>
<span class="label">Do góry:</span>
<a href="/doc/pl/">Spis treści</a>
<span class="label">Dalej:</span>
<a href="/doc/pl/systems/concurrency">Współbieżność</a>
</div>
<div class="container documentation">
<h2>Foreign Function Interface</h2>
<div class="review">
<p>This topic has missing or partial documentation. Please help us improve it.</p>
<p>
See <a href="/doc/pl/how-to/write-documentation">How-To - Write Documentation</a>
</p>
</div>
</div>
<div class="container doc_page_nav">
<span class="label">Wstecz:</span>
<a href="/doc/pl/systems/primitives">Primitives</a>
<span class="label">Do góry:</span>
<a href="/doc/pl/">Spis treści</a>
<span class="label">Dalej:</span>
<a href="/doc/pl/systems/concurrency">Współbieżność</a>
</div>
<div class="container">
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'rubinius';
var disqus_identifier = '/doc/pl/systems/ffi/';
var disqus_url = 'http://rubini.us/doc/pl/systems/ffi/';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
<footer>
<div class='container'>
<nav>
<ul>
<li><a rel="external" href="http://twitter.com/rubinius">Follow Rubinius on Twitter</a></li>
<li><a rel="external" href="http://github.com/rubinius/rubinius">Fork Rubinius on github</a></li>
<li><a rel="external" href="http://engineyard.com">An Engine Yard project</a></li>
</ul>
</nav>
</div>
</footer>
<script>
var _gaq=[['_setAccount','UA-12328521-1'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>
|
fonts/open-sans.css | Airlift-Framework/airlift-framework.github.com | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on June 7, 2012 02:07:42 PM America/New_York */
@font-face {
font-family: 'OpenSans';
src: url('OpenSans-Light-webfont.eot');
src: url('OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-Light-webfont.woff') format('woff'),
url('OpenSans-Light-webfont.ttf') format('truetype'),
url('OpenSans-Light-webfont.svg#OpenSansLight') format('svg');
font-weight: lighter;
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'OpenSans';
src: url('OpenSans-LightItalic-webfont.eot');
src: url('OpenSans-LightItalic-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-LightItalic-webfont.woff') format('woff'),
url('OpenSans-LightItalic-webfont.ttf') format('truetype'),
url('OpenSans-LightItalic-webfont.svg#OpenSansLightItalic') format('svg');
font-weight: lighter;
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'OpenSans';
src: url('OpenSans-Regular-webfont.eot');
src: url('OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-Regular-webfont.woff') format('woff'),
url('OpenSans-Regular-webfont.ttf') format('truetype'),
url('OpenSans-Regular-webfont.svg#OpenSansRegular') format('svg');
font-weight: normal;
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'OpenSans';
src: url('OpenSans-Italic-webfont.eot');
src: url('OpenSans-Italic-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-Italic-webfont.woff') format('woff'),
url('OpenSans-Italic-webfont.ttf') format('truetype'),
url('OpenSans-Italic-webfont.svg#OpenSansItalic') format('svg');
font-weight: normal;
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: 'OpenSans';
src: url('OpenSans-Semibold-webfont.eot');
src: url('OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-Semibold-webfont.woff') format('woff'),
url('OpenSans-Semibold-webfont.ttf') format('truetype'),
url('OpenSans-Semibold-webfont.svg#OpenSansSemibold') format('svg');
font-weight: bold;
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'OpenSans';
src: url('OpenSans-SemiboldItalic-webfont.eot');
src: url('OpenSans-SemiboldItalic-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-SemiboldItalic-webfont.woff') format('woff'),
url('OpenSans-SemiboldItalic-webfont.ttf') format('truetype'),
url('OpenSans-SemiboldItalic-webfont.svg#OpenSansSemiboldItalic') format('svg');
font-weight: bold;
font-weight: 700;
font-style: italic;
}
@font-face {
font-family: 'OpenSans';
src: url('OpenSans-Bold-webfont.eot');
src: url('OpenSans-Bold-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-Bold-webfont.woff') format('woff'),
url('OpenSans-Bold-webfont.ttf') format('truetype'),
url('OpenSans-Bold-webfont.svg#OpenSansBold') format('svg');
font-weight: bolder;
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'OpenSans';
src: url('OpenSans-BoldItalic-webfont.eot');
src: url('OpenSans-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-BoldItalic-webfont.woff') format('woff'),
url('OpenSans-BoldItalic-webfont.ttf') format('truetype'),
url('OpenSans-BoldItalic-webfont.svg#OpenSansBoldItalic') format('svg');
font-weight: bolder;
font-weight: 700;
font-style: italic;
} |
include/addons/design_suite/js/html2image/node-v0.10.0-linux-x64/lib/node_modules/npm/html/doc/shrinkwrap.html | exhibia/exhibia | <!doctype html>
<html>
<title>shrinkwrap</title>
<meta http-equiv="content-type" value="text/html;utf-8">
<link rel="stylesheet" type="text/css" href="../static/style.css">
<body>
<div id="wrapper">
<h1><a href="../doc/shrinkwrap.html">shrinkwrap</a></h1> <p>Lock down dependency versions</p>
<h2 id="SYNOPSIS">SYNOPSIS</h2>
<pre><code>npm shrinkwrap</code></pre>
<h2 id="DESCRIPTION">DESCRIPTION</h2>
<p>This command locks down the versions of a package's dependencies so that you can
control exactly which versions of each dependency will be used when your package
is installed.</p>
<p>By default, "npm install" recursively installs the target's dependencies (as
specified in package.json), choosing the latest available version that satisfies
the dependency's semver pattern. In some situations, particularly when shipping
software where each change is tightly managed, it's desirable to fully specify
each version of each dependency recursively so that subsequent builds and
deploys do not inadvertently pick up newer versions of a dependency that satisfy
the semver pattern. Specifying specific semver patterns in each dependency's
package.json would facilitate this, but that's not always possible or desirable,
as when another author owns the npm package. It's also possible to check
dependencies directly into source control, but that may be undesirable for other
reasons.</p>
<p>As an example, consider package A:</p>
<pre><code>{
"name": "A",
"version": "0.1.0",
"dependencies": {
"B": "<0.1.0"
}
}</code></pre>
<p>package B:</p>
<pre><code>{
"name": "B",
"version": "0.0.1",
"dependencies": {
"C": "<0.1.0"
}
}</code></pre>
<p>and package C:</p>
<pre><code>{
"name": "C,
"version": "0.0.1"
}</code></pre>
<p>If these are the only versions of A, B, and C available in the registry, then
a normal "npm install A" will install:</p>
<pre><code>[email protected]
`-- [email protected]
`-- [email protected]</code></pre>
<p>However, if [email protected] is published, then a fresh "npm install A" will install:</p>
<pre><code>[email protected]
`-- [email protected]
`-- [email protected]</code></pre>
<p>assuming the new version did not modify B's dependencies. Of course, the new
version of B could include a new version of C and any number of new
dependencies. If such changes are undesirable, the author of A could specify a
dependency on [email protected]. However, if A's author and B's author are not the same
person, there's no way for A's author to say that he or she does not want to
pull in newly published versions of C when B hasn't changed at all.</p>
<p>In this case, A's author can run</p>
<pre><code>npm shrinkwrap</code></pre>
<p>This generates npm-shrinkwrap.json, which will look something like this:</p>
<pre><code>{
"name": "A",
"version": "0.1.0",
"dependencies": {
"B": {
"version": "0.0.1",
"dependencies": {
"C": {
"version": "0.1.0"
}
}
}
}
}</code></pre>
<p>The shrinkwrap command has locked down the dependencies based on what's
currently installed in node_modules. When "npm install" installs a package with
a npm-shrinkwrap.json file in the package root, the shrinkwrap file (rather than
package.json files) completely drives the installation of that package and all
of its dependencies (recursively). So now the author publishes [email protected], and
subsequent installs of this package will use [email protected] and [email protected], regardless the
dependencies and versions listed in A's, B's, and C's package.json files.</p>
<h3 id="Using-shrinkwrapped-packages">Using shrinkwrapped packages</h3>
<p>Using a shrinkwrapped package is no different than using any other package: you
can "npm install" it by hand, or add a dependency to your package.json file and
"npm install" it.</p>
<h3 id="Building-shrinkwrapped-packages">Building shrinkwrapped packages</h3>
<p>To shrinkwrap an existing package:</p>
<ol><li>Run "npm install" in the package root to install the current versions of all
dependencies.</li><li>Validate that the package works as expected with these versions.</li><li>Run "npm shrinkwrap", add npm-shrinkwrap.json to git, and publish your
package.</li></ol>
<p>To add or update a dependency in a shrinkwrapped package:</p>
<ol><li>Run "npm install" in the package root to install the current versions of all
dependencies.</li><li>Add or update dependencies. "npm install" each new or updated package
individually and then update package.json. Note that they must be
explicitly named in order to be installed: running <code>npm install</code> with
no arguments will merely reproduce the existing shrinkwrap.</li><li>Validate that the package works as expected with the new dependencies.</li><li>Run "npm shrinkwrap", commit the new npm-shrinkwrap.json, and publish your
package.</li></ol>
<p>You can use <a href="../doc/outdated.html">outdated(1)</a> to view dependencies with newer versions available.</p>
<h3 id="Other-Notes">Other Notes</h3>
<p>Since "npm shrinkwrap" uses the locally installed packages to construct the
shrinkwrap file, devDependencies will be included if and only if you've
installed them already when you make the shrinkwrap.</p>
<p>A shrinkwrap file must be consistent with the package's package.json file. "npm
shrinkwrap" will fail if required dependencies are not already installed, since
that would result in a shrinkwrap that wouldn't actually work. Similarly, the
command will fail if there are extraneous packages (not referenced by
package.json), since that would indicate that package.json is not correct.</p>
<p>If shrinkwrapped package A depends on shrinkwrapped package B, B's shrinkwrap
will not be used as part of the installation of A. However, because A's
shrinkwrap is constructed from a valid installation of B and recursively
specifies all dependencies, the contents of B's shrinkwrap will implicitly be
included in A's shrinkwrap.</p>
<h3 id="Caveats">Caveats</h3>
<p>Shrinkwrap files only lock down package versions, not actual package contents.
While discouraged, a package author can republish an existing version of a
package, causing shrinkwrapped packages using that version to pick up different
code than they were before. If you want to avoid any risk that a byzantine
author replaces a package you're using with code that breaks your application,
you could modify the shrinkwrap file to use git URL references rather than
version numbers so that npm always fetches all packages from git.</p>
<p>If you wish to lock down the specific bytes included in a package, for
example to have 100% confidence in being able to reproduce a deployment
or build, then you ought to check your dependencies into source control,
or pursue some other mechanism that can verify contents rather than
versions.</p>
<h2 id="SEE-ALSO">SEE ALSO</h2>
<ul><li><a href="../doc/install.html">install(1)</a></li><li><a href="../doc/json.html">json(1)</a></li><li><a href="../doc/list.html">list(1)</a></li></ul>
</div>
<p id="footer">shrinkwrap — [email protected]</p>
<script>
;(function () {
var wrapper = document.getElementById("wrapper")
var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
.filter(function (el) {
return el.parentNode === wrapper
&& el.tagName.match(/H[1-6]/)
&& el.id
})
var l = 2
, toc = document.createElement("ul")
toc.innerHTML = els.map(function (el) {
var i = el.tagName.charAt(1)
, out = ""
while (i > l) {
out += "<ul>"
l ++
}
while (i < l) {
out += "</ul>"
l --
}
out += "<li><a href='#" + el.id + "'>" +
( el.innerText || el.text || el.innerHTML)
+ "</a>"
return out
}).join("\n")
toc.id = "toc"
document.body.appendChild(toc)
})()
</script>
</body></html>
|
website/templates/email/thread_replied.html | canvasnetworks/canvas | {% extends "email/_notification.html" %}
{% set replied_comment = notification.comment.parent_comment %}
{% set replied_content = notification.comment.parent_comment.reply_content %}
{% block headline %}
<span><strong>Your thread</strong> received a <strong>reply</strong> from
{% endblock %}
{% block email_type %}thread reply notifications{% endblock %} |
trace_viewer/core/analysis/single_cpu_slice_sub_view.html | vmpstr/trace-viewer | <!DOCTYPE html>
<!--
Copyright (c) 2013 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<link rel="import" href="/core/analysis/analysis_sub_view.html">
<link rel="import" href="/core/analysis/util.html">
<link rel="import" href="/core/analysis/analysis_link.html">
<link rel="import" href="/base/utils.html">
<polymer-element name="tv-c-single-cpu-slice-sub-view"
extends="tracing-analysis-sub-view">
<template>
<style>
table {
border-collapse: collapse;
border-width: 0;
margin-bottom: 25px;
width: 100%;
}
table tr > td:first-child {
padding-left: 2px;
}
table tr > td {
padding: 2px 4px 2px 4px;
vertical-align: text-top;
width: 150px;
}
table td td {
padding: 0 0 0 0;
width: auto;
}
tr {
vertical-align: top;
}
tr:nth-child(2n+0) {
background-color: #e2e2e2;
}
</style>
<table>
<tr>
<td>Running process:</td><td id="process-name"></td>
</tr>
<tr>
<td>Running thread:</td><td id="thread-name"></td>
</tr>
<tr>
<td>Start:</td><td id="start"></td>
</tr>
<tr>
<td>Duration:</td><td id="duration"></td>
</tr>
<tr>
<td>Active slices:</td><td id="running-thread"></td>
</tr>
<tr>
<td>Args:</td>
<td>
<tv-c-analysis-generic-object-view id="args">
</tv-c-analysis-generic-object-view>
</td>
</tr>
</table>
</template>
<script>
'use strict';
Polymer({
created: function() {
this.currentSelection_ = undefined;
},
get selection() {
return this.currentSelection_;
},
set selection(selection) {
if (selection.length !== 1)
throw new Error('Only supports single slices');
if (!(selection[0] instanceof tv.c.trace_model.CpuSlice))
throw new Error('Only supports thread time slices');
this.currentSelection_ = selection;
var cpuSlice = selection[0];
var thread = cpuSlice.threadThatWasRunning;
var shadowRoot = this.shadowRoot;
if (thread) {
shadowRoot.querySelector('#process-name').textContent =
thread.parent.userFriendlyName;
shadowRoot.querySelector('#thread-name').textContent =
thread.userFriendlyName;
} else {
shadowRoot.querySelector('#process-name').parentElement.style.display =
'none';
shadowRoot.querySelector('#thread-name').textContent = cpuSlice.title;
}
shadowRoot.querySelector('#start').textContent =
tv.c.analysis.tsString(cpuSlice.start);
shadowRoot.querySelector('#duration').textContent =
tv.c.analysis.tsString(cpuSlice.duration);
var runningThreadEl = shadowRoot.querySelector('#running-thread');
var timeSlice = cpuSlice.getAssociatedTimeslice();
if (!timeSlice) {
runningThreadEl.parentElement.style.display = 'none';
} else {
var threadLink = document.createElement('tv-c-analysis-link');
threadLink.selection = new tv.c.Selection(timeSlice);
threadLink.textContent = 'Click to select';
runningThreadEl.parentElement.style.display = '';
runningThreadEl.textContent = '';
runningThreadEl.appendChild(threadLink);
}
shadowRoot.querySelector('#args').object = cpuSlice.args;
}
});
</script>
</polymer-element>
|
static/wysihtml5/css/editor.css | handlers/openingparliament |
.editable:hover {
background-color: #FDFDFF;
box-shadow: 0 0 20px #D5E3ED;
-webkit-background-clip: padding-box;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
#wysihtml5-toolbar {
box-shadow: 0 0 5px #999;
position: fixed;
top: 10px;
left: 10px;
width: 50px;
-webkit-background-clip: padding-box;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
#wysihtml5-toolbar .dialog {
background-color: #f8f8f7;
box-shadow: 0 0 10px #999;
display: block;
left: 60px;
padding: 10px;
position: absolute;
top: 120px;
width: 300px;
-webkit-background-clip: padding-box;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
#wysihtml5-toolbar a {
display: inline-block;
height: 50px;
width: 48px;
border: 1px solid #ddd;
}
#wysihtml5-toolbar a.cmd {
background-color: #f8f8f7;
background-position: center center;
background-repeat: no-repeat;
text-indent: -999px;
}
#wysihtml5-toolbar a.cmd:first-child {
-webkit-border-radius: 5px 5px 0 0;
-moz-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
}
#wysihtml5-toolbar a.cmd:last-child {
background-color: red;
-webkit-border-radius: 0 0 5px 5px;
-moz-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
}
#wysihtml5-toolbar a.italic { background-image: url(/static/images/icons/glyphicons_101_italic.png); }
#wysihtml5-toolbar a.bold { background-image: url(/static/images/icons/glyphicons_102_bold.png); }
#wysihtml5-toolbar a.link { background-image: url(/static/images/icons/glyphicons_050_link.png); }
#wysihtml5-toolbar a.img { background-image: url(/static/images/icons/glyphicons_011_camera.png); }
#wysihtml5-toolbar a.list { background-image: url(/static/images/icons/glyphicons_114_list.png); }
#wysihtml5-toolbar a.blockquote { background-image: url(/static/images/icons/glyphicons_108_left_indent.png); }
#wysihtml5-toolbar a.heading {
color: #000;
font-weight: bold;
height: 30px;
padding: 10px 0 0 0;
text-align: center;
text-indent: 0;
}
#wysihtml5-toolbar a.save {
background-color: #C1E3D4;
background-image: url(/static/images/icons/glyphicons_206_ok_2.png);
}
#wysihtml5-toolbar a.cancel {
background-color: #E3C1D1;
background-image: url(/static/images/icons/glyphicons_207_remove_2.png);
} |
pontoon/contributors/static/css/settings.css | mathjazz/pontoon | #locale-settings {
margin-top: 30px;
}
#preferred-locale {
margin-top: 10px;
}
#locale-settings .label {
color: #aaa;
display: inline-block;
font-size: 16px;
font-weight: 300;
margin: 6px 10px 0 0;
text-align: right;
width: 280px;
vertical-align: top;
}
#locale-settings .locale-selector {
display: inline-block;
}
#locale-settings .locale-selector .locale.select {
width: 280px;
}
#locale-settings .locale-selector .locale.select .button {
background: #272a2f;
color: #aaaaaa;
font-size: 16px;
font-weight: 400;
height: 36px;
margin: 0;
padding: 8px 12px;
width: 100%;
}
#locale-settings .locale-selector .locale.select .menu {
background: #272a2f;
border: 1px solid #333941;
border-top: none;
top: 36px;
left: -1px;
width: 282px;
z-index: 30;
}
#main form {
margin: 0 auto;
}
#main form section {
margin: 0 auto 70px;
}
#main form section h3 {
margin-bottom: 20px;
}
#main .controls .cancel {
float: none;
margin: 9px;
}
#profile-form {
display: block;
position: relative;
text-align: left;
width: 620px;
}
#profile-form .field {
text-align: left;
}
#profile-form .field:not(:last-child) {
margin-bottom: 20px;
}
#profile-form .field input {
color: #ffffff;
background: #333941;
border: 1px solid #4d5967;
border-radius: 3px;
float: none;
width: 290px;
padding: 4px;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#profile-form button {
margin-top: 10px;
}
#profile-form .help {
color: #888888;
font-style: italic;
margin-top: 5px;
}
.errorlist {
color: #f36;
list-style: none;
margin: 0;
margin-top: 5px;
text-align: left;
}
.check-list {
cursor: pointer;
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.