]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/panel.h
Minor doc corrections for [q-r] in ticket #9581 (most of the patch was applied alread...
[wxWidgets.git] / interface / panel.h
index e62c69a78a92dbe7e0c2657502e51e653b3ac208..6e6e8b3d683fdf7a44e7d1d3db7ca606da91ac20 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        panel.h
-// Purpose:     documentation for wxPanel class
+// Purpose:     interface of wxPanel
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -9,66 +9,63 @@
 /**
     @class wxPanel
     @wxheader{panel.h}
-    
+
     A panel is a window on which controls are placed. It is usually placed within
     a frame. Its main feature over its parent class wxWindow is code for handling
     child windows and TAB traversal. Since wxWidgets 2.9, there is support both
     for TAB traversal implemented by wxWidgets itself as well as native TAB
     traversal (such as for GTK 2.0).
-    
-    @e Note: Tab traversal is implemented through an otherwise undocumented
-    intermediate wxControlContainer class from which any class can derive
-    in addition to the normal wxWindow base class. Please see wx/containr.h
-    and wx/panel.h to find out how this is achieved.
-    
-    @e Note: if not all characters are being intercepted by your OnKeyDown or
-    OnChar handler, it may be because you are using the wxTAB_TRAVERSAL style, 
-    which grabs some keypresses for use by child controls.
-    
+
+    @note Tab traversal is implemented through an otherwise undocumented
+          intermediate wxControlContainer class from which any class can derive
+          in addition to the normal wxWindow base class. Please see @c wx/containr.h
+          and @c wx/panel.h to find out how this is achieved.
+
+    @note if not all characters are being intercepted by your OnKeyDown or
+          OnChar handler, it may be because you are using the @c wxTAB_TRAVERSAL style,
+          which grabs some keypresses for use by child controls.
+
+    @remarks By default, a panel has the same colouring as a dialog.
+
     @library{wxbase}
     @category{miscwnd}
-    
-    @seealso
-    wxDialog
+
+    @see wxDialog
 */
 class wxPanel : public wxWindow
 {
 public:
-    //@{
+
     /**
-        Constructor.
-        
-        @param parent 
-        The parent window.
-        
-        @param id 
-        An identifier for the panel. A value of -1 is taken to mean a default.
-        
-        @param pos 
-        The panel position. The value wxDefaultPosition indicates a default position, chosen by
-        either the windowing system or wxWidgets, depending on platform.
-        
-        @param size 
-        The panel 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 wxPanel.
-        
-        @param name 
-        Used to associate a name with the window,
-        allowing the application user to set Motif resource values for
-        individual dialog boxes.
-        
-        @sa Create()
+        Default constructor.
     */
     wxPanel();
-        wxPanel(wxWindow* parent, wxWindowID id = wxID_ANY,
-                const wxPoint& pos = wxDefaultPosition,
-                const wxSize& size = wxDefaultSize,
-                long style = wxTAB_TRAVERSAL,
-                const wxString& name = "panel");
-    //@}
+
+    /**
+        Constructor.
+
+        @param parent
+            The parent window.
+        @param id
+            An identifier for the panel. @c wxID_ANY is taken to mean a default.
+        @param pos
+            The panel position. The value @c wxDefaultPosition indicates a default position,
+            chosen by either the windowing system or wxWidgets, depending on platform.
+        @param size
+            The panel size. The value @c wxDefaultSize indicates a default size, chosen by
+            either the windowing system or wxWidgets, depending on platform.
+        @param style
+            The window style. See wxPanel.
+        @param name
+            Window name.
+
+        @see Create()
+    */
+    wxPanel(wxWindow* parent, wxWindowID id = wxID_ANY,
+            const wxPoint& pos = wxDefaultPosition,
+            const wxSize& size = wxDefaultSize,
+            long style = wxTAB_TRAVERSAL,
+            const wxString& name = "panel");
 
     /**
         Destructor. Deletes any child windows before deleting the physical window.
@@ -76,16 +73,15 @@ public:
     ~wxPanel();
 
     /**
-        This method is overridden from wxWindow::AcceptsFocus
+        This method is overridden from wxWindow::AcceptsFocus()
         and returns @true only if there is no child window in the panel which
         can accept the focus. This is reevaluated each time a child
         window is added or removed from the panel.
     */
-    bool AcceptsFocus();
+    bool AcceptsFocus() const;
 
     /**
-        Used for two-step panel construction. See wxPanel()
-        for details.
+        Used for two-step panel construction. See wxPanel() for details.
     */
     bool Create(wxWindow* parent, wxWindowID id = wxID_ANY,
                 const wxPoint& pos = wxDefaultPosition,
@@ -94,46 +90,47 @@ public:
                 const wxString& name = "panel");
 
     /**
-        Sends a wxInitDialogEvent, which
-        in turn transfers data to the dialog via validators.
-        
-        @sa wxInitDialogEvent
+        Sends a wxInitDialogEvent, which in turn transfers data to the dialog via
+        validators.
+
+        @see wxInitDialogEvent
     */
     void InitDialog();
 
     /**
         The default handler for wxEVT_SYS_COLOUR_CHANGED.
-        
-        @param event 
-        The colour change event.
-        
+
+        @param event
+            The colour change event.
+
         @remarks Changes the panel's colour to conform to the current settings
-                   (Windows only). Add an event table entry for your
-                   panel class if you wish the behaviour to be different
-                   (such as keeping a user-defined background colour).
-                   If you do override this function, call wxEvent::Skip
-                   to propagate the notification to child windows and
-                   controls.
-        
-        @sa wxSysColourChangedEvent
+                 (Windows only). Add an event table entry for your panel
+                 class if you wish the behaviour to be different (such
+                 as keeping a user-defined background colour). If you do
+                 override this function, call wxEvent::Skip() to propagate
+                 the notification to child windows and controls.
+
+        @see wxSysColourChangedEvent
     */
     void OnSysColourChanged(wxSysColourChangedEvent& event);
 
     /**
-        Overrides wxWindow::SetFocus. This method
-        uses the (undocumented) mix-in class wxControlContainer which manages
+        Overrides wxWindow::SetFocus().
+
+        This method uses the (undocumented) mix-in class wxControlContainer which manages
         the focus and TAB logic for controls which usually have child controls.
+
         In practice, if you call this method and the control has at least
         one child window, the focus will be given to the child window.
-        
-        @sa wxFocusEvent, wxWindow::SetFocus
+
+        @see wxFocusEvent, wxWindow::SetFocus()
     */
     virtual void SetFocus();
 
     /**
-        In contrast to SetFocus() (see above)
-        this will set the focus to the panel even if there are child windows
-        in the panel. This is only rarely needed.
+        In contrast to SetFocus() (see above) this will set the focus to the panel
+        even if there are child windows in the panel. This is only rarely needed.
     */
     virtual void SetFocusIgnoringChildren();
 };
+