]> git.saurik.com Git - wxWidgets.git/commitdiff
ensure all topic overviews have an horizontal rule with the list of the sections...
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sun, 2 Mar 2008 15:33:26 +0000 (15:33 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sun, 2 Mar 2008 15:33:26 +0000 (15:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52257 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 files changed:
docs/doxygen/Doxyfile.all
docs/doxygen/Doxyfile.inc
docs/doxygen/htmlfooter.inc
docs/doxygen/htmlheader.inc
docs/doxygen/overviews/app.h
docs/doxygen/overviews/bookctrl.h
docs/doxygen/overviews/debugging.h
docs/doxygen/overviews/dialog.h
docs/doxygen/overviews/font.h
docs/doxygen/overviews/imagelist.h
docs/doxygen/overviews/internationalization.h
docs/doxygen/overviews/ipc.h
docs/doxygen/overviews/nonenglish.h
docs/doxygen/overviews/printing.h
docs/doxygen/overviews/scrolling.h
docs/doxygen/overviews/splitterwindow.h
docs/doxygen/overviews/stream.h
docs/doxygen/overviews/toolbar.h
docs/doxygen/overviews/validator.h
docs/doxygen/overviews/windowdeletion.h

index 889e97f16f1ef9e55af41c871fae077435c4e0c8..ac69a02814c8e0c1d04e8685708f8df0b81ce558 100644 (file)
@@ -19,7 +19,7 @@ GENERATE_XML           = YES
 GENERATE_LATEX         = NO
 GENERATE_RTF           = NO
 GENERATE_MAN           = NO
-GENERATE_PERLMOD       = NO
+GENERATE_PERLMOD       = YES
 GENERATE_AUTOGEN_DEF   = NO
 GENERATE_TAGFILE       =
 
index 3587de6ccb3919f643e4c41fa9ed25a1bb67d445..c441c0dd00c79864e243058d7842e94c332d1bd6 100644 (file)
@@ -305,7 +305,7 @@ XML_PROGRAMLISTING     = YES
 # configuration options related to the Perl module output
 #---------------------------------------------------------------------------
 GENERATE_PERLMOD       = NO
-PERLMOD_LATEX          = NO
+PERLMOD_LATEX          = YES
 PERLMOD_PRETTY         = YES
 PERLMOD_MAKEVAR_PREFIX =
 
index 3deabdee314eaa02ad7cad13f933c4193c73acdd..3b93ff5c1b59d48c6e108b8f985c5c88be0dc6ca 100644 (file)
@@ -1,12 +1,14 @@
 <!-- ******************************************************* -->
 <!--             Standard wxWidgets footer                   -->
 
-<br><hr>
+<!-- NOTE: <br/> must go inside <p> but <hr/> must go outside -->
+<p><br/></p><hr/>
+
 <table width="100%" border="0">
 <tr>
     <td align="left">
         <a href="http://www.wxwidgets.org" style="margin-left: 0px">
-            <img src="powered-by-wxwidgets.png" alt="wxWidgets logo">
+            <img src="powered-by-wxwidgets.png" alt="wxWidgets logo"/>
         </a>
     </td>
     <td valign="middle" align="center"><p class="footer">Page generated <tt>$datetime</tt> by <a href="http://www.doxygen.org">Doxygen</a> $doxygenversion</p></td>
index 97ccd37a89682c6f1d24c63f78e4fd18861dd7bf..36fb2f5ae1cc28f36d98111b86293e18c4685178 100644 (file)
@@ -1,17 +1,17 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 
 <!-- ****************************************************** -->
 <!--            Standard wxWidgets header                   -->
 
-<html>
+<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">
+    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
     <title>$title</title>
-    <meta name="author" content="wxWidgets team">
-    <meta name="created" content="$datetime">
-    <meta name="keywords" content="wxWidgets">
-    <link href="wxwidgets.css" rel="stylesheet" type="text/css">
-    <link href="tabs.css" rel="stylesheet" type="text/css">
+    <meta name="author" content="wxWidgets team"/>
+    <meta name="created" content="$datetime"/>
+    <meta name="keywords" content="wxWidgets"/>
+    <link href="wxwidgets.css" rel="stylesheet" type="text/css"/>
+    <link href="tabs.css" rel="stylesheet" type="text/css"/>
 </head>
 <body>
 
index af846a66c309becd1446d24a99423d9f5a5cb67b..d44cf7bc5898ebb1fcc348ceb6ba21d0c66b7fb7 100644 (file)
 
  Classes: wxApp
 
-
+ @li @ref overview_app_intro
  @li @ref overview_app_shutdown
 
 
  <hr>
 
 
+ @section overview_app_intro Introduction
+
  A wxWidgets application does not have a @e main procedure; the equivalent is the
  wxApp::OnInit member defined for a class derived from wxApp.
 
index 961190186bda9cf220b4a5e01153592ff1641611..51fd2c9b04f69a8251df84c71baef46a0f559d92 100644 (file)
 
  Classes: wxNotebook, wxListbook, wxChoicebook, wxTreebook, wxToolbook
 
+ @li @ref overview_bookctrl_intro
+ @li @ref overview_bookctrl_bestbookctrl
+
+
+ <hr>
+
 
  @section overview_bookctrl_intro Introduction
 
index 948b4a5be0390f934f1fb5ef29a6cd51b0d8376e..80c447b7a9f12b54ede78c38aee80b17f619864d 100644 (file)
  defined. You can also test the __WXDEBUG__ symbol in your own applications to execute
  code that should be active only in debug mode.
 
+ @li @ref overview_debugging_dbgctx
+ @li @ref overview_debugging_dbgmacros
+ @li @ref overview_debugging_logging
+ @li @ref overview_debugging_dbgctx2 
+
+
+ <hr>
 
 
  @section overview_debugging_dbgctx wxDebugContext
index 00f07aa90606c101a955cbbbf28a2243c22e6761..691736e40bcb059828c63c8cda5bc50ec19ba266 100644 (file)
  member functions. Validation of data in controls is covered in @ref overview_validator.
 
 
+ @li @ref overview_dialog_autoscrolling
+
+
+ <hr>
+
+
 
  @section overview_dialog_autoscrolling Automatic scrolling dialogs
 
index 5ed37b530fcd7648f556c1c11ad6d4b9f00d71a3..6a9367911d740f02c8272e760cf137b8dc73f756 100644 (file)
 
  Class: wxFont, wxFontDialog
 
+ @li @ref overview_font_intro
+ @li @ref overview_font_nativeinfo
+
+ <hr>
+
+
+ @section overview_font_intro Introduction
+
  A font is an object which determines the appearance of text, primarily
  when drawing text to a window or device context. A font is determined by
  the following parameters (not all of them have to be specified, of course):
        current mapping mode. However, user scaling on a device context will also
        scale fonts under both environments.
 
- @li @ref overview_font_nativeinfo
-
-
- <hr>
 
 
  @section overview_font_nativeinfo Native font information
index 450d452090694da148103d68801d0f976082847f..8c3cc04304fd1c7eb696557645921f041a80554f 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        imagelist
+// Name:        imagelist.h
 // Purpose:     topic overview
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 
  @page imagelist_overview wxImageList overview
 
- Classes: #wxImageList
+ Classes: wxImageList
+
  An image list is a list of images that may have transparent areas.
  The class helps an application organise a collection of images
  so that they can be referenced by integer index instead of by
  pointer.
- Image lists are used in #wxNotebook,
- #wxListCtrl, #wxTreeCtrl and
- some other control classes.
 
- */
+ Image lists are used in wxNotebook, wxListCtrl, wxTreeCtrl and
+ some other control classes.
 
+*/
 
index 95f9d1677d9cdf2a0c7f684e9bce0c0945e404d2..6cf281f518727be25da41e7448a973bd61e0a052 100644 (file)
 
 @page overview_i18n Internationalization
 
+@li @ref overview_i18n_intro
+@li @ref overview_i18n_menuaccel
+
+<hr>
+
+
+@section overview_i18n_intro Introduction
+
 Although internationalization of an application (i18n for short) involves far
 more than just translating its text messages to another message - date, time
 and currency formats need changing too, some languages are written left to
index 0013c1803ca3da46e78a299c1b087f940fb4e832..26a5fb709671bf5679e5150903187a37f6407c10 100644 (file)
 
 Classes: wxServer, wxConnection, wxClient
 
+@li @ref overview_ipc_datatransfer
+@li @ref overview_ipc_examples
+@li @ref overview_ipc_dde
+
+
+<hr>
+
+
 wxWidgets has a number of different classes to help with interprocess
 communication and network programming. This section only discusses one family
 of classes -- the DDE-like protocol -- but here's a list of other useful
index fbbd4143ba4b3dd95c045ab358340b36a6efbe83..b1b52d18cc1f220c384c1333ef2680fb0886dd66 100644 (file)
 
 @page overview_nonenglish Writing Non-English Applications
 
+
+@li @ref overview_nonenglish_locales
+@li @ref overview_nonenglish_strings
+@li @ref overview_nonenglish_fontmapping
+@li @ref overview_nonenglish_converting
+@li @ref overview_nonenglish_help
+
+
+<hr>
+
+
 This article describes how to write applications that communicate with the user
 in a language other than English. Unfortunately many languages use different
 charsets under Unix and Windows (and other platforms, to make the situation
index de21b4b77b6965c9f553c47a93454a8e510c795e..d0748be8c0f3e47e348c3086ae413bb853c538ec 100644 (file)
@@ -22,6 +22,22 @@ Classes:
 @li wxPageSetupDialog
 @li wxPageSetupDialogData
 
+
+@li @ref overview_printing_printout
+@li @ref overview_printing_printer
+@li @ref overview_printing_printpreview
+@li @ref overview_printing_printerdc
+@li @ref overview_printing_postscriptdc
+@li @ref overview_printing_printdialog
+@li @ref overview_printing_printdata
+@li @ref overview_printing_printdialogdata
+@li @ref overview_printing_pagesetupdialog
+@li @ref overview_printing_pagesetupdialogdata
+
+
+<hr>
+
+
 The printing framework relies on the application to provide classes whose
 member functions can respond to particular requests, such as 'print this page'
 or 'does this page exist in the document?'. This method allows wxWidgets to
index 1c1eb4316478131314f0170e6a3f164c51c77961..fd3f0660200092818bddd884447a140ee902332a 100644 (file)
@@ -15,6 +15,12 @@ Classes:
 @li wxScrolledWindow
 @li wxScrollBar
 
+@li @ref overview_scrolling_model
+@li @ref overview_scrolling_example
+
+<hr>
+
+
 Scrollbars come in various guises in wxWidgets. All windows have the potential
 to show a vertical scrollbar and/or a horizontal scrollbar: it is a basic
 capability of a window. However, in practice, not all windows do make use of
index 6be2e69faf710becb7be21d1dab6416709294ef4..401f4fb83100bed0bc3518ae77c1c5207201867d 100644 (file)
 
 Classes: wxSplitterWindow
 
+@li @ref overview_splitterwindow_appearance
+@li @ref overview_splitterwindow_example
+
+<hr>
+
+
+@section overview_splitterwindow_appearance Appearance
+
 The following screenshot shows the appearance of a splitter window with a
 horizontal split.
 
index 57097edc675efc85273635274940bc87663428ef..a10b5357efeec370384f8d3e8bb26d39f5a9fabc 100644 (file)
@@ -18,6 +18,15 @@ Classes:
 @li wxFilterInputStream
 @li wxFilterOutputStream
 
+@li @ref overview_stream_intro
+@li @ref overview_stream_example
+
+<hr>
+
+
+
+@section overview_stream_intro Introduction
+
 Standard C++ streams can cause problems on several platforms: they work quite
 well in most cases, but in the multi-threaded case, for example, they have many
 problems. Some Borland compilers refuse to work at all with them and using
@@ -58,6 +67,7 @@ nothing in the case of wxMemoryIn/OutputStream which bases itself on
 wxStreamBuffer. This could also be a simple link to the a true syscall (for
 example read(...), write(...)).
 
+
 @section overview_stream_example Example
 
 Usage is simple. We can take the example of wxFileInputStream and here is some
index 4acbb584a86d12a9f8f2b7c855c0e717c5a07134..0cf9bc355eefae05644fa2be0300be1682c0a8cb 100644 (file)
 
 Classes: wxToolBar
 
+@li @ref overview_toolbar_intro
+@li @ref overview_toolbar_library
+
+
+<hr>
+
+
+@section overview_toolbar_intro Introduction
+
 The toolbar family of classes allows an application to use toolbars in a
 variety of configurations and styles.
 
index 4d36ff2fe469b5feb2aca64734c81abbde5fc074..97094c9cb378747d7df690a2419746791868b053 100644 (file)
@@ -24,6 +24,14 @@ data transfer, validation and filtering) and wxGenericValidator (which does
 data transfer for a range of controls); or you can write your own.
 
 
+@li @ref overview_validator_example
+@li @ref overview_validator_anatomy
+@li @ref overview_validator_dialogs
+
+
+<hr>
+
+
 @section overview_validator_example Example
 
 Here is an example of wxTextValidator usage.
index 420b4c166480a8e668f9b946981f1e7f10ea5ddf..72d4123ea613fe86aff413fea2fc1709443f9a6f 100644 (file)
@@ -16,6 +16,17 @@ Window deletion can be a confusing subject, so this overview is provided to
 help make it clear when and how you delete windows, or respond to user requests
 to close windows.
 
+@li @ref overview_windowdeletion_sequence
+@li @ref overview_windowdeletion_close
+@li @ref overview_windowdeletion_default
+@li @ref overview_windowdeletion_menuexit
+@li @ref overview_windowdeletion_exitapp
+@li @ref overview_windowdeletion_deletion
+@li @ref overview_windowdeletion_windowkinds
+
+
+<hr>
+
 
 @section overview_windowdeletion_sequence Sequence of Events During Window Deletion