1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: utils.h
|
|
|
|
// Purpose: Miscellaneous utilities
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 29/01/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1998 Julian Smart
|
2003-03-17 10:34:04 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_UTILSH__
|
|
|
|
#define _WX_UTILSH__
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2003-08-24 16:38:02 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) && !defined(__EMX__)
|
|
|
|
// Some older compilers (such as EMX) cannot handle
|
|
|
|
// #pragma interface/implementation correctly, iff
|
|
|
|
// #pragma implementation is used in _two_ translation
|
|
|
|
// units (as created by e.g. event.cpp compiled for
|
|
|
|
// libwx_base and event.cpp compiled for libwx_gui_core).
|
|
|
|
// So we must not use those pragmas for those compilers in
|
|
|
|
// such files.
|
1999-03-29 20:49:05 +00:00
|
|
|
#pragma interface "utils.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/list.h"
|
|
|
|
#include "wx/filefn.h"
|
2003-07-19 22:01:14 +00:00
|
|
|
|
|
|
|
class WXDLLIMPEXP_BASE wxArrayString;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-08-25 16:54:14 +00:00
|
|
|
// need this for wxGetDiskSpace() as we can't, unfortunately, forward declare
|
|
|
|
// wxLongLong
|
|
|
|
#include "wx/longlong.h"
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#ifdef __X__
|
1999-03-29 20:49:05 +00:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <unistd.h>
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Forward declaration
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxProcess;
|
|
|
|
class WXDLLIMPEXP_BASE wxFrame;
|
|
|
|
class WXDLLIMPEXP_BASE wxWindow;
|
|
|
|
class WXDLLIMPEXP_BASE wxWindowList;
|
|
|
|
class WXDLLIMPEXP_BASE wxPoint;
|
1999-03-29 20:49:05 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Macros
|
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
#define wxMax(a,b) (((a) > (b)) ? (a) : (b))
|
|
|
|
#define wxMin(a,b) (((a) < (b)) ? (a) : (b))
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// String functions (deprecated, use wxString)
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// Make a copy of this string using 'new'
|
2003-07-02 17:11:19 +00:00
|
|
|
#if WXWIN_COMPATIBILITY_2_4
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE wxChar* copystring(const wxChar *s);
|
2003-07-02 17:11:19 +00:00
|
|
|
#endif
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// A shorter way of using strcmp
|
1999-04-12 22:20:19 +00:00
|
|
|
#define wxStringEq(s1, s2) (s1 && s2 && (wxStrcmp(s1, s2) == 0))
|
1999-03-29 20:49:05 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Miscellaneous functions
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Sound the bell
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE void wxBell();
|
1999-03-29 20:49:05 +00:00
|
|
|
|
1999-12-04 22:34:54 +00:00
|
|
|
// Get OS description as a user-readable string
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE wxString wxGetOsDescription();
|
1999-12-04 22:34:54 +00:00
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// Get OS version
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE int wxGetOsVersion(int *majorVsn = (int *) NULL,
|
1999-12-04 22:34:54 +00:00
|
|
|
int *minorVsn = (int *) NULL);
|
1999-03-29 20:49:05 +00:00
|
|
|
|
|
|
|
// Return a string with the current date/time
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE wxString wxNow();
|
1999-03-29 20:49:05 +00:00
|
|
|
|
2001-09-26 22:17:05 +00:00
|
|
|
// Return path where wxWindows is installed (mostly useful in Unices)
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE const wxChar *wxGetInstallPrefix();
|
2001-11-22 00:30:44 +00:00
|
|
|
// Return path to wxWin data (/usr/share/wx/%{version}) (Unices)
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE wxString wxGetDataDir();
|
2001-09-26 22:17:05 +00:00
|
|
|
|
|
|
|
|
1999-10-04 20:15:38 +00:00
|
|
|
#if wxUSE_GUI
|
2004-01-14 01:28:42 +00:00
|
|
|
#if defined(__WXMSW__) || defined(__WXMAC__)
|
|
|
|
// Get the state of a key (true if pressed, false if not)
|
|
|
|
// This is generally most useful getting the state of
|
|
|
|
// Caps Lock, Num Lock and Scroll Lock...
|
|
|
|
|
|
|
|
// Note - There is a X11/GTK version which will be here
|
|
|
|
// soon
|
|
|
|
WXDLLEXPORT bool wxGetKeyState(wxKeyCode key);
|
|
|
|
#endif
|
|
|
|
|
1999-05-21 12:50:10 +00:00
|
|
|
// Don't synthesize KeyUp events holding down a key and producing
|
|
|
|
// KeyDown events with autorepeat. On by default and always on
|
|
|
|
// in wxMSW.
|
1999-05-18 19:35:33 +00:00
|
|
|
WXDLLEXPORT bool wxSetDetectableAutoRepeat( bool flag );
|
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Window ID management
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// Generate a unique ID
|
1999-03-03 17:11:14 +00:00
|
|
|
WXDLLEXPORT long wxNewId();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Ensure subsequent IDs don't clash with this one
|
1998-11-22 22:32:53 +00:00
|
|
|
WXDLLEXPORT void wxRegisterId(long id);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Return the current ID
|
1999-03-03 17:11:14 +00:00
|
|
|
WXDLLEXPORT long wxGetCurrentId();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-10-04 20:15:38 +00:00
|
|
|
#endif // wxUSE_GUI
|
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Various conversions
|
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2003-04-10 13:08:46 +00:00
|
|
|
// these functions are deprecated, use wxString methods instead!
|
|
|
|
#if WXWIN_COMPATIBILITY_2_4
|
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_DATA_BASE(extern const wxChar*) wxFloatToStringStr;
|
|
|
|
WXDLLIMPEXP_DATA_BASE(extern const wxChar*) wxDoubleToStringStr;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE void StringToFloat(const wxChar *s, float *number);
|
|
|
|
WXDLLIMPEXP_BASE wxChar* FloatToString(float number, const wxChar *fmt = wxFloatToStringStr);
|
|
|
|
WXDLLIMPEXP_BASE void StringToDouble(const wxChar *s, double *number);
|
|
|
|
WXDLLIMPEXP_BASE wxChar* DoubleToString(double number, const wxChar *fmt = wxDoubleToStringStr);
|
|
|
|
WXDLLIMPEXP_BASE void StringToInt(const wxChar *s, int *number);
|
|
|
|
WXDLLIMPEXP_BASE void StringToLong(const wxChar *s, long *number);
|
|
|
|
WXDLLIMPEXP_BASE wxChar* IntToString(int number);
|
|
|
|
WXDLLIMPEXP_BASE wxChar* LongToString(long number);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2003-04-10 13:08:46 +00:00
|
|
|
#endif // WXWIN_COMPATIBILITY_2_4
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// Convert 2-digit hex number to decimal
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE int wxHexToDec(const wxString& buf);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Convert decimal integer to 2-character hex string
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE void wxDecToHex(int dec, wxChar *buf);
|
|
|
|
WXDLLIMPEXP_BASE wxString wxDecToHex(int dec);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Process management
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2002-03-23 01:22:17 +00:00
|
|
|
// NB: for backwars compatibility reasons the values of wxEXEC_[A]SYNC *must*
|
|
|
|
// be 0 and 1, don't change!
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
2002-03-27 18:36:37 +00:00
|
|
|
// execute the process asynchronously
|
|
|
|
wxEXEC_ASYNC = 0,
|
|
|
|
|
|
|
|
// execute it synchronously, i.e. wait until it finishes
|
|
|
|
wxEXEC_SYNC = 1,
|
|
|
|
|
|
|
|
// under Windows, don't hide the child even if it's IO is redirected (this
|
|
|
|
// is done by default)
|
|
|
|
wxEXEC_NOHIDE = 2,
|
|
|
|
|
|
|
|
// under Unix, if the process is the group leader then killing -pid kills
|
|
|
|
// all children as well as pid
|
|
|
|
wxEXEC_MAKE_GROUP_LEADER = 4
|
2002-03-23 01:22:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Execute another program.
|
|
|
|
//
|
|
|
|
// If flags contain wxEXEC_SYNC, return -1 on failure and the exit code of the
|
|
|
|
// process if everything was ok. Otherwise (i.e. if wxEXEC_ASYNC), return 0 on
|
|
|
|
// failure and the PID of the launched process if ok.
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE long wxExecute(wxChar **argv, int flags = wxEXEC_ASYNC,
|
1998-08-23 03:22:56 +00:00
|
|
|
wxProcess *process = (wxProcess *) NULL);
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE long wxExecute(const wxString& command, int flags = wxEXEC_ASYNC,
|
1998-08-23 03:22:56 +00:00
|
|
|
wxProcess *process = (wxProcess *) NULL);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2002-03-23 01:22:17 +00:00
|
|
|
// execute the command capturing its output into an array line by line, this is
|
|
|
|
// always synchronous
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE long wxExecute(const wxString& command,
|
2000-07-15 19:51:35 +00:00
|
|
|
wxArrayString& output);
|
|
|
|
|
2002-03-23 01:22:17 +00:00
|
|
|
// also capture stderr (also synchronous)
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE long wxExecute(const wxString& command,
|
2000-07-15 19:51:35 +00:00
|
|
|
wxArrayString& output,
|
|
|
|
wxArrayString& error);
|
2000-03-02 19:06:13 +00:00
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
enum wxSignal
|
|
|
|
{
|
|
|
|
wxSIGNONE = 0, // verify if the process exists under Unix
|
|
|
|
wxSIGHUP,
|
|
|
|
wxSIGINT,
|
|
|
|
wxSIGQUIT,
|
|
|
|
wxSIGILL,
|
|
|
|
wxSIGTRAP,
|
|
|
|
wxSIGABRT,
|
|
|
|
wxSIGIOT = wxSIGABRT, // another name
|
|
|
|
wxSIGEMT,
|
|
|
|
wxSIGFPE,
|
|
|
|
wxSIGKILL,
|
|
|
|
wxSIGBUS,
|
|
|
|
wxSIGSEGV,
|
|
|
|
wxSIGSYS,
|
|
|
|
wxSIGPIPE,
|
|
|
|
wxSIGALRM,
|
|
|
|
wxSIGTERM
|
|
|
|
|
|
|
|
// further signals are different in meaning between different Unix systems
|
|
|
|
};
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-06-16 00:59:07 +00:00
|
|
|
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
|
|
|
|
};
|
|
|
|
|
2002-05-05 14:18:36 +00:00
|
|
|
enum wxShutdownFlags
|
|
|
|
{
|
|
|
|
wxSHUTDOWN_POWEROFF, // power off the computer
|
|
|
|
wxSHUTDOWN_REBOOT // shutdown and reboot
|
|
|
|
};
|
|
|
|
|
2002-06-12 20:26:24 +00:00
|
|
|
// Shutdown or reboot the PC
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxShutdown(wxShutdownFlags wFlags);
|
2002-05-05 14:18:36 +00:00
|
|
|
|
2001-06-16 00:59:07 +00:00
|
|
|
// send the given signal to the process (only NONE and KILL are supported under
|
|
|
|
// Windows, all others mean TERM), return 0 if ok and -1 on error
|
|
|
|
//
|
|
|
|
// return detailed error in rc if not NULL
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE int wxKill(long pid,
|
2001-06-16 00:59:07 +00:00
|
|
|
wxSignal sig = wxSIGTERM,
|
|
|
|
wxKillError *rc = NULL);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2000-03-03 10:31:34 +00:00
|
|
|
// Execute a command in an interactive shell window (always synchronously)
|
1998-05-20 14:01:55 +00:00
|
|
|
// If no command then just the shell
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxShell(const wxString& command = wxEmptyString);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2000-03-03 10:31:34 +00:00
|
|
|
// As wxShell(), but must give a (non interactive) command and its output will
|
|
|
|
// be returned in output array
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxShell(const wxString& command, wxArrayString& output);
|
2000-03-03 10:31:34 +00:00
|
|
|
|
1999-11-27 22:57:06 +00:00
|
|
|
// Sleep for nSecs seconds
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE void wxSleep(int nSecs);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-03-03 17:11:14 +00:00
|
|
|
// Sleep for a given amount of milliseconds
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE void wxUsleep(unsigned long milliseconds);
|
1999-03-03 17:11:14 +00:00
|
|
|
|
2002-06-12 20:26:24 +00:00
|
|
|
// Get the process id of the current process
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE unsigned long wxGetProcessId();
|
2002-06-12 20:26:24 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// Get free memory in bytes, or -1 if cannot determine amount (e.g. on UNIX)
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE long wxGetFreeMemory();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2000-03-17 16:55:34 +00:00
|
|
|
// should wxApp::OnFatalException() be called?
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxHandleFatalExceptions(bool doit = TRUE);
|
2000-03-17 16:55:34 +00:00
|
|
|
|
2000-11-26 22:46:35 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Environment variables
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2000-11-27 00:21:29 +00:00
|
|
|
// returns TRUE if variable exists (value may be NULL if you just want to check
|
|
|
|
// for this)
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxGetEnv(const wxString& var, wxString *value);
|
2000-11-26 22:46:35 +00:00
|
|
|
|
|
|
|
// set the env var name to the given value, return TRUE on success
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxSetEnv(const wxString& var, const wxChar *value);
|
2000-11-26 22:46:35 +00:00
|
|
|
|
|
|
|
// remove the env var from environment
|
|
|
|
inline bool wxUnsetEnv(const wxString& var) { return wxSetEnv(var, NULL); }
|
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Network and username functions.
|
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// NB: "char *" functions are deprecated, use wxString ones!
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Get eMail address
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxGetEmailAddress(wxChar *buf, int maxSize);
|
|
|
|
WXDLLIMPEXP_BASE wxString wxGetEmailAddress();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Get hostname.
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxGetHostName(wxChar *buf, int maxSize);
|
|
|
|
WXDLLIMPEXP_BASE wxString wxGetHostName();
|
1999-03-29 20:49:05 +00:00
|
|
|
|
|
|
|
// Get FQDN
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE wxString wxGetFullHostName();
|
|
|
|
WXDLLIMPEXP_BASE bool wxGetFullHostName(wxChar *buf, int maxSize);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// Get user ID e.g. jacs (this is known as login name under Unix)
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxGetUserId(wxChar *buf, int maxSize);
|
|
|
|
WXDLLIMPEXP_BASE wxString wxGetUserId();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Get user name e.g. Julian Smart
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxGetUserName(wxChar *buf, int maxSize);
|
|
|
|
WXDLLIMPEXP_BASE wxString wxGetUserName();
|
1999-03-29 20:49:05 +00:00
|
|
|
|
|
|
|
// Get current Home dir and copy to dest (returns pstr->c_str())
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE wxString wxGetHomeDir();
|
|
|
|
WXDLLIMPEXP_BASE const wxChar* wxGetHomeDir(wxString *pstr);
|
1999-03-29 20:49:05 +00:00
|
|
|
|
|
|
|
// Get the user's home dir (caller must copy --- volatile)
|
|
|
|
// returns NULL is no HOME dir is known
|
1999-04-16 11:18:46 +00:00
|
|
|
#if defined(__UNIX__) && wxUSE_UNICODE
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE const wxMB2WXbuf wxGetUserHome(const wxString& user = wxEmptyString);
|
1999-04-16 11:18:46 +00:00
|
|
|
#else
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE wxChar* wxGetUserHome(const wxString& user = wxEmptyString);
|
1999-04-16 11:18:46 +00:00
|
|
|
#endif
|
1999-03-29 20:49:05 +00:00
|
|
|
|
2001-08-25 16:54:14 +00:00
|
|
|
// get number of total/free bytes on the disk where path belongs
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxGetDiskSpace(const wxString& path,
|
2001-08-25 16:54:14 +00:00
|
|
|
wxLongLong *pTotal = NULL,
|
|
|
|
wxLongLong *pFree = NULL);
|
|
|
|
|
1999-10-04 20:15:38 +00:00
|
|
|
#if wxUSE_GUI // GUI only things from now on
|
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1999-10-25 15:51:37 +00:00
|
|
|
// Menu accelerators related things
|
1999-03-29 20:49:05 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-11-17 23:18:43 +00:00
|
|
|
WXDLLEXPORT wxChar* wxStripMenuCodes(const wxChar *in, wxChar *out = (wxChar *) NULL);
|
1998-11-22 22:32:53 +00:00
|
|
|
WXDLLEXPORT wxString wxStripMenuCodes(const wxString& str);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-10-25 15:51:37 +00:00
|
|
|
#if wxUSE_ACCEL
|
|
|
|
class WXDLLEXPORT wxAcceleratorEntry;
|
|
|
|
WXDLLEXPORT wxAcceleratorEntry *wxGetAccelFromString(const wxString& label);
|
|
|
|
#endif // wxUSE_ACCEL
|
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Window search
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// Returns menu item id or -1 if none.
|
1998-11-22 22:32:53 +00:00
|
|
|
WXDLLEXPORT int wxFindMenuItemId(wxFrame *frame, const wxString& menuString, const wxString& itemString);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2000-09-08 13:52:10 +00:00
|
|
|
// Find the wxWindow at the given point. wxGenericFindWindowAtPoint
|
|
|
|
// is always present but may be less reliable than a native version.
|
|
|
|
WXDLLEXPORT wxWindow* wxGenericFindWindowAtPoint(const wxPoint& pt);
|
2000-09-07 13:22:42 +00:00
|
|
|
WXDLLEXPORT wxWindow* wxFindWindowAtPoint(const wxPoint& pt);
|
|
|
|
|
2002-05-25 14:24:43 +00:00
|
|
|
// NB: this function is obsolete, use wxWindow::FindWindowByLabel() instead
|
|
|
|
//
|
|
|
|
// Find the window/widget with the given title or label.
|
|
|
|
// Pass a parent to begin the search from, or NULL to look through
|
|
|
|
// all windows.
|
|
|
|
WXDLLEXPORT wxWindow* wxFindWindowByLabel(const wxString& title, wxWindow *parent = (wxWindow *) NULL);
|
|
|
|
|
|
|
|
// NB: this function is obsolete, use wxWindow::FindWindowByName() instead
|
|
|
|
//
|
|
|
|
// Find window by name, and if that fails, by label.
|
|
|
|
WXDLLEXPORT wxWindow* wxFindWindowByName(const wxString& name, wxWindow *parent = (wxWindow *) NULL);
|
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Message/event queue helpers
|
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-03-22 10:22:26 +00:00
|
|
|
// Yield to other apps/messages and disable user input
|
2002-12-16 21:58:36 +00:00
|
|
|
WXDLLEXPORT bool wxSafeYield(wxWindow *win = NULL, bool onlyIfNeeded = FALSE);
|
1999-03-22 10:22:26 +00:00
|
|
|
|
1999-04-15 14:18:12 +00:00
|
|
|
// Enable or disable input to all top level windows
|
|
|
|
WXDLLEXPORT void wxEnableTopLevelWindows(bool enable = TRUE);
|
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// Check whether this window wants to process messages, e.g. Stop button
|
|
|
|
// in long calculations.
|
|
|
|
WXDLLEXPORT bool wxCheckForInterrupt(wxWindow *wnd);
|
|
|
|
|
|
|
|
// Consume all events until no more left
|
|
|
|
WXDLLEXPORT void wxFlushEvents();
|
|
|
|
|
2000-03-02 19:06:13 +00:00
|
|
|
// a class which disables all windows (except, may be, thegiven one) in its
|
|
|
|
// ctor and enables them back in its dtor
|
|
|
|
class WXDLLEXPORT wxWindowDisabler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxWindowDisabler(wxWindow *winToSkip = (wxWindow *)NULL);
|
|
|
|
~wxWindowDisabler();
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxWindowList *m_winDisabled;
|
2002-06-12 20:26:24 +00:00
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxWindowDisabler)
|
2000-03-02 19:06:13 +00:00
|
|
|
};
|
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Cursors
|
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Set the cursor to the busy cursor for all windows
|
|
|
|
class WXDLLEXPORT wxCursor;
|
|
|
|
WXDLLEXPORT_DATA(extern wxCursor*) wxHOURGLASS_CURSOR;
|
1998-11-22 22:32:53 +00:00
|
|
|
WXDLLEXPORT void wxBeginBusyCursor(wxCursor *cursor = wxHOURGLASS_CURSOR);
|
1999-01-25 18:33:08 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// Restore cursor to normal
|
1999-03-03 17:11:14 +00:00
|
|
|
WXDLLEXPORT void wxEndBusyCursor();
|
1999-03-29 20:49:05 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// TRUE if we're between the above two calls
|
1999-03-03 17:11:14 +00:00
|
|
|
WXDLLEXPORT bool wxIsBusy();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-25 18:33:08 +00:00
|
|
|
// Convenience class so we can just create a wxBusyCursor object on the stack
|
|
|
|
class WXDLLEXPORT wxBusyCursor
|
|
|
|
{
|
1999-03-03 17:11:14 +00:00
|
|
|
public:
|
|
|
|
wxBusyCursor(wxCursor* cursor = wxHOURGLASS_CURSOR)
|
|
|
|
{ wxBeginBusyCursor(cursor); }
|
2000-07-15 19:51:35 +00:00
|
|
|
~wxBusyCursor()
|
1999-03-03 17:11:14 +00:00
|
|
|
{ wxEndBusyCursor(); }
|
1999-01-25 18:33:08 +00:00
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
// FIXME: These two methods are currently only implemented (and needed?)
|
|
|
|
// in wxGTK. BusyCursor handling should probably be moved to
|
|
|
|
// common code since the wxGTK and wxMSW implementations are very
|
|
|
|
// similar except for wxMSW using HCURSOR directly instead of
|
|
|
|
// wxCursor.. -- RL.
|
|
|
|
static const wxCursor &GetStoredCursor();
|
|
|
|
static const wxCursor GetBusyCursor();
|
|
|
|
};
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
|
1999-03-29 20:49:05 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
// Reading and writing resources (eg WIN.INI, .Xdefaults)
|
1999-03-29 20:49:05 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
1998-09-25 13:28:52 +00:00
|
|
|
#if wxUSE_RESOURCES
|
1998-12-28 12:35:49 +00:00
|
|
|
WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, const wxString& value, const wxString& file = wxEmptyString);
|
|
|
|
WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, float value, const wxString& file = wxEmptyString);
|
|
|
|
WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, long value, const wxString& file = wxEmptyString);
|
|
|
|
WXDLLEXPORT bool wxWriteResource(const wxString& section, const wxString& entry, int value, const wxString& file = wxEmptyString);
|
|
|
|
|
1999-04-12 22:20:19 +00:00
|
|
|
WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, wxChar **value, const wxString& file = wxEmptyString);
|
1998-12-28 12:35:49 +00:00
|
|
|
WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, float *value, const wxString& file = wxEmptyString);
|
|
|
|
WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, long *value, const wxString& file = wxEmptyString);
|
|
|
|
WXDLLEXPORT bool wxGetResource(const wxString& section, const wxString& entry, int *value, const wxString& file = wxEmptyString);
|
1998-09-25 13:28:52 +00:00
|
|
|
#endif // wxUSE_RESOURCES
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
void WXDLLEXPORT wxGetMousePosition( int* x, int* y );
|
|
|
|
|
|
|
|
// MSW only: get user-defined resource from the .res file.
|
|
|
|
// Returns NULL or newly-allocated memory, so use delete[] to clean up.
|
1998-07-10 14:15:17 +00:00
|
|
|
#ifdef __WXMSW__
|
2002-02-04 22:33:52 +00:00
|
|
|
WXDLLEXPORT extern const wxChar* wxUserResourceStr;
|
|
|
|
WXDLLEXPORT wxChar* wxLoadUserResource(const wxString& resourceName, const wxString& resourceType = wxUserResourceStr);
|
1999-03-29 20:49:05 +00:00
|
|
|
#endif // MSW
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Display and colorss (X only)
|
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-10-25 17:22:13 +00:00
|
|
|
#ifdef __WXGTK__
|
|
|
|
void *wxGetDisplay();
|
|
|
|
#endif
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#ifdef __X__
|
1999-03-29 20:49:05 +00:00
|
|
|
WXDisplay *wxGetDisplay();
|
|
|
|
bool wxSetDisplay(const wxString& display_name);
|
|
|
|
wxString wxGetDisplayName();
|
1999-10-25 17:22:13 +00:00
|
|
|
#endif // X or GTK+
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
#ifdef __X__
|
|
|
|
|
1999-11-18 14:30:10 +00:00
|
|
|
#ifdef __VMS__ // Xlib.h for VMS is not (yet) compatible with C++
|
|
|
|
// The resulting warnings are switched off here
|
|
|
|
#pragma message disable nosimpint
|
|
|
|
#endif
|
2002-02-08 17:44:23 +00:00
|
|
|
// #include <X11/Xlib.h>
|
1999-11-18 14:30:10 +00:00
|
|
|
#ifdef __VMS__
|
|
|
|
#pragma message enable nosimpint
|
|
|
|
#endif
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
#endif //__X__
|
|
|
|
|
1999-10-04 20:15:38 +00:00
|
|
|
#endif // wxUSE_GUI
|
|
|
|
|
2003-07-02 01:41:23 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxYield(): these functions are obsolete, please use wxApp methods instead!
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Yield to other apps/messages
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxYield();
|
2003-07-02 01:41:23 +00:00
|
|
|
|
|
|
|
// Like wxYield, but fails silently if the yield is recursive.
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE bool wxYieldIfNeeded();
|
2003-07-02 01:41:23 +00:00
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Error message functions used by wxWindows (deprecated, use wxLog)
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2002-02-22 18:18:36 +00:00
|
|
|
#if WXWIN_COMPATIBILITY_2_2
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
// Format a message on the standard error (UNIX) or the debugging
|
|
|
|
// stream (Windows)
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_BASE void wxDebugMsg(const wxChar *fmt ...) ATTRIBUTE_PRINTF_1;
|
2000-07-15 19:51:35 +00:00
|
|
|
|
|
|
|
// Non-fatal error (continues)
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_DATA_BASE(extern const wxChar*) wxInternalErrorStr;
|
|
|
|
WXDLLIMPEXP_BASE void wxError(const wxString& msg, const wxString& title = wxInternalErrorStr);
|
2000-07-15 19:51:35 +00:00
|
|
|
|
|
|
|
// Fatal error (exits)
|
2003-07-02 01:59:24 +00:00
|
|
|
WXDLLIMPEXP_DATA_BASE(extern const wxChar*) wxFatalErrorStr;
|
|
|
|
WXDLLIMPEXP_BASE void wxFatalError(const wxString& msg, const wxString& title = wxFatalErrorStr);
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2002-02-22 18:18:36 +00:00
|
|
|
#endif // WXWIN_COMPATIBILITY_2_2
|
2000-07-15 19:51:35 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_UTILSH__
|