summaryrefslogtreecommitdiff
path: root/gtk+-mingw/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext.html
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2018-08-20 21:12:06 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2018-08-20 21:12:06 -0400
commit63e87c2d0c9d263f14c77b68f85c67d46ece82a9 (patch)
tree6260365cbf7d24f37d27669e8538227fcb72e243 /gtk+-mingw/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext.html
parenta4460f6d9453bbd7e584937686449cef3e19f052 (diff)
Removed gtk+ docsHEADmaster
Diffstat (limited to 'gtk+-mingw/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext.html')
-rw-r--r--gtk+-mingw/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext.html74
1 files changed, 0 insertions, 74 deletions
diff --git a/gtk+-mingw/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext.html b/gtk+-mingw/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext.html
deleted file mode 100644
index 547e1cd..0000000
--- a/gtk+-mingw/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext.html
+++ /dev/null
@@ -1,74 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Theming changes</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
-<link rel="home" href="index.html" title="GTK+ 3 Reference Manual">
-<link rel="up" href="migrating.html" title="Part V. Migrating from Previous Versions of GTK+">
-<link rel="prev" href="ch24s02.html" title="Changes that need to be done at the time of the switch">
-<link rel="next" href="gtk-migrating-theme-GtkStyleContext-engines.html" title="Migrating theme engines">
-<meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
-<link rel="stylesheet" href="style.css" type="text/css">
-</head>
-<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
-<td><a accesskey="p" href="ch24s02.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
-<td><a accesskey="u" href="migrating.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
-<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
-<th width="100%" align="center">GTK+ 3 Reference Manual</th>
-<td><a accesskey="n" href="gtk-migrating-theme-GtkStyleContext-engines.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
-</tr></table>
-<div class="chapter">
-<div class="titlepage"><div><div><h2 class="title">
-<a name="gtk-migrating-GtkStyleContext"></a>Theming changes</h2></div></div></div>
-<div class="toc"><dl>
-<dt><span class="section"><a href="gtk-migrating-GtkStyleContext.html#gtk-migrating-GtkStyleContext-themes">Migrating themes</a></span></dt>
-<dt><span class="section"><a href="gtk-migrating-theme-GtkStyleContext-engines.html">Migrating theme engines</a></span></dt>
-<dt><span class="section"><a href="gtk-migrating-GtkStyleContext-parser-extensions.html">Extending the CSS parser</a></span></dt>
-<dt><span class="section"><a href="gtk-migrating-GtkStyleContext-css.html">Using the CSS file format</a></span></dt>
-<dt><span class="section"><a href="gtk-migrating-GtkStyleContext-checklist.html">A checklist for widgets</a></span></dt>
-<dt><span class="section"><a href="gtk-migrating-GtkStyleContext-parsing.html">Parsing of custom resources</a></span></dt>
-<dt><span class="section"><a href="gtk-migrating-GtkStyleContext-bonus-points.html">Bonus points</a></span></dt>
-</dl></div>
-<p>
- In GTK+ 3.0, <a class="link" href="GtkStyleContext.html" title="GtkStyleContext"><span class="type">GtkStyleContext</span></a> was added to replace <a class="link" href="GtkStyle.html" title="GtkStyle"><span class="type">GtkStyle</span></a> and
- the theming infrastructure available in 2.x. GtkStyleContext is an
- object similar in spirit to GtkStyle, as it contains theming information,
- although in a more complete and tokenized fashion. There are two aspects
- to switching to GtkStyleContext: porting themes and theme engines, and
- porting applications, libraries and widgets.
- </p>
-<div class="section">
-<div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="gtk-migrating-GtkStyleContext-themes"></a>Migrating themes</h2></div></div></div>
-<p>
- From GTK+ 3.0 on, theme engines must implement <a class="link" href="GtkThemingEngine.html" title="GtkThemingEngine"><span class="type">GtkThemingEngine</span></a> and be
- installed in <code class="filename">$libdir/gtk+-3.0/$GTK_VERSION/theming-engines</code>,
- and the files containing style information must be written in the CSS-like
- format that is understood by <a class="link" href="GtkCssProvider.html" title="GtkCssProvider"><span class="type">GtkCssProvider</span></a>. For a theme named
- "Clearlooks", the CSS file parsed by default is
- <code class="filename">$datadir/themes/Clearlooks/gtk-3.0/gtk.css</code>,
- with possible variants such as the dark theme being named
- <code class="filename">gtk-dark.css</code> in the same directory.
- </p>
-<p>
- If your theme RC file was providing values for <a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a>, you
- can install a <code class="filename">settings.ini</code> keyfile along with
- the <code class="filename">gtk.css</code> to provide theme-specific defaults
- for settings.
- </p>
-<p>
- Key themes have been converted to CSS syntax too. See the
- <a class="link" href="GtkCssProvider.html#css-binding-set">GtkCssProvider</a> documentation
- information about the syntax. GTK+ looks for key themes in the file
- <code class="filename">$datadir/themes/<em class="replaceable"><code>theme</code></em>/gtk-3.0/gtk-keys.css</code>, where <em class="replaceable"><code>theme</code></em> is the current
- key theme name.
- </p>
-</div>
-</div>
-<div class="footer">
-<hr>
- Generated by GTK-Doc V1.18.1</div>
-</body>
-</html> \ No newline at end of file