]> git.saurik.com Git - wxWidgets.git/commitdiff
Various underscore doc fixes and some wxXCharBuffer documentation.
authorRyan Norton <wxprojects@comcast.net>
Fri, 8 Apr 2005 19:11:58 +0000 (19:11 +0000)
committerRyan Norton <wxprojects@comcast.net>
Fri, 8 Apr 2005 19:11:58 +0000 (19:11 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33435 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/artprov.tex
docs/latex/wx/mbcnvfil.tex
docs/latex/wx/settings.tex
docs/latex/wx/tbuffer.tex [new file with mode: 0644]
docs/latex/wx/topics.tex
docs/latex/wx/wxmsw.tex

index fedf79d678928a321d88b41f66c48a4209e4e41c..16a804837e4e5a7850a31f2ceb9569ab34dfd51a 100644 (file)
@@ -176,12 +176,12 @@ The bitmap if one of registered providers recognizes the ID or wxNullBitmap othe
 Same as \helpref{wxArtProvider::GetBitmap}{wxartprovidergetbitmap}, but
 return a wxIcon object (or wxNullIcon on failure).
 
-\func{static wxSize}{GetSizeHint}{\param{const wxArtClient\& }{client}, \param{bool }{platform_default = false}}
+\func{static wxSize}{GetSizeHint}{\param{const wxArtClient\& }{client}, \param{bool }{platform\_default = false}}
 
 Returns a suitable size hint for the given {\it wxArtClient}. If 
-{\it platform_default} is \true, return a size based on the current platform, 
+{\it platform\_default} is \true, return a size based on the current platform, 
 otherwise return the size from the topmost wxArtProvider. {\it wxDefaultSize} may be 
-returned if the client doesn't have a specified size, like wxART_OTHER for example.
+returned if the client doesn't have a specified size, like wxART\_OTHER for example.
 
 \membersection{wxArtProvider::PopProvider}\label{wxartproviderctor}
 
index 2ed8c847df68fe353954c4ac1dd1ee18c2f55a7a..fc3f3d8388703d1a23035df2cf122212033e4806 100644 (file)
@@ -1,8 +1,3 @@
-%
-% automatically generated by HelpGen from
-% ../include/wx/strconv.h at 25/Mar/00 10:20:56
-%
-
 \section{\class{wxMBConvFile}}\label{wxmbconvfile}
 
 This class used to define the class instance 
@@ -12,9 +7,9 @@ either of type wxConvLibc (on most platforms) or wxConvUTF8
 filesystem multibyte encoding and Unicode. {\bf wxConvFileName} 
 can also be set to a something else at run-time which is used 
 e.g. by wxGTK to use a class which checks the environment 
-variable {\bf G_FILESYSTEM_ENCODING} indicating that filenames 
+variable {\bf G\_FILESYSTEM\_ENCODING} indicating that filenames 
 should not be interpreted as UTF8 and also for converting 
-invalid UTF8 characters (e.g. if there is a filename in iso8859_1)
+invalid UTF8 characters (e.g. if there is a filename in iso8859\_1)
 to strings with octal values. 
 
 Since some platforms (such as Win32) use Unicode in the filenames,
index cf7dc16b9406f4d62be5680e9cefdc7989aeac9a..3f290a8a30f9c6f123a21dec4841db3941e44f89 100644 (file)
@@ -103,7 +103,7 @@ Returns the value of a system metric, or -1 if the metric is not supported on th
 The value of {\it win} determines if the metric returned is a global value or
 a \helpref{wxWindow}{wxwindow} based value, in which case it might determine the widget, the
 display the window is on, or something similar. The window given should be as close to the
-metric as possible (e.g a wxTopLevelWindow in case of the wxSYS_CAPTION_Y metric).
+metric as possible (e.g a wxTopLevelWindow in case of the wxSYS\_CAPTION\_Y metric).
 
 {\it index} can be one of:
 
@@ -159,7 +159,7 @@ where it would otherwise present the information only in audible form; zero othe
 Specifying the {\it win} parameter is encouraged, because some metrics on some ports are not supported without one,
 or they might be capable of reporting better values if given one. If a window does not make sense for a metric,
 one should still be given, as for example it might determine which displays cursor width is requested with
-wxSYS_CURSOR_X.
+wxSYS\_CURSOR\_X.
 
 \pythonnote{This static method is implemented in Python as a
 standalone function named {\tt wxSystemSettings\_GetMetric}}
diff --git a/docs/latex/wx/tbuffer.tex b/docs/latex/wx/tbuffer.tex
new file mode 100644 (file)
index 0000000..577a746
--- /dev/null
@@ -0,0 +1,31 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Name:        tbuffer.tex
+%% Purpose:     wxXXXBuffer classes overview
+%% Author:      Ryan Norton <wxprojects@comcast.net>
+%% Modified by: All wxWidgets Developers
+%% Created:     04/08/2005
+%% RCS-ID:      $Id$
+%% Copyright:   (c) wxWidgets team
+%% License:     wxWindows license
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+\section{Buffer classes overview}\label{bufferclasses}
+
+wxWidgets uses two classes of classes for dealing with buffers in memory.
+
+The first is one for dealing with character buffers, namely wxCharBuffer for char pointer or multi-byte c strings and wxWCharBuffer for wchar\_t pointer or wide character c strings.
+
+Secondly, wxWidgets uses, although only rarely currently, wxMemoryBuffer for dealing with raw buffers in memory.
+
+\subsection{wxXCharBuffer Overview}\label{wxcbov}
+
+\wxheading{General Usage}
+
+As mentioned, wxCharBuffer and its wide character variant wxWCharBuffer deal with c strings in memory.  They have two constructors, one in which you pass the c string you want them to have a copy of, and another where you specify the size of the buffer in memory in characters you want.
+
+wxCharBuffer and its variant only contain the c string as a member, so they can be used safely to c functions with variable arguments such as printf.  They also contain standard assignment, character access operators and a copy constructor.
+
+\wxheading{Destruction}
+
+It should be noted that on destruction wxCharBuffer and its wide character variant delete the c string that hold onto.  If you want to get the pointer to the buffer and don't want wxCharBuffer to delete it on destruction, use the member function release to do so.
+
index 7cb08c38ed06adb03053d6bc29ac258bff18496e..93c0fc83f53ff3e690ff3cdb6a9e41be06dabd5f 100644 (file)
@@ -12,6 +12,7 @@ This chapter contains a selection of topic overviews.
 \input tapp.tex
 \input truntime.tex
 \input tstring.tex
+\input tbuffer.tex
 \input tdate.tex
 \input tunicode.tex
 \input tmbconv.tex
index 377a432e61257aa4dcfea831d0087d822f418131..15031681d81768b74527b1936e1783c95d50362e 100644 (file)
@@ -134,7 +134,7 @@ and unregister the button when you're done with it. For example:
   win->UnregisterHotKey(0);
 \end{verbatim}
 
-You may have to register the buttons in a wxEVT_ACTIVATE event handler
+You may have to register the buttons in a wxEVT\_ACTIVATE event handler
 since other applications will grab the buttons.
 
 There is currently no method of finding out the names of the special
@@ -165,7 +165,7 @@ and wxTopLevelWindow::SetRightMenu, for example:
 #endif
 \end{verbatim}
 
-For implementing property sheets (flat tabs), use a wxNotebook with wxNB_FLAT|wxNB_BOTTOM
+For implementing property sheets (flat tabs), use a wxNotebook with wxNB\_FLAT|wxNB\_BOTTOM
 and have the notebook left, top and right sides overlap the dialog by about 3 pixels
 to eliminate spurious borders. You can do this by using a negative spacing in your
 sizer Add() call. The cross-platform property sheet dialog \helpref{wxPropertySheetDialog}{wxpropertysheetdialog} is