]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/power.h
Remove never implemented wxDateTime::IsGregorianDate().
[wxWidgets.git] / interface / wx / power.h
index da34f5c41616b9a1f5c6f5a4e18e42d4895fee38..1b20ce1de48d05ad7a915399a3d1d63e4abe5e7e 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        power.h
 // Purpose:     interface of wxPowerEvent
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -61,10 +60,24 @@ enum wxBatteryState
 class wxPowerEvent : public wxEvent
 {
 public:
+    wxPowerEvent();
+    wxPowerEvent(wxEventType evtType);
+    
     /**
         Call this to prevent suspend from taking place in @c wxEVT_POWER_SUSPENDING
         handler (it is ignored for all the others).
     */
     void Veto();
+
+    /**
+       Returns whether Veto has been called.
+    */
+    bool IsVetoed() const;
 };
 
+wxEventType wxEVT_POWER_SUSPENDING;
+wxEventType wxEVT_POWER_SUSPENDED;
+wxEventType wxEVT_POWER_SUSPEND_CANCEL;
+wxEventType wxEVT_POWER_RESUME;
+
+