]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/button.h
Move wxScopedPtr::reset() implementation to wxDEFINE_SCOPED_PTR.
[wxWidgets.git] / include / wx / msw / button.h
index 52ca818cbe37a28b4099052c2f7367d0c40b62de..e1de60c2d69b2d07f1e6dbc388e707a599e4b44b 100644 (file)
@@ -80,6 +80,8 @@ protected:
     // usually overridden base class virtuals
     virtual wxSize DoGetBestSize() const;
 
+    virtual bool DoGetAuthNeeded() const;
+    virtual void DoSetAuthNeeded(bool show);
     virtual wxBitmap DoGetBitmap(State which) const;
     virtual void DoSetBitmap(const wxBitmap& bitmap, State which);
     virtual wxSize DoGetBitmapMargins() const;
@@ -88,6 +90,9 @@ protected:
 
     class wxButtonImageData *m_imageData;
 
+    // true if the UAC symbol is shown
+    bool m_authNeeded;
+
 private:
     DECLARE_DYNAMIC_CLASS_NO_COPY(wxButton)
 };