]> git.saurik.com Git - wxWidgets.git/commitdiff
final f*h interface header reviews
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Thu, 25 Sep 2008 20:00:31 +0000 (20:00 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Thu, 25 Sep 2008 20:00:31 +0000 (20:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55891 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/doxygen/overviews/xrc_format.h
interface/wx/filepicker.h
interface/wx/font.h
interface/wx/fontdlg.h
interface/wx/fontenum.h
interface/wx/fontmap.h
interface/wx/fontpicker.h
interface/wx/frame.h

index ba71107d3d09d7b2ac97c5ec780a8111138806a8..18931c53af3b4e249f9de08284230412979080ce 100644 (file)
@@ -362,7 +362,7 @@ In most cases, specifying @c stock_client is not needed.
 Examples of stock bitmaps usage:
 @code
 <bitmap stock_id="fixed-width"/>        <!-- custom app-specific art -->
-<bitmap stock_id="wxART_FILE_OPEN"/>    <!-- standard art->
+<bitmap stock_id="wxART_FILE_OPEN"/>    <!-- standard art -->
 @endcode
 
 Specifying the bitmap directly and using @c stock_id are mutually exclusive.
index 9d57338383417ae7a818a05bb4c769ecd2f0505c..6fdd64aa5c2f6b6b916e6cedfe6a9c51b67d48ee 100644 (file)
@@ -262,6 +262,13 @@ public:
     This event class is used for the events generated by
     wxFilePickerCtrl and by wxDirPickerCtrl.
 
+    @beginEventTable{wxFileDirPickerEvent}
+    @event{EVT_FILEPICKER_CHANGED(id, func)}
+        Generated whenever the selected file changes.
+    @event{EVT_DIRPICKER_CHANGED(id, func)}
+        Generated whenever the selected directory changes.
+    @endEventTable
+
     @library{wxcore}
     @category{events}
 
index ca682bc9a3e5b4e598cd1f95fd6ad07be6bf1a15..012b2927fbace64f5fac54d0e0550384b3f273dc 100644 (file)
@@ -369,7 +369,7 @@ public:
     /**
         Destructor.
 
-        See @ref overview_refcountdestruct "reference-counted object destruction"
+        See @ref overview_refcount_destruct "reference-counted object destruction"
         for more info.
 
         @remarks Although all remaining fonts are deleted when the application
@@ -466,8 +466,9 @@ public:
 
     //@{
     /**
-        These functions take the same parameters as @ref ctor() wxFont
-        constructor and return a new font object allocated on the heap.
+        These functions take the same parameters as
+        @ref wxFont::wxFont "wxFont constructors" and return a new font
+        object allocated on the heap.
 
         Using @c New() is currently the only way to directly create a font with
         the given size in pixels on platforms other than wxMSW.
@@ -610,7 +611,7 @@ public:
     /**
         Inequality operator.
 
-        See @ref overview_refcountequality "reference-counted object comparison" for
+        See @ref overview_refcount_equality "reference-counted object comparison" for
         more info.
     */
     bool operator !=(const wxFont& font);
@@ -618,7 +619,7 @@ public:
     /**
         Equality operator.
 
-        See @ref overview_refcountequality "reference-counted object comparison" for
+        See @ref overview_refcount_equality "reference-counted object comparison" for
         more info.
     */
     bool operator ==(const wxFont& font);
index 52389acde9b58ba58a561621063441b91288bed3..1fd6a061913668dcba9106a06ba371466a87d3d7 100644 (file)
@@ -14,7 +14,7 @@
     @library{wxcore}
     @category{cmndlg}
 
-    @see Overview(), wxFontData, wxGetFontFromUser()
+    @see overview_cmndlg_font, wxFontData, wxGetFontFromUser()
 */
 class wxFontDialog : public wxDialog
 {
@@ -32,7 +32,7 @@ public:
 
     /**
         Constructor.
-        Pass a parent window, and the @ref overview_wxfontdata "font data" object
+        Pass a parent window, and the @ref wxFontData "font data" object
         to be used to initialize the dialog controls.
     */
     wxFontDialog(wxWindow* parent, const wxFontData& data);
@@ -55,7 +55,7 @@ public:
 
     //@{
     /**
-        Returns the @ref overview_wxfontdata "font data" associated with the
+        Returns the @ref wxFontData "font data" associated with the
         font dialog.
     */
     const wxFontData& GetFontData() const;
index 7ed8230d244da17137a74984c88a723800c7b640..99327a7311d14fe53fb971627d3147d51ba9fec0 100644 (file)
@@ -30,7 +30,7 @@
     @library{wxcore}
     @category{gdi}
 
-    @see @ref overview_fontencoding, @ref sample_font, wxFont, wxFontMapper
+    @see @ref overview_fontencoding, @ref page_samples_font, wxFont, wxFontMapper
 */
 class wxFontEnumerator
 {
index 097fd17c3728ee38d3436e2b0ed76d60aa804285..790e551063fbde34990de4d5a01672c41a83ed70 100644 (file)
 
     In case everything else fails (i.e. there is no record in config file
     and "interactive" is @false or user denied to choose any replacement),
-    the class queries wxEncodingConverter
-    for "equivalent" encodings (e.g. iso8859-2 and cp1250) and tries them.
+    the class queries wxEncodingConverter for "equivalent" encodings
+    (e.g. iso8859-2 and cp1250) and tries them.
+
+
+    @section fontmapper_mbconv Using wxFontMapper in conjunction with wxMBConv classes
+
+    If you need to display text in encoding which is not available at host
+    system (see wxFontMapper::IsEncodingAvailable), you may use these two
+    classes to find font in some similar encoding (see wxFontMapper::GetAltForEncoding)
+    and convert the text to this encoding (wxMBConv classes).
+    Following code snippet demonstrates it:
+
+    @code
+    if (!wxFontMapper::Get()->IsEncodingAvailable(enc, facename))
+    {
+        wxFontEncoding alternative;
+        if (wxFontMapper::Get()->GetAltForEncoding(enc, &alternative,
+                                                    facename, false))
+        {
+            wxCSConv convFrom(wxFontMapper::Get()->GetEncodingName(enc));
+            wxCSConv convTo(wxFontMapper::Get()->GetEncodingName(alternative));
+            text = wxString(text.mb_str(convFrom), convTo);
+        }
+        else
+            ...failure (or we may try iso8859-1/7bit ASCII)...
+    }
+    ...display text...
+    @endcode
 
     @library{wxcore}
     @category{misc}
 
-    @see wxEncodingConverter, @ref overview_nonenglishoverview "Writing non-English
-    applications"
+    @see wxEncodingConverter, @ref overview_nonenglish "Writing non-English applications"
 */
 class wxFontMapper
 {
 public:
     /**
         Default ctor.
+
+        @note
+        The preferred way of creating a wxFontMapper instance is to call wxFontMapper::Get().
     */
     wxFontMapper();
 
     /**
-        Virtual dtor for a base class.
+        Virtual dtor.
     */
-    ~wxFontMapper();
+    virtual ~wxFontMapper();
 
     /**
         Returns the encoding for the given charset (in the form of RFC 2046) or
         @c wxFONTENCODING_SYSTEM if couldn't decode it.
+
         Be careful when using this function with @a interactive set to @true
         (default value) as the function then may show a dialog box to the user which
         may lead to unexpected reentrancies and may also take a significantly longer
@@ -60,17 +89,17 @@ public:
                                      bool interactive = true);
 
     /**
-        Get the current font mapper object. If there is no current object, creates
-        one.
+        Get the current font mapper object. If there is no current object, creates one.
 
         @see Set()
     */
     static wxFontMapper* Get();
 
     /**
-        Returns the array of all possible names for the given encoding. The array is
-        @NULL-terminated. IF it isn't empty, the first name in it is the canonical
-        encoding name, i.e. the same string as returned by
+        Returns the array of all possible names for the given encoding.
+
+        The array is @NULL-terminated. IF it isn't empty, the first name in it is
+        the canonical encoding name, i.e. the same string as returned by
         GetEncodingName().
     */
     static const wxChar** GetAllEncodingNames(wxFontEncoding encoding);
@@ -81,6 +110,7 @@ public:
         available on this system). If successful, return @true and fill info
         structure with the parameters required to create the font, otherwise
         return @false.
+
         The first form is for wxWidgets' internal use while the second one
         is better suitable for general use -- it returns wxFontEncoding which
         can consequently be passed to wxFont constructor.
@@ -96,9 +126,10 @@ public:
     //@}
 
     /**
-        Returns the @e n-th supported encoding. Together with
-        GetSupportedEncodingsCount()
-        this method may be used to get all supported encodings.
+        Returns the @e n-th supported encoding.
+
+        Together with GetSupportedEncodingsCount() this method may be used
+        to get all supported encodings.
     */
     static wxFontEncoding GetEncoding(size_t n);
 
@@ -108,27 +139,26 @@ public:
     static wxString GetEncodingDescription(wxFontEncoding encoding);
 
     /**
-        Return the encoding corresponding to the given internal name. This function is
-        the inverse of GetEncodingName() and is
-        intentionally less general than
-        CharsetToEncoding(), i.e. it doesn't
-        try to make any guesses nor ever asks the user. It is meant just as a way of
-        restoring objects previously serialized using
-        GetEncodingName().
+        Return the encoding corresponding to the given internal name.
+
+        This function is the inverse of GetEncodingName() and is intentionally
+        less general than CharsetToEncoding(), i.e. it doesn't try to make any
+        guesses nor ever asks the user. It is meant just as a way of restoring
+        objects previously serialized using GetEncodingName().
     */
     static wxFontEncoding GetEncodingFromName(const wxString& encoding);
 
     /**
         Return internal string identifier for the encoding (see also
-        wxFontMapper::GetEncodingDescription)
+        wxFontMapper::GetEncodingDescription).
 
         @see GetEncodingFromName()
     */
     static wxString GetEncodingName(wxFontEncoding encoding);
 
     /**
-        Returns the number of the font encodings supported by this class. Together with
-        GetEncoding() this method may be used to get
+        Returns the number of the font encodings supported by this class.
+        Together with GetEncoding() this method may be used to get
         all supported encodings.
     */
     static size_t GetSupportedEncodingsCount();
@@ -152,8 +182,8 @@ public:
     /**
         Set the config object to use (may be @NULL to use default).
         By default, the global one (from wxConfigBase::Get() will be used)
-        and the default root path for the config settings is the string returned by
-        GetDefaultConfigPath().
+        and the default root path for the config settings is the string returned
+        by GetDefaultConfigPath().
     */
     void SetConfig(wxConfigBase* config);
 
index 4db0ae045c84e7ad9b9bed2414b6c888ef642a24..7c067a78f83cb6daceff4cdc6dca8abcb323e6a2 100644 (file)
     This control allows the user to select a font. The generic implementation is
     a button which brings up a wxFontDialog when clicked. Native implementation
     may differ but this is usually a (small) widget which give access to the
-    font-chooser
-    dialog.
+    font-chooser dialog.
     It is only available if @c wxUSE_FONTPICKERCTRL is set to 1 (the default).
 
     @beginStyleTable
     @style{wxFNTP_DEFAULT_STYLE}
-           The default style: wxFNTP_FONTDESC_AS_LABEL |
-           wxFNTP_USEFONT_FOR_LABEL.
+           The default style: wxFNTP_FONTDESC_AS_LABEL | wxFNTP_USEFONT_FOR_LABEL.
     @style{wxFNTP_USE_TEXTCTRL}
            Creates a text control to the left of the picker button which is
            completely managed by the wxFontPickerCtrl and which can be used by
            Uses the currently selected font to draw the label of the button.
     @endStyleTable
 
+    @beginEventTable{wxFontPickerEvent}
+    @event{EVT_FONTPICKER_CHANGED(id, func)}
+        The user changed the font selected in the control either using the button
+        or using text control (see wxFNTP_USE_TEXTCTRL; note that in this case the
+        event is fired only if the user's input is valid, i.e. recognizable).
+    @endEventTable
+
     @library{wxcore}
     @category{pickers}
     <!-- @appearance{fontpickerctrl.png} -->
@@ -57,13 +62,15 @@ public:
                      const wxString& name = "fontpickerctrl");
 
     /**
+        Creates this widget with given parameters.
+
         @param parent
             Parent window, must not be non-@NULL.
         @param id
             The identifier for the control.
         @param font
-            The initial font shown in the control. If wxNullFont
-            is given, the default font is used.
+            The initial font shown in the control.
+            If ::wxNullFont is given, the default font is used.
         @param pos
             Initial position.
         @param size
@@ -99,13 +106,12 @@ public:
 
     /**
         Sets the maximum point size value allowed for the user-chosen font.
+
         The default value is 100. Note that big fonts can require a lot of memory and
-        CPU time
-        both for creation and for rendering; thus, specially because the user has the
-        option to specify
-        the fontsize through a text control (see wxFNTP_USE_TEXTCTRL), it's a good idea
-        to put a limit
-        to the maximum font size when huge fonts do not make much sense.
+        CPU time both for creation and for rendering; thus, specially because the user
+        has the option to specify the fontsize through a text control
+        (see wxFNTP_USE_TEXTCTRL), it's a good idea to put a limit to the maximum
+        font size when huge fonts do not make much sense.
     */
     void GetMaxPointSize(unsigned int max);
 
@@ -124,8 +130,13 @@ public:
     This event class is used for the events generated by
     wxFontPickerCtrl.
 
+    @beginEventTable{wxFontPickerEvent}
+    @event{EVT_FONTPICKER_CHANGED(id, func)}
+        Generated whenever the selected font changes.
+    @endEventTable
+
     @library{wxcore}
-    @category{FIXME}
+    @category{events}
 
     @see wxFontPickerCtrl
 */
index fd6c78c87836407d28a8bd1318ae04f963726a0a..cf016028d8ae7efc2c4be4b25cbfecbcd7c325c1 100644 (file)
@@ -24,7 +24,7 @@
              data and subwindows can be cleaned up.
 
 
-    @section wxframe_defaultevent Default event processing
+    @section frame_defaultevent Default event processing
 
     wxFrame processes the following events:
 
         associated with the selected item in the first pane of the status bar, if there is one.
 
 
+    @section frame_styles
+
+    wxFrame supports the following styles:
+
     @beginStyleTable
     @style{wxDEFAULT_FRAME_STYLE}
            Defined as wxMINIMIZE_BOX |  wxMAXIMIZE_BOX |  wxRESIZE_BORDER |
 class wxFrame : public wxTopLevelWindow
 {
 public:
-    //@{
+    /**
+        Default constructor.
+    */
+    wxFrame();
+
     /**
         Constructor, creating the window.
 
@@ -122,39 +130,33 @@ public:
             The window parent. This may be @NULL. If it is non-@NULL, the frame will
             always be displayed on top of the parent window on Windows.
         @param id
-            The window identifier. It may take a value of -1 to indicate a default
-        value.
+            The window identifier. It may take a value of -1 to indicate a default value.
         @param title
             The caption to be displayed on the frame's title bar.
         @param pos
             The window position. The value wxDefaultPosition indicates a default position,
-        chosen by
-            either the windowing system or wxWidgets, depending on platform.
+            chosen by either the windowing system or wxWidgets, depending on platform.
         @param size
             The window size. The value wxDefaultSize indicates a default size, chosen by
             either the windowing system or wxWidgets, depending on platform.
         @param style
-            The window style. See wxFrame.
+            The window style. See wxFrame class description.
         @param name
-            The name of the window. This parameter is used to associate a name with the
-        item,
-            allowing the application user to set Motif resource values for
+            The name of the window. This parameter is used to associate a name with
+            the item, allowing the application user to set Motif resource values for
             individual windows.
 
         @remarks For Motif, MWM (the Motif Window Manager) should be running for
-                 any window styles to work (otherwise all styles take
-                 effect).
+                 any window styles to work (otherwise all styles take effect).
 
         @see Create()
     */
-    wxFrame();
     wxFrame(wxWindow* parent, wxWindowID id,
             const wxString& title,
             const wxPoint& pos = wxDefaultPosition,
             const wxSize& size = wxDefaultSize,
             long style = wxDEFAULT_FRAME_STYLE,
             const wxString& name = "frame");
-    //@}
 
     /**
         Destructor. Destroys all child windows and menu bar if present.
@@ -170,8 +172,8 @@ public:
     void Centre(int direction = wxBOTH);
 
     /**
-        Used in two-step frame construction. See wxFrame()
-        for further details.
+        Used in two-step frame construction.
+        See wxFrame() for further details.
     */
     bool Create(wxWindow* parent, wxWindowID id,
                 const wxString& title,
@@ -187,16 +189,15 @@ public:
             The number of fields to create. Specify a
             value greater than 1 to create a multi-field status bar.
         @param style
-            The status bar style. See wxStatusBar for a list
-            of valid styles.
+            The status bar style. See wxStatusBar for a list of valid styles.
         @param id
-            The status bar window identifier. If -1, an identifier will be chosen by
-            wxWidgets.
+            The status bar window identifier. If -1, an identifier will be chosen
+            by wxWidgets.
         @param name
             The status bar window name.
 
         @return A pointer to the status bar if it was created successfully, @NULL
-                 otherwise.
+                otherwise.
 
         @remarks The width of the status bar is the whole width of the frame
                  (adjusted automatically when resizing), and the height
@@ -213,32 +214,39 @@ public:
         Creates a toolbar at the top or left of the frame.
 
         @param style
-            The toolbar style. See wxToolBar for a list
-            of valid styles.
+            The toolbar style. See wxToolBar for a list of valid styles.
         @param id
-            The toolbar window identifier. If -1, an identifier will be chosen by
-            wxWidgets.
+            The toolbar window identifier. If -1, an identifier will be chosen
+            by wxWidgets.
         @param name
             The toolbar window name.
 
         @return A pointer to the toolbar if it was created successfully, @NULL
-                 otherwise.
+                otherwise.
 
         @remarks By default, the toolbar is an instance of wxToolBar (which is
                  defined to be a suitable toolbar class on each
                  platform, such as wxToolBar95). To use a different
                  class, override OnCreateToolBar().
-
-        @see CreateStatusBar(), OnCreateToolBar(), SetToolBar(),
-             GetToolBar()
+                 When a toolbar has been created with this function, or made
+                 known to the frame with wxFrame::SetToolBar, the frame will
+                 manage the toolbar position and adjust the return value from
+                 wxWindow::GetClientSize to reflect the available space for
+                 application windows.
+                 Under Pocket PC, you should always use this function for creating
+                 the toolbar to be managed by the frame, so that wxWidgets can
+                 use a combined menubar and toolbar.
+                 Where you manage your own toolbars, create a wxToolBar as usual.
+
+        @see CreateStatusBar(), OnCreateToolBar(), SetToolBar(), GetToolBar()
     */
     virtual wxToolBar* CreateToolBar(long style = wxBORDER_NONE | wxTB_HORIZONTAL,
                                      wxWindowID id = -1,
                                      const wxString& name = "toolBar");
 
     /**
-        Returns the origin of the frame client area (in client coordinates). It may be
-        different from (0, 0) if the frame has a toolbar.
+        Returns the origin of the frame client area (in client coordinates).
+        It may be different from (0, 0) if the frame has a toolbar.
     */
     wxPoint GetClientAreaOrigin() const;
 
@@ -250,8 +258,8 @@ public:
     wxMenuBar* GetMenuBar() const;
 
     /**
-        Returns a pointer to the status bar currently associated with the frame (if
-        any).
+        Returns a pointer to the status bar currently associated with the frame
+        (if any).
 
         @see CreateStatusBar(), wxStatusBar
     */
@@ -338,6 +346,10 @@ public:
                  destroyed also, so do not delete the menu bar
                  explicitly (except by resetting the frame's menu bar to
                  another frame or @NULL).
+                 Under Windows, a size event is generated, so be sure to
+                 initialize data members properly before calling SetMenuBar().
+                 Note that on some platforms, it is not possible to call this
+                 function twice for the same frame object.
 
         @see GetMenuBar(), wxMenuBar, wxMenu.
     */
@@ -379,14 +391,12 @@ public:
         @param widths
             Must contain an array of n integers, each of which is a status field width
             in pixels. A value of -1 indicates that the field is variable width; at
-        least one
-            field must be -1. You should delete this array after calling
-        SetStatusWidths.
+            least one field must be -1. You should delete this array after calling
+            SetStatusWidths().
 
         @remarks The widths of the variable fields are calculated from the total
                  width of all fields, minus the sum of widths of the
-                 non-variable fields, divided by the number of variable
-                 fields.
+                 non-variable fields, divided by the number of variable fields.
     */
     virtual void SetStatusWidths(int n, int* widths);