Interface fixes and tweaks for Phoenix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70200 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2011-12-30 06:14:17 +00:00
parent e4aadc2f1d
commit 50e55c13ea
11 changed files with 114 additions and 35 deletions

View File

@@ -6,6 +6,56 @@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
/**
Signal constants used by wxProcess.
*/
enum wxSignal
{
wxSIGNONE = 0, //!< verify if the process exists under Unix
wxSIGHUP,
wxSIGINT,
wxSIGQUIT,
wxSIGILL,
wxSIGTRAP,
wxSIGABRT,
wxSIGEMT,
wxSIGFPE,
wxSIGKILL, //!< forcefully kill, dangerous!
wxSIGBUS,
wxSIGSEGV,
wxSIGSYS,
wxSIGPIPE,
wxSIGALRM,
wxSIGTERM //!< terminate the process gently
};
/**
Return values for wxProcess::Kill.
*/
enum wxKillError
{
wxKILL_OK, //!< no error
wxKILL_BAD_SIGNAL, //!< no such signal
wxKILL_ACCESS_DENIED, //!< permission denied
wxKILL_NO_PROCESS, //!< no such process
wxKILL_ERROR //!< another, unspecified error
};
enum wxKillFlags
{
wxKILL_NOCHILDREN = 0, //!< don't kill children
wxKILL_CHILDREN = 1 //!< kill children
};
enum wxShutdownFlags
{
wxSHUTDOWN_FORCE = 1, //!< can be combined with other flags (MSW-only)
wxSHUTDOWN_POWEROFF = 2, //!< power off the computer
wxSHUTDOWN_REBOOT = 4, //!< shutdown and reboot
wxSHUTDOWN_LOGOFF = 8 //!< close session (currently MSW-only)
};
/**
@class wxWindowDisabler
@@ -523,6 +573,22 @@ void wxQsort(void* pbase, size_t total_elems,
*/
void wxSetDisplayName(const wxString& displayName);
/**
flags for wxStripMenuCodes
*/
enum
{
// strip '&' characters
wxStrip_Mnemonics = 1,
// strip everything after '\t'
wxStrip_Accel = 2,
// strip everything (this is the default)
wxStrip_All = wxStrip_Mnemonics | wxStrip_Accel
};
/**
Strips any menu codes from @a str and returns the result.