]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/popupwin.h
Better support for unspecified property value in wxDateProperty and DatePickerCtrl...
[wxWidgets.git] / interface / wx / popupwin.h
index 870ec9feb451d5a75b8da624690408678695e4df..b2dad633b686dec97b4ebeac599555852ef1d1e5 100644 (file)
@@ -1,14 +1,13 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        popupwind.h
+// Name:        popupwin.h
 // Purpose:     interface of wxPoppWindow
 // Author:      wxWidgets team
-// RCS-ID:      $Id:$
+// RCS-ID:      $Id$
 // Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
 /**
     @class wxPopupWindow
-    @wxheader{popupwin.h}
 
     A special kind of top level window used for popup menus,
     combobox popups and such.
@@ -27,24 +26,26 @@ public:
       Constructor
     */
     wxPopupWindow(wxWindow *parent, int flags = wxBORDER_NONE);
-    
+
     /**
       Create method for two-step creation
     */
     bool Create(wxWindow *parent, int flags = wxBORDER_NONE);
-    
+
     /**
         Move the popup window to the right position, i.e. such that it is
         entirely visible.
-        
+
         The popup is positioned at ptOrigin + size if it opens below and to the
         right (default), at ptOrigin - sizePopup if it opens above and to the
         left etc.
-        
+
         @param ptOrigin
             Must be given in screen coordinates!
+        @param sizePopup
+            The size of the popup window
     */
     virtual void Position(const wxPoint& ptOrigin,
-                          const wxSize& size);
+                          const wxSize& sizePopup);
 };