~ubuntu-branches/ubuntu/saucy/gnome-shell/saucy-proposed

« back to all changes in this revision

Viewing changes to docs/reference/st/html/StGroup.html

Tags: upstream-3.3.90
Import upstream version 3.3.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 
2
<html>
 
3
<head>
 
4
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 
5
<title>StGroup</title>
 
6
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
 
7
<link rel="home" href="index.html" title="St Reference Manual">
 
8
<link rel="up" href="containers.html" title="Containers">
 
9
<link rel="prev" href="StBoxLayout.html" title="StBoxLayout">
 
10
<link rel="next" href="StScrollView.html" title="StScrollView">
 
11
<meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
 
12
<link rel="stylesheet" href="style.css" type="text/css">
 
13
</head>
 
14
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
 
15
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
 
16
<tr valign="middle">
 
17
<td><a accesskey="p" href="StBoxLayout.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
 
18
<td><a accesskey="u" href="containers.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
 
19
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
 
20
<th width="100%" align="center">St Reference Manual</th>
 
21
<td><a accesskey="n" href="StScrollView.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
 
22
</tr>
 
23
<tr><td colspan="5" class="shortcuts">
 
24
<a href="#StGroup.synopsis" class="shortcut">Top</a>
 
25
                   | 
 
26
                  <a href="#StGroup.description" class="shortcut">Description</a>
 
27
                   | 
 
28
                  <a href="#StGroup.object-hierarchy" class="shortcut">Object Hierarchy</a>
 
29
                   | 
 
30
                  <a href="#StGroup.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
 
31
</td></tr>
 
32
</table>
 
33
<div class="refentry">
 
34
<a name="StGroup"></a><div class="titlepage"></div>
 
35
<div class="refnamediv"><table width="100%"><tr>
 
36
<td valign="top">
 
37
<h2><span class="refentrytitle"><a name="StGroup.top_of_page"></a>StGroup</span></h2>
 
38
<p>StGroup — A fixed layout container</p>
 
39
</td>
 
40
<td valign="top" align="right"></td>
 
41
</tr></table></div>
 
42
<div class="refsynopsisdiv">
 
43
<a name="StGroup.synopsis"></a><h2>Synopsis</h2>
 
44
<pre class="synopsis">struct              <a class="link" href="StGroup.html#StGroup-struct" title="struct StGroup">StGroup</a>;
 
45
struct              <a class="link" href="StGroup.html#StGroupClass" title="struct StGroupClass">StGroupClass</a>;
 
46
<a class="link" href="StWidget.html" title="StWidget"><span class="returnvalue">StWidget</span></a> *          <a class="link" href="StGroup.html#st-group-new" title="st_group_new ()">st_group_new</a>                        (<em class="parameter"><code><span class="type">void</span></code></em>);
 
47
</pre>
 
48
</div>
 
49
<div class="refsect1">
 
50
<a name="StGroup.object-hierarchy"></a><h2>Object Hierarchy</h2>
 
51
<pre class="synopsis">
 
52
  GObject
 
53
   +----GInitiallyUnowned
 
54
         +----ClutterActor
 
55
               +----<a class="link" href="StWidget.html" title="StWidget">StWidget</a>
 
56
                     +----<a class="link" href="StContainer.html" title="StContainer">StContainer</a>
 
57
                           +----StGroup
 
58
</pre>
 
59
</div>
 
60
<div class="refsect1">
 
61
<a name="StGroup.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
 
62
<p>
 
63
StGroup implements
 
64
 ClutterContainer,  ClutterScriptable,  ClutterAnimatable and  AtkImplementorIface.</p>
 
65
</div>
 
66
<div class="refsect1">
 
67
<a name="StGroup.description"></a><h2>Description</h2>
 
68
<p>
 
69
A <a class="link" href="StGroup.html" title="StGroup"><span class="type">StGroup</span></a> is an Actor which contains multiple child actors positioned
 
70
relative to the <a class="link" href="StGroup.html" title="StGroup"><span class="type">StGroup</span></a> position. Other operations such as scaling,
 
71
rotating and clipping of the group will apply to the child actors.
 
72
</p>
 
73
<p>
 
74
A <a class="link" href="StGroup.html" title="StGroup"><span class="type">StGroup</span></a>'s size is defined by the size and position of its children;
 
75
it will be the smallest non-negative size that covers the right and bottom
 
76
edges of all of its children.
 
77
</p>
 
78
<p>
 
79
Setting the size on a Group using <span class="type">ClutterActor</span> methods like
 
80
<code class="function">clutter_actor_set_size()</code> will override the natural size of the Group,
 
81
however this will not affect the size of the children and they may still
 
82
be painted outside of the allocation of the group. One way to constrain
 
83
the visible area of a <a class="link" href="StGroup.html" title="StGroup"><span class="type">StGroup</span></a> to a specified allocation is to
 
84
explicitly set the size of the <a class="link" href="StGroup.html" title="StGroup"><span class="type">StGroup</span></a> and then use the
 
85
<span class="type">"clip-to-allocation"</span> property.
 
86
</p>
 
87
</div>
 
88
<div class="refsect1">
 
89
<a name="StGroup.details"></a><h2>Details</h2>
 
90
<div class="refsect2">
 
91
<a name="StGroup-struct"></a><h3>struct StGroup</h3>
 
92
<pre class="programlisting">struct StGroup;</pre>
 
93
<p>
 
94
The <a class="link" href="StGroup.html" title="StGroup"><span class="type">StGroup</span></a> struct contains only private data
 
95
</p>
 
96
</div>
 
97
<hr>
 
98
<div class="refsect2">
 
99
<a name="StGroupClass"></a><h3>struct StGroupClass</h3>
 
100
<pre class="programlisting">struct StGroupClass {
 
101
};
 
102
</pre>
 
103
<p>
 
104
The <a class="link" href="StGroup.html#StGroupClass" title="struct StGroupClass"><span class="type">StGroupClass</span></a> struct contains only private data
 
105
</p>
 
106
</div>
 
107
<hr>
 
108
<div class="refsect2">
 
109
<a name="st-group-new"></a><h3>st_group_new ()</h3>
 
110
<pre class="programlisting"><a class="link" href="StWidget.html" title="StWidget"><span class="returnvalue">StWidget</span></a> *          st_group_new                        (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
 
111
<p>
 
112
Create a new  <a class="link" href="StGroup.html" title="StGroup"><span class="type">StGroup</span></a>.
 
113
</p>
 
114
<div class="variablelist"><table border="0">
 
115
<col align="left" valign="top">
 
116
<tbody><tr>
 
117
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
 
118
<td>the newly created <a class="link" href="StGroup.html" title="StGroup"><span class="type">StGroup</span></a> actor</td>
 
119
</tr></tbody>
 
120
</table></div>
 
121
</div>
 
122
</div>
 
123
<div class="refsect1">
 
124
<a name="StGroup.see-also"></a><h2>See Also</h2>
 
125
<span class="type">ClutterGroup</span>
 
126
</div>
 
127
</div>
 
128
<div class="footer">
 
129
<hr>
 
130
          Generated by GTK-Doc V1.18.1</div>
 
131
</body>
 
132
</html>
 
 
b'\\ No newline at end of file'