]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: utils.h | |
3 | // Purpose: interface of various utility classes and functions | |
4 | // Author: wxWidgets team | |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows licence | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | /** | |
10 | Signal constants used by wxProcess. | |
11 | */ | |
12 | enum wxSignal | |
13 | { | |
14 | wxSIGNONE = 0, //!< verify if the process exists under Unix | |
15 | wxSIGHUP, | |
16 | wxSIGINT, | |
17 | wxSIGQUIT, | |
18 | wxSIGILL, | |
19 | wxSIGTRAP, | |
20 | wxSIGABRT, | |
21 | wxSIGEMT, | |
22 | wxSIGFPE, | |
23 | wxSIGKILL, //!< forcefully kill, dangerous! | |
24 | wxSIGBUS, | |
25 | wxSIGSEGV, | |
26 | wxSIGSYS, | |
27 | wxSIGPIPE, | |
28 | wxSIGALRM, | |
29 | wxSIGTERM //!< terminate the process gently | |
30 | }; | |
31 | ||
32 | /** | |
33 | Return values for wxProcess::Kill. | |
34 | */ | |
35 | enum wxKillError | |
36 | { | |
37 | wxKILL_OK, //!< no error | |
38 | wxKILL_BAD_SIGNAL, //!< no such signal | |
39 | wxKILL_ACCESS_DENIED, //!< permission denied | |
40 | wxKILL_NO_PROCESS, //!< no such process | |
41 | wxKILL_ERROR //!< another, unspecified error | |
42 | }; | |
43 | ||
44 | enum wxKillFlags | |
45 | { | |
46 | wxKILL_NOCHILDREN = 0, //!< don't kill children | |
47 | wxKILL_CHILDREN = 1 //!< kill children | |
48 | }; | |
49 | ||
50 | enum wxShutdownFlags | |
51 | { | |
52 | wxSHUTDOWN_FORCE = 1, //!< can be combined with other flags (MSW-only) | |
53 | wxSHUTDOWN_POWEROFF = 2, //!< power off the computer | |
54 | wxSHUTDOWN_REBOOT = 4, //!< shutdown and reboot | |
55 | wxSHUTDOWN_LOGOFF = 8 //!< close session (currently MSW-only) | |
56 | }; | |
57 | ||
58 | ||
59 | /** | |
60 | @class wxWindowDisabler | |
61 | ||
62 | This class disables all windows of the application (may be with the | |
63 | exception of one of them) in its constructor and enables them back in its | |
64 | destructor. | |
65 | ||
66 | This is useful when you want to indicate to the user that the application | |
67 | is currently busy and cannot respond to user input. | |
68 | ||
69 | @library{wxcore} | |
70 | @category{misc} | |
71 | ||
72 | @see wxBusyCursor | |
73 | */ | |
74 | class wxWindowDisabler | |
75 | { | |
76 | public: | |
77 | /** | |
78 | Disables all top level windows of the applications. | |
79 | ||
80 | If @a disable is @c false nothing is done. This can be convenient if | |
81 | the windows should be disabled depending on some condition. | |
82 | ||
83 | @since 2.9.0 | |
84 | */ | |
85 | wxWindowDisabler(bool disable = true); | |
86 | ||
87 | /** | |
88 | Disables all top level windows of the applications with the exception | |
89 | of @a winToSkip if it is not @NULL. | |
90 | ||
91 | Notice that under MSW if @a winToSkip appears in the taskbar, the user | |
92 | will be able to close the entire application (even though its main | |
93 | window is disabled) by right clicking on the taskbar icon and selecting | |
94 | the appropriate "Close" command from the context menu. To prevent this | |
95 | from happening you may want to use wxFRAME_TOOL_WINDOW, if applicable, | |
96 | or wxFRAME_NO_TASKBAR style when creating the window that will remain | |
97 | enabled. | |
98 | */ | |
99 | wxWindowDisabler(wxWindow* winToSkip); | |
100 | ||
101 | /** | |
102 | Reenables the windows disabled by the constructor. | |
103 | */ | |
104 | ~wxWindowDisabler(); | |
105 | }; | |
106 | ||
107 | ||
108 | ||
109 | /** | |
110 | @class wxBusyCursor | |
111 | ||
112 | This class makes it easy to tell your user that the program is temporarily | |
113 | busy. Just create a wxBusyCursor object on the stack, and within the | |
114 | current scope, the hourglass will be shown. | |
115 | ||
116 | For example: | |
117 | ||
118 | @code | |
119 | wxBusyCursor wait; | |
120 | ||
121 | for (int i = 0; i < 100000; i++) | |
122 | DoACalculation(); | |
123 | @endcode | |
124 | ||
125 | It works by calling wxBeginBusyCursor() in the constructor, and | |
126 | wxEndBusyCursor() in the destructor. | |
127 | ||
128 | @library{wxcore} | |
129 | @category{misc} | |
130 | ||
131 | @see wxBeginBusyCursor(), wxEndBusyCursor(), wxWindowDisabler | |
132 | */ | |
133 | class wxBusyCursor | |
134 | { | |
135 | public: | |
136 | /** | |
137 | Constructs a busy cursor object, calling wxBeginBusyCursor(). | |
138 | */ | |
139 | wxBusyCursor(const wxCursor* cursor = wxHOURGLASS_CURSOR); | |
140 | ||
141 | /** | |
142 | Destroys the busy cursor object, calling wxEndBusyCursor(). | |
143 | */ | |
144 | ~wxBusyCursor(); | |
145 | }; | |
146 | ||
147 | ||
148 | ||
149 | // ============================================================================ | |
150 | // Global functions/macros | |
151 | // ============================================================================ | |
152 | ||
153 | ||
154 | /** @addtogroup group_funcmacro_dialog */ | |
155 | //@{ | |
156 | ||
157 | /** | |
158 | Changes the cursor to the given cursor for all windows in the application. | |
159 | Use wxEndBusyCursor() to revert the cursor back to its previous state. | |
160 | These two calls can be nested, and a counter ensures that only the outer | |
161 | calls take effect. | |
162 | ||
163 | @see wxIsBusy(), wxBusyCursor | |
164 | ||
165 | @header{wx/utils.h} | |
166 | */ | |
167 | void wxBeginBusyCursor(const wxCursor* cursor = wxHOURGLASS_CURSOR); | |
168 | ||
169 | /** | |
170 | Changes the cursor back to the original cursor, for all windows in the | |
171 | application. Use with wxBeginBusyCursor(). | |
172 | ||
173 | @see wxIsBusy(), wxBusyCursor | |
174 | ||
175 | @header{wx/utils.h} | |
176 | */ | |
177 | void wxEndBusyCursor(); | |
178 | ||
179 | /** | |
180 | Returns @true if between two wxBeginBusyCursor() and wxEndBusyCursor() | |
181 | calls. | |
182 | ||
183 | @see wxBusyCursor. | |
184 | ||
185 | @header{wx/utils.h} | |
186 | */ | |
187 | bool wxIsBusy(); | |
188 | ||
189 | /** | |
190 | Ring the system bell. | |
191 | ||
192 | @note This function is categorized as a GUI one and so is not thread-safe. | |
193 | ||
194 | @header{wx/utils.h} | |
195 | */ | |
196 | void wxBell(); | |
197 | ||
198 | /** | |
199 | Shows a message box with the information about the wxWidgets build used, | |
200 | including its version, most important build parameters and the version of | |
201 | the underlying GUI toolkit. This is mainly used for diagnostic purposes | |
202 | and can be invoked by Ctrl-Alt-middle clicking on any wxWindow which | |
203 | doesn't otherwise handle this event. | |
204 | ||
205 | @since 2.9.0 | |
206 | ||
207 | @see wxGetLibraryVersionInfo() | |
208 | ||
209 | @header{wx/utils.h} | |
210 | */ | |
211 | void wxInfoMessageBox(wxWindow* parent); | |
212 | ||
213 | //@} | |
214 | ||
215 | /** @addtogroup group_funcmacro_version */ | |
216 | //@{ | |
217 | ||
218 | /** | |
219 | Get wxWidgets version information. | |
220 | ||
221 | @since 2.9.2 | |
222 | ||
223 | @see wxVersionInfo | |
224 | ||
225 | @header{wx/utils.h} | |
226 | ||
227 | @library{wxcore} | |
228 | */ | |
229 | wxVersionInfo wxGetLibraryVersionInfo(); | |
230 | ||
231 | //@} | |
232 | ||
233 | ||
234 | ||
235 | /** @addtogroup group_funcmacro_env */ | |
236 | //@{ | |
237 | ||
238 | /** | |
239 | A map type containing environment variables names and values. | |
240 | ||
241 | This type is used with wxGetEnvMap() function and wxExecuteEnv structure | |
242 | optionally passed to wxExecute(). | |
243 | ||
244 | @since 2.9.2 | |
245 | ||
246 | @header{wx/utils.h} | |
247 | */ | |
248 | typedef wxStringToStringHashMap wxEnvVariableHashMap; | |
249 | ||
250 | /** | |
251 | This is a macro defined as @c getenv() or its wide char version in Unicode | |
252 | mode. | |
253 | ||
254 | Note that under Win32 it may not return correct value for the variables set | |
255 | with wxSetEnv(), use wxGetEnv() function instead. | |
256 | ||
257 | @header{wx/utils.h} | |
258 | */ | |
259 | wxChar* wxGetenv(const wxString& var); | |
260 | ||
261 | /** | |
262 | Returns the current value of the environment variable @a var in @a value. | |
263 | ||
264 | @a value may be @NULL if you just want to know if the variable exists and | |
265 | are not interested in its value. | |
266 | ||
267 | Returns @true if the variable exists, @false otherwise. | |
268 | ||
269 | @header{wx/utils.h} | |
270 | */ | |
271 | bool wxGetEnv(const wxString& var, wxString* value); | |
272 | ||
273 | /** | |
274 | Sets the value of the environment variable @a var (adding it if necessary) | |
275 | to @a value. | |
276 | ||
277 | Notice that under Windows platforms the program may have two different | |
278 | environment blocks: the first one is that of a Windows process and is | |
279 | always present, but the CRT may maintain its own independent copy of the | |
280 | environment. wxSetEnv() will always update the first copy, which means that | |
281 | wxGetEnv(), which uses it directly, will always return the expected value | |
282 | after this call. But wxSetEnv() only updates the second copy for some | |
283 | compilers/CRT implementations (currently only MSVC and MinGW which uses the | |
284 | same MSVC CRT) and so using wxGetenv() (notice the difference in case) may | |
285 | not return the updated value. | |
286 | ||
287 | @param var | |
288 | The environment variable to be set, must not contain @c '=' character. | |
289 | @param value | |
290 | New value of the variable. | |
291 | @return | |
292 | @true on success or @false if changing the value failed. | |
293 | ||
294 | @see wxUnsetEnv() | |
295 | ||
296 | @header{wx/utils.h} | |
297 | */ | |
298 | bool wxSetEnv(const wxString& var, const wxString& value); | |
299 | ||
300 | /** | |
301 | Removes the variable @a var from the environment. | |
302 | ||
303 | wxGetEnv() will return @NULL after the call to this function. | |
304 | ||
305 | Returns @true on success. | |
306 | ||
307 | @header{wx/utils.h} | |
308 | */ | |
309 | bool wxUnsetEnv(const wxString& var); | |
310 | ||
311 | /** | |
312 | Fill a map with the complete content of current environment. | |
313 | ||
314 | The map will contain the environment variable names as keys and their | |
315 | values as values. | |
316 | ||
317 | @param map | |
318 | The environment map to fill, must be non-@NULL. | |
319 | @return | |
320 | @true if environment was successfully retrieved or @false otherwise. | |
321 | ||
322 | @header{wx/utils.h} | |
323 | ||
324 | @since 2.9.2 | |
325 | */ | |
326 | bool wxGetEnvMap(wxEnvVariableHashMap *map); | |
327 | //@} | |
328 | ||
329 | ||
330 | ||
331 | /** @addtogroup group_funcmacro_misc */ | |
332 | //@{ | |
333 | ||
334 | /** | |
335 | Returns battery state as one of @c wxBATTERY_NORMAL_STATE, | |
336 | @c wxBATTERY_LOW_STATE, @c wxBATTERY_CRITICAL_STATE, | |
337 | @c wxBATTERY_SHUTDOWN_STATE or @c wxBATTERY_UNKNOWN_STATE. | |
338 | @c wxBATTERY_UNKNOWN_STATE is also the default on platforms where this | |
339 | feature is not implemented (currently everywhere but MS Windows). | |
340 | ||
341 | @header{wx/utils.h} | |
342 | */ | |
343 | wxBatteryState wxGetBatteryState(); | |
344 | ||
345 | /** | |
346 | Returns the type of power source as one of @c wxPOWER_SOCKET, | |
347 | @c wxPOWER_BATTERY or @c wxPOWER_UNKNOWN. @c wxPOWER_UNKNOWN is also the | |
348 | default on platforms where this feature is not implemented (currently | |
349 | everywhere but MS Windows). | |
350 | ||
351 | @header{wx/utils.h} | |
352 | */ | |
353 | wxPowerType wxGetPowerType(); | |
354 | ||
355 | /** | |
356 | Under X only, returns the current display name. | |
357 | ||
358 | @see wxSetDisplayName() | |
359 | ||
360 | @header{wx/utils.h} | |
361 | */ | |
362 | wxString wxGetDisplayName(); | |
363 | ||
364 | /** | |
365 | For normal keys, returns @true if the specified key is currently down. | |
366 | ||
367 | For togglable keys (Caps Lock, Num Lock and Scroll Lock), returns @true if | |
368 | the key is toggled such that its LED indicator is lit. There is currently | |
369 | no way to test whether togglable keys are up or down. | |
370 | ||
371 | Even though there are virtual key codes defined for mouse buttons, they | |
372 | cannot be used with this function currently. | |
373 | ||
374 | @header{wx/utils.h} | |
375 | */ | |
376 | bool wxGetKeyState(wxKeyCode key); | |
377 | ||
378 | /** | |
379 | Returns the mouse position in screen coordinates. | |
380 | ||
381 | @header{wx/utils.h} | |
382 | */ | |
383 | wxPoint wxGetMousePosition(); | |
384 | ||
385 | /** | |
386 | Returns the current state of the mouse. Returns a wxMouseState instance | |
387 | that contains the current position of the mouse pointer in screen | |
388 | coordinates, as well as boolean values indicating the up/down status of the | |
389 | mouse buttons and the modifier keys. | |
390 | ||
391 | @header{wx/utils.h} | |
392 | */ | |
393 | wxMouseState wxGetMouseState(); | |
394 | ||
395 | /** | |
396 | This function enables or disables all top level windows. It is used by | |
397 | wxSafeYield(). | |
398 | ||
399 | @header{wx/utils.h} | |
400 | */ | |
401 | void wxEnableTopLevelWindows(bool enable = true); | |
402 | ||
403 | /** | |
404 | Find the deepest window at the given mouse position in screen coordinates, | |
405 | returning the window if found, or @NULL if not. | |
406 | ||
407 | @header{wx/utils.h} | |
408 | */ | |
409 | wxWindow* wxFindWindowAtPoint(const wxPoint& pt); | |
410 | ||
411 | /** | |
412 | @deprecated Replaced by wxWindow::FindWindowByLabel(). | |
413 | ||
414 | Find a window by its label. Depending on the type of window, the label may | |
415 | be a window title or panel item label. If @a parent is @NULL, the search | |
416 | will start from all top-level frames and dialog boxes; if non-@NULL, the | |
417 | search will be limited to the given window hierarchy. The search is | |
418 | recursive in both cases. | |
419 | ||
420 | @header{wx/utils.h} | |
421 | */ | |
422 | wxWindow* wxFindWindowByLabel(const wxString& label, | |
423 | wxWindow* parent = NULL); | |
424 | ||
425 | /** | |
426 | @deprecated Replaced by wxWindow::FindWindowByName(). | |
427 | ||
428 | Find a window by its name (as given in a window constructor or @e Create | |
429 | function call). If @a parent is @NULL, the search will start from all | |
430 | top-level frames and dialog boxes; if non-@NULL, the search will be limited | |
431 | to the given window hierarchy. The search is recursive in both cases. | |
432 | ||
433 | If no such named window is found, wxFindWindowByLabel() is called. | |
434 | ||
435 | @header{wx/utils.h} | |
436 | */ | |
437 | wxWindow* wxFindWindowByName(const wxString& name, wxWindow* parent = NULL); | |
438 | ||
439 | /** | |
440 | Find a menu item identifier associated with the given frame's menu bar. | |
441 | ||
442 | @header{wx/utils.h} | |
443 | */ | |
444 | int wxFindMenuItemId(wxFrame* frame, const wxString& menuString, | |
445 | const wxString& itemString); | |
446 | ||
447 | /** | |
448 | @deprecated Ids generated by it can conflict with the Ids defined by the | |
449 | user code, use @c wxID_ANY to assign ids which are guaranteed | |
450 | to not conflict with the user-defined ids for the controls and | |
451 | menu items you create instead of using this function. | |
452 | ||
453 | Generates an integer identifier unique to this run of the program. | |
454 | ||
455 | @header{wx/utils.h} | |
456 | */ | |
457 | long wxNewId(); | |
458 | ||
459 | /** | |
460 | Ensures that Ids subsequently generated by wxNewId() do not clash with the | |
461 | given @a id. | |
462 | ||
463 | @header{wx/utils.h} | |
464 | */ | |
465 | void wxRegisterId(long id); | |
466 | ||
467 | /** | |
468 | Opens the @a document in the application associated with the files of this | |
469 | type. | |
470 | ||
471 | The @a flags parameter is currently not used | |
472 | ||
473 | Returns @true if the application was successfully launched. | |
474 | ||
475 | @see wxLaunchDefaultBrowser(), wxExecute() | |
476 | ||
477 | @header{wx/utils.h} | |
478 | */ | |
479 | bool wxLaunchDefaultApplication(const wxString& document, int flags = 0); | |
480 | ||
481 | /** | |
482 | Opens the @a url in user's default browser. | |
483 | ||
484 | If the @a flags parameter contains @c wxBROWSER_NEW_WINDOW flag, a new | |
485 | window is opened for the URL (currently this is only supported under | |
486 | Windows). | |
487 | ||
488 | And unless the @a flags parameter contains @c wxBROWSER_NOBUSYCURSOR flag, | |
489 | a busy cursor is shown while the browser is being launched (using | |
490 | wxBusyCursor). | |
491 | ||
492 | The parameter @a url is interpreted as follows: | |
493 | - if it has a valid scheme (e.g. @c "file:", @c "http:" or @c "mailto:") | |
494 | it is passed to the appropriate browser configured in the user system. | |
495 | - if it has no valid scheme (e.g. it's a local file path without the @c "file:" | |
496 | prefix), then ::wxFileExists and ::wxDirExists are used to test if it's a | |
497 | local file/directory; if it is, then the browser is called with the | |
498 | @a url parameter eventually prefixed by @c "file:". | |
499 | - if it has no valid scheme and it's not a local file/directory, then @c "http:" | |
500 | is prepended and the browser is called. | |
501 | ||
502 | Returns @true if the application was successfully launched. | |
503 | ||
504 | @note For some configurations of the running user, the application which is | |
505 | launched to open the given URL may be URL-dependent (e.g. a browser | |
506 | may be used for local URLs while another one may be used for remote | |
507 | URLs). | |
508 | ||
509 | @see wxLaunchDefaultApplication(), wxExecute() | |
510 | ||
511 | @header{wx/utils.h} | |
512 | */ | |
513 | bool wxLaunchDefaultBrowser(const wxString& url, int flags = 0); | |
514 | ||
515 | /** | |
516 | Loads a user-defined Windows resource as a string. If the resource is | |
517 | found, the function creates a new character array and copies the data into | |
518 | it. A pointer to this data is returned. If unsuccessful, @NULL is returned. | |
519 | ||
520 | The resource must be defined in the @c .rc file using the following syntax: | |
521 | ||
522 | @code | |
523 | myResource TEXT file.ext | |
524 | @endcode | |
525 | ||
526 | Where @c file.ext is a file that the resource compiler can find. | |
527 | ||
528 | This function is available under Windows only. | |
529 | ||
530 | @header{wx/utils.h} | |
531 | */ | |
532 | wxString wxLoadUserResource(const wxString& resourceName, | |
533 | const wxString& resourceType = "TEXT"); | |
534 | ||
535 | /** | |
536 | @deprecated Replaced by wxWindow::Close(). See the | |
537 | @ref overview_windowdeletion "window deletion overview". | |
538 | ||
539 | Tells the system to delete the specified object when all other events have | |
540 | been processed. In some environments, it is necessary to use this instead | |
541 | of deleting a frame directly with the delete operator, because some GUIs | |
542 | will still send events to a deleted window. | |
543 | ||
544 | @header{wx/utils.h} | |
545 | */ | |
546 | void wxPostDelete(wxObject* object); | |
547 | ||
548 | ||
549 | /** | |
550 | Compare function type for use with wxQsort() | |
551 | ||
552 | @header{wx/utils.h} | |
553 | */ | |
554 | typedef int (*wxSortCallback)(const void* pItem1, const void* pItem2, const void* user_data); | |
555 | ||
556 | /** | |
557 | Function implementing quick sort algorithm. | |
558 | ||
559 | This function sorts @a total_elems objects of size @a size located at @a | |
560 | pbase. It uses @a cmp function for comparing them and passes @a user_data | |
561 | pointer to the comparison function each time it's called. | |
562 | ||
563 | @header{wx/utils.h} | |
564 | */ | |
565 | void wxQsort(void* pbase, size_t total_elems, | |
566 | size_t size, wxSortCallback cmp, const void* user_data); | |
567 | ||
568 | ||
569 | /** | |
570 | Under X only, sets the current display name. This is the X host and display | |
571 | name such as "colonsay:0.0", and the function indicates which display | |
572 | should be used for creating windows from this point on. Setting the display | |
573 | within an application allows multiple displays to be used. | |
574 | ||
575 | @see wxGetDisplayName() | |
576 | ||
577 | @header{wx/utils.h} | |
578 | */ | |
579 | void wxSetDisplayName(const wxString& displayName); | |
580 | ||
581 | ||
582 | /** | |
583 | flags for wxStripMenuCodes | |
584 | */ | |
585 | enum | |
586 | { | |
587 | // strip '&' characters | |
588 | wxStrip_Mnemonics = 1, | |
589 | ||
590 | // strip everything after '\t' | |
591 | wxStrip_Accel = 2, | |
592 | ||
593 | // strip everything (this is the default) | |
594 | wxStrip_All = wxStrip_Mnemonics | wxStrip_Accel | |
595 | }; | |
596 | ||
597 | /** | |
598 | Strips any menu codes from @a str and returns the result. | |
599 | ||
600 | By default, the functions strips both the mnemonics character (@c '&') | |
601 | which is used to indicate a keyboard shortkey, and the accelerators, which | |
602 | are used only in the menu items and are separated from the main text by the | |
603 | @c \\t (TAB) character. By using @a flags of @c wxStrip_Mnemonics or | |
604 | @c wxStrip_Accel to strip only the former or the latter part, respectively. | |
605 | ||
606 | Notice that in most cases wxMenuItem::GetLabelFromText() or | |
607 | wxControl::GetLabelText() can be used instead. | |
608 | ||
609 | @header{wx/utils.h} | |
610 | */ | |
611 | wxString wxStripMenuCodes(const wxString& str, int flags = wxStrip_All); | |
612 | ||
613 | //@} | |
614 | ||
615 | ||
616 | ||
617 | /** @addtogroup group_funcmacro_networkuseros */ | |
618 | //@{ | |
619 | ||
620 | /** | |
621 | Copies the user's email address into the supplied buffer, by concatenating | |
622 | the values returned by wxGetFullHostName() and wxGetUserId(). | |
623 | ||
624 | @return @true if successful, @false otherwise. | |
625 | ||
626 | @header{wx/utils.h} | |
627 | */ | |
628 | wxString wxGetEmailAddress(); | |
629 | ||
630 | /** | |
631 | @deprecated Use wxGetEmailAddress() instead. | |
632 | ||
633 | @param buf Buffer to store the email address in. | |
634 | @param sz Size of the buffer. | |
635 | ||
636 | @return @true if successful, @false otherwise. | |
637 | ||
638 | @header{wx/utils.h} | |
639 | */ | |
640 | bool wxGetEmailAddress(char* buf, int sz); | |
641 | ||
642 | /** | |
643 | Returns the amount of free memory in bytes under environments which support | |
644 | it, and -1 if not supported or failed to perform measurement. | |
645 | ||
646 | @header{wx/utils.h} | |
647 | */ | |
648 | wxMemorySize wxGetFreeMemory(); | |
649 | ||
650 | /** | |
651 | Return the (current) user's home directory. | |
652 | ||
653 | @see wxGetUserHome(), wxStandardPaths | |
654 | ||
655 | @header{wx/utils.h} | |
656 | */ | |
657 | wxString wxGetHomeDir(); | |
658 | ||
659 | /** | |
660 | Copies the current host machine's name into the supplied buffer. Please | |
661 | note that the returned name is @e not fully qualified, i.e. it does not | |
662 | include the domain name. | |
663 | ||
664 | Under Windows or NT, this function first looks in the environment variable | |
665 | SYSTEM_NAME; if this is not found, the entry @b HostName in the wxWidgets | |
666 | section of the WIN.INI file is tried. | |
667 | ||
668 | @return The hostname if successful or an empty string otherwise. | |
669 | ||
670 | @see wxGetFullHostName() | |
671 | ||
672 | @header{wx/utils.h} | |
673 | */ | |
674 | wxString wxGetHostName(); | |
675 | ||
676 | /** | |
677 | @deprecated Use wxGetHostName() instead. | |
678 | ||
679 | @param buf Buffer to store the host name in. | |
680 | @param sz Size of the buffer. | |
681 | ||
682 | @return @true if successful, @false otherwise. | |
683 | ||
684 | @header{wx/utils.h} | |
685 | */ | |
686 | bool wxGetHostName(char* buf, int sz); | |
687 | ||
688 | /** | |
689 | Returns the FQDN (fully qualified domain host name) or an empty string on | |
690 | error. | |
691 | ||
692 | @see wxGetHostName() | |
693 | ||
694 | @header{wx/utils.h} | |
695 | */ | |
696 | wxString wxGetFullHostName(); | |
697 | ||
698 | /** | |
699 | Returns the home directory for the given user. If the @a user is empty | |
700 | (default value), this function behaves like wxGetHomeDir() (i.e. returns | |
701 | the current user home directory). | |
702 | ||
703 | If the home directory couldn't be determined, an empty string is returned. | |
704 | ||
705 | @header{wx/utils.h} | |
706 | */ | |
707 | wxString wxGetUserHome(const wxString& user = wxEmptyString); | |
708 | ||
709 | /** | |
710 | This function returns the "user id" also known as "login name" under Unix | |
711 | (i.e. something like "jsmith"). It uniquely identifies the current user (on | |
712 | this system). Under Windows or NT, this function first looks in the | |
713 | environment variables USER and LOGNAME; if neither of these is found, the | |
714 | entry @b UserId in the @b wxWidgets section of the WIN.INI file is tried. | |
715 | ||
716 | @return The login name if successful or an empty string otherwise. | |
717 | ||
718 | @see wxGetUserName() | |
719 | ||
720 | @header{wx/utils.h} | |
721 | */ | |
722 | wxString wxGetUserId(); | |
723 | ||
724 | /** | |
725 | @deprecated Use wxGetUserId() instead. | |
726 | ||
727 | @param buf Buffer to store the login name in. | |
728 | @param sz Size of the buffer. | |
729 | ||
730 | @return @true if successful, @false otherwise. | |
731 | ||
732 | @header{wx/utils.h} | |
733 | */ | |
734 | bool wxGetUserId(char* buf, int sz); | |
735 | ||
736 | /** | |
737 | This function returns the full user name (something like "Mr. John Smith"). | |
738 | ||
739 | Under Windows or NT, this function looks for the entry UserName in the | |
740 | wxWidgets section of the WIN.INI file. If PenWindows is running, the entry | |
741 | Current in the section User of the PENWIN.INI file is used. | |
742 | ||
743 | @return The full user name if successful or an empty string otherwise. | |
744 | ||
745 | @see wxGetUserId() | |
746 | ||
747 | @header{wx/utils.h} | |
748 | */ | |
749 | wxString wxGetUserName(); | |
750 | ||
751 | /** | |
752 | @deprecated Use wxGetUserName() instead. | |
753 | ||
754 | @param buf Buffer to store the full user name in. | |
755 | @param sz Size of the buffer. | |
756 | ||
757 | @return @true if successful, @false otherwise. | |
758 | ||
759 | @header{wx/utils.h} | |
760 | */ | |
761 | bool wxGetUserName(char* buf, int sz); | |
762 | ||
763 | /** | |
764 | Returns the string containing the description of the current platform in a | |
765 | user-readable form. For example, this function may return strings like | |
766 | "Windows NT Version 4.0" or "Linux 2.2.2 i386". | |
767 | ||
768 | @see wxGetOsVersion() | |
769 | ||
770 | @header{wx/utils.h} | |
771 | */ | |
772 | wxString wxGetOsDescription(); | |
773 | ||
774 | /** | |
775 | Gets the version and the operating system ID for currently running OS. | |
776 | The returned wxOperatingSystemId value can be used for a basic categorization | |
777 | of the OS family; the major and minor version numbers allows to detect a specific | |
778 | system. | |
779 | ||
780 | For Unix-like systems (@c wxOS_UNIX) the major and minor version integers will | |
781 | contain the kernel major and minor version numbers (as returned by the | |
782 | 'uname -r' command); e.g. "2" and "6" if the machine is using kernel 2.6.19. | |
783 | ||
784 | For Mac OS X systems (@c wxOS_MAC) the major and minor version integers are the | |
785 | natural version numbers associated with the OS; e.g. "10" and "6" if the machine | |
786 | is using Mac OS X Snow Leopard. | |
787 | ||
788 | For Windows-like systems (@c wxOS_WINDOWS) the major and minor version integers will | |
789 | contain the following values: | |
790 | @beginTable | |
791 | @row3col{<b>Windows OS name</b>, <b>Major version</b>, <b>Minor version</b>} | |
792 | @row3col{Windows 7, 6, 1} | |
793 | @row3col{Windows Server 2008 R2, 6, 1} | |
794 | @row3col{Windows Server 2008, 6, 0} | |
795 | @row3col{Windows Vista, 6, 0} | |
796 | @row3col{Windows Server 2003 R2, 5, 2} | |
797 | @row3col{Windows Server 2003, 5, 2} | |
798 | @row3col{Windows XP, 5, 1} | |
799 | @row3col{Windows 2000, 5, 0} | |
800 | @endDefList | |
801 | See the <a href="http://msdn.microsoft.com/en-us/library/ms724832(VS.85).aspx">MSDN</a> | |
802 | for more info about the values above. | |
803 | ||
804 | @see wxGetOsDescription(), wxPlatformInfo | |
805 | ||
806 | @header{wx/utils.h} | |
807 | */ | |
808 | wxOperatingSystemId wxGetOsVersion(int* major = NULL, int* minor = NULL); | |
809 | ||
810 | /** | |
811 | Returns @true if the operating system the program is running under is 64 | |
812 | bit. The check is performed at run-time and may differ from the value | |
813 | available at compile-time (at compile-time you can just check if | |
814 | <tt>sizeof(void*) == 8</tt>) since the program could be running in | |
815 | emulation mode or in a mixed 32/64 bit system (bi-architecture operating | |
816 | system). | |
817 | ||
818 | @note This function is not 100% reliable on some systems given the fact | |
819 | that there isn't always a standard way to do a reliable check on the | |
820 | OS architecture. | |
821 | ||
822 | @header{wx/utils.h} | |
823 | */ | |
824 | bool wxIsPlatform64Bit(); | |
825 | ||
826 | /** | |
827 | Returns @true if the current platform is little endian (instead of big | |
828 | endian). The check is performed at run-time. | |
829 | ||
830 | @see @ref group_funcmacro_byteorder "Byte Order Functions and Macros" | |
831 | ||
832 | @header{wx/utils.h} | |
833 | */ | |
834 | bool wxIsPlatformLittleEndian(); | |
835 | ||
836 | /** | |
837 | Returns a structure containing informations about the currently running | |
838 | Linux distribution. | |
839 | ||
840 | This function uses the @c lsb_release utility which is part of the | |
841 | <tt>Linux Standard Base Core</tt> specification | |
842 | (see http://refspecs.linux-foundation.org/lsb.shtml) since the very first LSB | |
843 | release 1.0 (released in 2001). | |
844 | The @c lsb_release utility is very common on modern Linux distributions but in | |
845 | case it's not available, then this function will return a ::wxLinuxDistributionInfo | |
846 | structure containing empty strings. | |
847 | ||
848 | This function is Linux-specific and is only available when the @c __LINUX__ | |
849 | symbol is defined. | |
850 | */ | |
851 | wxLinuxDistributionInfo wxGetLinuxDistributionInfo(); | |
852 | ||
853 | //@} | |
854 | ||
855 | ||
856 | ||
857 | /** @addtogroup group_funcmacro_procctrl */ | |
858 | //@{ | |
859 | ||
860 | /** | |
861 | @struct wxExecuteEnv | |
862 | ||
863 | This structure can optionally be passed to wxExecute() to specify | |
864 | additional options to use for the child process. | |
865 | ||
866 | @since 2.9.2 | |
867 | ||
868 | @header{wx/utils.h} | |
869 | */ | |
870 | struct wxExecuteEnv | |
871 | { | |
872 | /** | |
873 | The initial working directory for the new process. | |
874 | ||
875 | If this field is empty, the current working directory of this process | |
876 | is used. | |
877 | */ | |
878 | wxString cwd; | |
879 | ||
880 | /** | |
881 | The environment variable map. | |
882 | ||
883 | If the map is empty, the environment variables of the current process | |
884 | are also used for the child one, otherwise only the variables defined | |
885 | in this map are used. | |
886 | */ | |
887 | wxEnvVariableHashMap env; | |
888 | }; | |
889 | ||
890 | /** | |
891 | Bit flags that can be used with wxExecute(). | |
892 | */ | |
893 | enum | |
894 | { | |
895 | /** | |
896 | Execute the process asynchronously. | |
897 | ||
898 | Notice that, due to its value, this is the default. | |
899 | */ | |
900 | wxEXEC_ASYNC = 0, | |
901 | ||
902 | /** | |
903 | Execute the process synchronously. | |
904 | */ | |
905 | wxEXEC_SYNC = 1, | |
906 | ||
907 | /** | |
908 | Always show the child process console under MSW. | |
909 | ||
910 | The child console is hidden by default if the child IO is redirected, | |
911 | this flag allows to change this and show it nevertheless. | |
912 | ||
913 | This flag is ignored under the other platforms. | |
914 | */ | |
915 | wxEXEC_SHOW_CONSOLE = 2, | |
916 | ||
917 | /** | |
918 | Make the new process a group leader. | |
919 | ||
920 | Under Unix, if the process is the group leader then passing | |
921 | wxKILL_CHILDREN to wxKill() kills all children as well as pid. | |
922 | ||
923 | Under MSW, applies only to console applications and is only supported | |
924 | under NT family (i.e. not under Windows 9x). It corresponds to the | |
925 | native @c CREATE_NEW_PROCESS_GROUP and, in particular, ensures that | |
926 | Ctrl-Break signals will be sent to all children of this process as well | |
927 | to the process itself. Support for this flag under MSW was added in | |
928 | version 2.9.4 of wxWidgets. | |
929 | */ | |
930 | wxEXEC_MAKE_GROUP_LEADER = 4, | |
931 | ||
932 | /** | |
933 | Don't disable the program UI while running the child synchronously. | |
934 | ||
935 | By default synchronous execution disables all program windows to avoid | |
936 | that the user interacts with the program while the child process is | |
937 | running, you can use this flag to prevent this from happening. | |
938 | ||
939 | This flag can only be used with ::wxEXEC_SYNC. | |
940 | */ | |
941 | wxEXEC_NODISABLE = 8, | |
942 | ||
943 | /** | |
944 | Don't dispatch events while the child process is executed. | |
945 | ||
946 | By default, the event loop is run while waiting for synchronous | |
947 | execution to complete and this flag can be used to simply block the | |
948 | main process until the child process finishes | |
949 | ||
950 | This flag can only be used with ::wxEXEC_SYNC. | |
951 | */ | |
952 | wxEXEC_NOEVENTS = 16, | |
953 | ||
954 | /** | |
955 | Hide child process console under MSW. | |
956 | ||
957 | Under MSW, hide the console of the child process if it has one, | |
958 | even if its IO is not redirected. | |
959 | ||
960 | This flag is ignored under the other platforms. | |
961 | */ | |
962 | wxEXEC_HIDE_CONSOLE = 32, | |
963 | ||
964 | /** | |
965 | Convenient synonym for flags given system()-like behaviour. | |
966 | */ | |
967 | wxEXEC_BLOCK = wxEXEC_SYNC | wxEXEC_NOEVENTS | |
968 | }; | |
969 | /** | |
970 | Executes another program in Unix or Windows. | |
971 | ||
972 | In the overloaded versions of this function, if @a flags parameter contains | |
973 | @c wxEXEC_ASYNC flag (the default), flow of control immediately returns. If | |
974 | it contains @c wxEXEC_SYNC, the current application waits until the other | |
975 | program has terminated. | |
976 | ||
977 | In the case of synchronous execution, the return value is the exit code of | |
978 | the process (which terminates by the moment the function returns) and will | |
979 | be -1 if the process couldn't be started and typically 0 if the process | |
980 | terminated successfully. Also, while waiting for the process to terminate, | |
981 | wxExecute() will call wxYield(). Because of this, by default this function | |
982 | disables all application windows to avoid unexpected reentrancies which | |
983 | could result from the users interaction with the program while the child | |
984 | process is running. If you are sure that it is safe to not disable the | |
985 | program windows, you may pass @c wxEXEC_NODISABLE flag to prevent this | |
986 | automatic disabling from happening. | |
987 | ||
988 | For asynchronous execution, however, the return value is the process id and | |
989 | zero value indicates that the command could not be executed. As an added | |
990 | complication, the return value of -1 in this case indicates that we didn't | |
991 | launch a new process, but connected to the running one (this can only | |
992 | happen when using DDE under Windows for command execution). In particular, | |
993 | in this case only, the calling code will not get the notification about | |
994 | process termination. | |
995 | ||
996 | If @a callback isn't @NULL and if execution is asynchronous, | |
997 | wxProcess::OnTerminate() will be called when the process finishes. | |
998 | Specifying this parameter also allows you to redirect the standard input | |
999 | and/or output of the process being launched by calling | |
1000 | wxProcess::Redirect(). | |
1001 | ||
1002 | Under Windows, when launching a console process its console is shown by | |
1003 | default but hidden if its IO is redirected. Both of these default | |
1004 | behaviours may be overridden: if ::wxEXEC_HIDE_CONSOLE is specified, the | |
1005 | console will never be shown. If ::wxEXEC_SHOW_CONSOLE is used, the console | |
1006 | will be shown even if the child process IO is redirected. Neither of these | |
1007 | flags affect non-console Windows applications or does anything under the | |
1008 | other systems. | |
1009 | ||
1010 | Under Unix the flag @c wxEXEC_MAKE_GROUP_LEADER may be used to ensure that | |
1011 | the new process is a group leader (this will create a new session if | |
1012 | needed). Calling wxKill() passing wxKILL_CHILDREN will kill this process as | |
1013 | well as all of its children (except those which have started their own | |
1014 | session). Under MSW, this flag can be used with console processes only and | |
1015 | corresponds to the native @c CREATE_NEW_PROCESS_GROUP flag. | |
1016 | ||
1017 | The @c wxEXEC_NOEVENTS flag prevents processing of any events from taking | |
1018 | place while the child process is running. It should be only used for very | |
1019 | short-lived processes as otherwise the application windows risk becoming | |
1020 | unresponsive from the users point of view. As this flag only makes sense | |
1021 | with @c wxEXEC_SYNC, @c wxEXEC_BLOCK equal to the sum of both of these | |
1022 | flags is provided as a convenience. | |
1023 | ||
1024 | @note Currently wxExecute() can only be used from the main thread, calling | |
1025 | this function from another thread will result in an assert failure in | |
1026 | debug build and won't work. | |
1027 | ||
1028 | @param command | |
1029 | The command to execute and any parameters to pass to it as a single | |
1030 | string, i.e. "emacs file.txt". | |
1031 | @param flags | |
1032 | Must include either wxEXEC_ASYNC or wxEXEC_SYNC and can also include | |
1033 | wxEXEC_SHOW_CONSOLE, wxEXEC_HIDE_CONSOLE, wxEXEC_MAKE_GROUP_LEADER (in | |
1034 | either case) or wxEXEC_NODISABLE and wxEXEC_NOEVENTS or wxEXEC_BLOCK, | |
1035 | which is equal to their combination, in wxEXEC_SYNC case. | |
1036 | @param callback | |
1037 | An optional pointer to wxProcess. | |
1038 | @param env | |
1039 | An optional pointer to additional parameters for the child process, | |
1040 | such as its initial working directory and environment variables. This | |
1041 | parameter is available in wxWidgets 2.9.2 and later only. | |
1042 | ||
1043 | @see wxShell(), wxProcess, @ref page_samples_exec, | |
1044 | wxLaunchDefaultApplication(), wxLaunchDefaultBrowser() | |
1045 | ||
1046 | @header{wx/utils.h} | |
1047 | ||
1048 | @beginWxPerlOnly | |
1049 | In wxPerl this function is called @c Wx::ExecuteCommand. | |
1050 | @endWxPerlOnly | |
1051 | */ | |
1052 | long wxExecute(const wxString& command, int flags = wxEXEC_ASYNC, | |
1053 | wxProcess* callback = NULL, | |
1054 | const wxExecuteEnv* env = NULL); | |
1055 | //@} | |
1056 | ||
1057 | /** @addtogroup group_funcmacro_procctrl */ | |
1058 | //@{ | |
1059 | /** | |
1060 | This is an overloaded version of wxExecute(const wxString&,int,wxProcess*), | |
1061 | please see its documentation for general information. | |
1062 | ||
1063 | This version takes an array of values: a command, any number of arguments, | |
1064 | terminated by @NULL. | |
1065 | ||
1066 | @param argv | |
1067 | The command to execute should be the first element of this array, any | |
1068 | additional ones are the command parameters and the array must be | |
1069 | terminated with a @NULL pointer. | |
1070 | @param flags | |
1071 | Same as for wxExecute(const wxString&,int,wxProcess*) overload. | |
1072 | @param callback | |
1073 | An optional pointer to wxProcess. | |
1074 | @param env | |
1075 | An optional pointer to additional parameters for the child process, | |
1076 | such as its initial working directory and environment variables. This | |
1077 | parameter is available in wxWidgets 2.9.2 and later only. | |
1078 | ||
1079 | @see wxShell(), wxProcess, @ref page_samples_exec, | |
1080 | wxLaunchDefaultApplication(), wxLaunchDefaultBrowser() | |
1081 | ||
1082 | @header{wx/utils.h} | |
1083 | ||
1084 | @beginWxPerlOnly | |
1085 | In wxPerl this function is called @c Wx::ExecuteArgs. | |
1086 | @endWxPerlOnly | |
1087 | */ | |
1088 | long wxExecute(char** argv, int flags = wxEXEC_ASYNC, | |
1089 | wxProcess* callback = NULL, | |
1090 | const wxExecuteEnv *env = NULL); | |
1091 | long wxExecute(wchar_t** argv, int flags = wxEXEC_ASYNC, | |
1092 | wxProcess* callback = NULL, | |
1093 | const wxExecuteEnv *env = NULL); | |
1094 | //@} | |
1095 | ||
1096 | /** @addtogroup group_funcmacro_procctrl */ | |
1097 | //@{ | |
1098 | ||
1099 | /** | |
1100 | This is an overloaded version of wxExecute(const wxString&,int,wxProcess*), | |
1101 | please see its documentation for general information. | |
1102 | ||
1103 | This version can be used to execute a process (always synchronously, the | |
1104 | contents of @a flags is or'd with @c wxEXEC_SYNC) and capture its output in | |
1105 | the array @e output. | |
1106 | ||
1107 | @param command | |
1108 | The command to execute and any parameters to pass to it as a single | |
1109 | string. | |
1110 | @param output | |
1111 | The string array where the stdout of the executed process is saved. | |
1112 | @param flags | |
1113 | Combination of flags to which ::wxEXEC_SYNC is always implicitly added. | |
1114 | @param env | |
1115 | An optional pointer to additional parameters for the child process, | |
1116 | such as its initial working directory and environment variables. This | |
1117 | parameter is available in wxWidgets 2.9.2 and later only. | |
1118 | ||
1119 | @see wxShell(), wxProcess, @ref page_samples_exec, | |
1120 | wxLaunchDefaultApplication(), wxLaunchDefaultBrowser() | |
1121 | ||
1122 | @header{wx/utils.h} | |
1123 | ||
1124 | @beginWxPerlOnly | |
1125 | This function is called @c Wx::ExecuteStdout: it only takes the | |
1126 | @a command argument, and returns a 2-element list (@c status, @c output), | |
1127 | where @c output in an array reference. | |
1128 | @endWxPerlOnly | |
1129 | */ | |
1130 | long wxExecute(const wxString& command, wxArrayString& output, int flags = 0, | |
1131 | const wxExecuteEnv *env = NULL); | |
1132 | ||
1133 | /** | |
1134 | This is an overloaded version of wxExecute(const wxString&,int,wxProcess*), | |
1135 | please see its documentation for general information. | |
1136 | ||
1137 | This version adds the possibility to additionally capture the messages from | |
1138 | standard error output in the @a errors array. As with the above overload | |
1139 | capturing standard output only, execution is always synchronous. | |
1140 | ||
1141 | @param command | |
1142 | The command to execute and any parameters to pass to it as a single | |
1143 | string. | |
1144 | @param output | |
1145 | The string array where the stdout of the executed process is saved. | |
1146 | @param errors | |
1147 | The string array where the stderr of the executed process is saved. | |
1148 | @param flags | |
1149 | Combination of flags to which ::wxEXEC_SYNC is always implicitly added. | |
1150 | @param env | |
1151 | An optional pointer to additional parameters for the child process, | |
1152 | such as its initial working directory and environment variables. This | |
1153 | parameter is available in wxWidgets 2.9.2 and later only. | |
1154 | ||
1155 | @see wxShell(), wxProcess, @ref page_samples_exec, | |
1156 | wxLaunchDefaultApplication(), wxLaunchDefaultBrowser() | |
1157 | ||
1158 | @header{wx/utils.h} | |
1159 | ||
1160 | @beginWxPerlOnly | |
1161 | This function is called @c Wx::ExecuteStdoutStderr: it only takes the | |
1162 | @a command argument, and returns a 3-element list (@c status, @c output, | |
1163 | @c errors), where @c output and @c errors are array references. | |
1164 | @endWxPerlOnly | |
1165 | */ | |
1166 | long wxExecute(const wxString& command, wxArrayString& output, | |
1167 | wxArrayString& errors, int flags = 0, | |
1168 | const wxExecuteEnv *env = NULL); | |
1169 | ||
1170 | /** | |
1171 | Returns the number uniquely identifying the current process in the system. | |
1172 | If an error occurs, 0 is returned. | |
1173 | ||
1174 | @header{wx/utils.h} | |
1175 | */ | |
1176 | unsigned long wxGetProcessId(); | |
1177 | ||
1178 | /** | |
1179 | Equivalent to the Unix kill function: send the given signal @a sig to the | |
1180 | process with PID @a pid. | |
1181 | ||
1182 | The valid signal values are: | |
1183 | ||
1184 | @code | |
1185 | enum wxSignal | |
1186 | { | |
1187 | wxSIGNONE = 0, // verify if the process exists under Unix | |
1188 | wxSIGHUP, | |
1189 | wxSIGINT, | |
1190 | wxSIGQUIT, | |
1191 | wxSIGILL, | |
1192 | wxSIGTRAP, | |
1193 | wxSIGABRT, | |
1194 | wxSIGEMT, | |
1195 | wxSIGFPE, | |
1196 | wxSIGKILL, // forcefully kill, dangerous! | |
1197 | wxSIGBUS, | |
1198 | wxSIGSEGV, | |
1199 | wxSIGSYS, | |
1200 | wxSIGPIPE, | |
1201 | wxSIGALRM, | |
1202 | wxSIGTERM // terminate the process gently | |
1203 | }; | |
1204 | @endcode | |
1205 | ||
1206 | @c wxSIGNONE, @c wxSIGKILL and @c wxSIGTERM have the same meaning under | |
1207 | both Unix and Windows but all the other signals are equivalent to | |
1208 | @c wxSIGTERM under Windows. | |
1209 | ||
1210 | Returns 0 on success, -1 on failure. If the @a rc parameter is not @NULL, | |
1211 | it will be filled with a value from the @c wxKillError enum: | |
1212 | ||
1213 | @code | |
1214 | enum wxKillError | |
1215 | { | |
1216 | wxKILL_OK, // no error | |
1217 | wxKILL_BAD_SIGNAL, // no such signal | |
1218 | wxKILL_ACCESS_DENIED, // permission denied | |
1219 | wxKILL_NO_PROCESS, // no such process | |
1220 | wxKILL_ERROR // another, unspecified error | |
1221 | }; | |
1222 | @endcode | |
1223 | ||
1224 | The @a flags parameter can be wxKILL_NOCHILDREN (the default), or | |
1225 | wxKILL_CHILDREN, in which case the child processes of this process will be | |
1226 | killed too. Note that under Unix, for wxKILL_CHILDREN to work you should | |
1227 | have created the process by passing wxEXEC_MAKE_GROUP_LEADER to | |
1228 | wxExecute(). | |
1229 | ||
1230 | @see wxProcess::Kill(), wxProcess::Exists(), @ref page_samples_exec | |
1231 | ||
1232 | @header{wx/utils.h} | |
1233 | */ | |
1234 | int wxKill(long pid, wxSignal sig = wxSIGTERM, | |
1235 | wxKillError* rc = NULL, int flags = wxKILL_NOCHILDREN); | |
1236 | ||
1237 | /** | |
1238 | Executes a command in an interactive shell window. If no command is | |
1239 | specified, then just the shell is spawned. | |
1240 | ||
1241 | @see wxExecute(), @ref page_samples_exec | |
1242 | ||
1243 | @header{wx/utils.h} | |
1244 | */ | |
1245 | bool wxShell(const wxString& command = wxEmptyString); | |
1246 | ||
1247 | /** | |
1248 | This function shuts down or reboots the computer depending on the value of | |
1249 | the @a flags. | |
1250 | ||
1251 | @note Note that performing the shutdown requires the corresponding access | |
1252 | rights (superuser under Unix, SE_SHUTDOWN privilege under Windows NT) | |
1253 | and that this function is only implemented under Unix and MSW. | |
1254 | ||
1255 | @param flags | |
1256 | One of @c wxSHUTDOWN_POWEROFF, @c wxSHUTDOWN_REBOOT or | |
1257 | @c wxSHUTDOWN_LOGOFF (currently implemented only for MSW) possibly | |
1258 | combined with @c wxSHUTDOWN_FORCE which forces shutdown under MSW by | |
1259 | forcefully terminating all the applications. As doing this can result | |
1260 | in a data loss, this flag shouldn't be used unless really necessary. | |
1261 | ||
1262 | @return @true on success, @false if an error occurred. | |
1263 | ||
1264 | @header{wx/utils.h} | |
1265 | */ | |
1266 | bool wxShutdown(int flags = wxSHUTDOWN_POWEROFF); | |
1267 | ||
1268 | //@} | |
1269 | ||
1270 | ||
1271 | ||
1272 | /** @addtogroup group_funcmacro_time */ | |
1273 | //@{ | |
1274 | ||
1275 | /** | |
1276 | Sleeps for the specified number of microseconds. The microsecond resolution | |
1277 | may not, in fact, be available on all platforms (currently only Unix | |
1278 | platforms with nanosleep(2) may provide it) in which case this is the same | |
1279 | as calling wxMilliSleep() with the argument of @e microseconds/1000. | |
1280 | ||
1281 | @header{wx/utils.h} | |
1282 | */ | |
1283 | void wxMicroSleep(unsigned long microseconds); | |
1284 | ||
1285 | /** | |
1286 | Sleeps for the specified number of milliseconds. Notice that usage of this | |
1287 | function is encouraged instead of calling usleep(3) directly because the | |
1288 | standard @e usleep() function is not MT safe. | |
1289 | ||
1290 | @header{wx/utils.h} | |
1291 | */ | |
1292 | void wxMilliSleep(unsigned long milliseconds); | |
1293 | ||
1294 | /** | |
1295 | Returns a string representing the current date and time. | |
1296 | ||
1297 | @header{wx/utils.h} | |
1298 | */ | |
1299 | wxString wxNow(); | |
1300 | ||
1301 | /** | |
1302 | Sleeps for the specified number of seconds. | |
1303 | ||
1304 | @header{wx/utils.h} | |
1305 | */ | |
1306 | void wxSleep(int secs); | |
1307 | ||
1308 | /** | |
1309 | @deprecated This function is deprecated because its name is misleading: | |
1310 | notice that the argument is in milliseconds, not microseconds. | |
1311 | Please use either wxMilliSleep() or wxMicroSleep() depending on | |
1312 | the resolution you need. | |
1313 | ||
1314 | Sleeps for the specified number of milliseconds. | |
1315 | ||
1316 | @header{wx/utils.h} | |
1317 | */ | |
1318 | void wxUsleep(unsigned long milliseconds); | |
1319 | ||
1320 | //@} | |
1321 |