]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/popupwin.h
Common code for the same handling of wxSL_INVERSE.
[wxWidgets.git] / include / wx / popupwin.h
index 18ca40e2f31ebe97ec74e37a072b8f6d93417814..e0e5eefca978a5850c69e950347863d4f2c2ca6b 100644 (file)
@@ -46,7 +46,7 @@ public:
     virtual void Position(const wxPoint& ptOrigin,
                           const wxSize& size);
 
-    virtual bool IsTopLevel() const { return TRUE; }
+    virtual bool IsTopLevel() const { return true; }
 
     DECLARE_NO_COPY_CLASS(wxPopupWindowBase)
 };
@@ -97,13 +97,16 @@ public:
     //
     // VZ: where is this used??
     virtual bool CanDismiss()
-        { return TRUE; }
+        { return true; }
 
-    // called when a mouse is pressed while the popup is shown: return TRUE
+    // called when a mouse is pressed while the popup is shown: return true
     // from here to prevent its normal processing by the popup (which consists
     // in dismissing it if the mouse is cilcked outside it)
     virtual bool ProcessLeftDown(wxMouseEvent& event);
 
+    // Overridden to grab the input on some plaforms
+    virtual bool Show( bool show = true );
+    
 protected:
     // common part of all ctors
     void Init();