1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/powercmn.cpp
3 // Purpose: power event types and stubs for power functions
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2006 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
32 // ============================================================================
34 // ============================================================================
36 #ifdef wxHAS_POWER_EVENTS
37 DEFINE_EVENT_TYPE(wxEVT_POWER_SUSPENDING
)
38 DEFINE_EVENT_TYPE(wxEVT_POWER_SUSPENDED
)
39 DEFINE_EVENT_TYPE(wxEVT_POWER_SUSPEND_CANCEL
)
40 DEFINE_EVENT_TYPE(wxEVT_POWER_RESUME
)
43 // provide stubs for the systems not implementing these functions
44 #if !defined(__WXPALMOS__) && !defined(__WXMSW__)
46 wxPowerType
wxGetPowerType()
48 return wxPOWER_UNKNOWN
;
51 wxBatteryState
wxGetBatteryState()
53 return wxBATTERY_UNKNOWN_STATE
;
56 #endif // systems without power management functions