1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Code organization: GdaBrowser hacking manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="index.html" title="GdaBrowser hacking manual">
<link rel="up" href="part_begin.html" title="Part I. Getting started">
<link rel="prev" href="prog_struct.html" title="Program's structure">
<link rel="next" href="part_api.html" title="Part II. API reference">
<meta name="generator" content="GTK-Doc V1.32 (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="5"><tr valign="middle">
<td width="100%" align="left" class="shortcuts"></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
<td><a accesskey="u" href="part_begin.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
<td><a accesskey="p" href="prog_struct.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
<td><a accesskey="n" href="part_api.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
</tr></table>
<div class="chapter">
<div class="titlepage"><div><div><h2 class="title">
<a name="code_orga"></a>Code organization</h2></div></div></div>
<p>
GdaBrowser's code is organized as follows,
assuming <code class="filename">$(top_srcdir)</code> is Libgda's
top source directory:
</p>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem"><p>All the code is in
<code class="filename">$(top_srcdir)/tools/browser</code></p></li>
<li class="listitem"><p>Some objects and functions are shared with LibgdaUi's own code which
is located in <code class="filename">$(top_srcdir)/libgda-ui/internal</code></p></li>
<li class="listitem"><p>All the main objects' code is in <code class="filename">$(top_srcdir)/tools/browser</code></p></li>
<li class="listitem"><p>the <code class="filename">$(top_srcdir)/tools/browser/common</code> directory holds some objects and widgets which are used throught GdaBrowser's code</p></li>
<li class="listitem"><p>the <code class="filename">$(top_srcdir)/tools/browser/data</code> directory contains all the small icons used inside GdaBrowser (at various sizes), while some more application oriented icons are in <code class="filename">$(top_srcdir)/tools/browser</code> </p></li>
<li class="listitem"><p>the help files are stored in the <code class="filename">$(top_srcdir)/tools/browser/help</code> directory (each sub directory corresponds to a translation, except for the <code class="filename">C</code> which is the english and reference one)</p></li>
<li class="listitem">Each perspective's code is in the <code class="filename">$(top_srcdir)/tools/browser/<perspective name></code> directory, with the <code class="filename">$(top_srcdir)/tools/browser/dummy-perspective</code> an example to implement a new perspective<p></p>
</li>
<li class="listitem"><p>The <code class="filename">$(top_srcdir)/tools/browser/canvas</code> directory contains widgets to do some drawings, compiled only if the GooCanvas library has been detected at configure time.</p></li>
</ul></div>
<p>
</p>
</div>
<div class="footer">
<hr>Generated by GTK-Doc V1.32</div>
</body>
</html>
|