| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #pragma once
- namespace BansheeEngine
- {
- /** @addtogroup General
- * @{
- */
- struct MACAddress;
- /** Possible type of platform file dialogs. */
- enum class FileDialogType
- {
- OpenFile = 0x0,
- OpenFolder = 0x1,
- Save = 0x2,
- Multiselect = 0x10000,
- TypeMask = 0xFFFF
- };
- /** Provides access to various operating system specific utility functions. */
- class BS_UTILITY_EXPORT PlatformUtility
- {
- public:
- /**
- * Terminates the current process.
- *
- * @param[in] force True if the process should be forcefully terminated with no cleanup.
- */
- static void terminate(bool force = false);
- /**
- * Adds a string to the clipboard.
- *
- * @note Thread safe.
- */
- static void copyToClipboard(const WString& string);
- /**
- * Reads a string from the clipboard and returns it. If there is no string in the clipboard it returns an empty
- * string.
- *
- * @note
- * Both wide and normal strings will be read, but normal strings will be converted to a wide string before returning.
- * @note
- * Thread safe.
- */
- static WString copyFromClipboard();
- /**
- * Converts a keyboard key-code to a Unicode character.
- *
- * @note
- * Normally this will output a single character, but it can happen it outputs multiple in case a accent/diacritic
- * character could not be combined with the virtual key into a single character.
- */
- static WString keyCodeToUnicode(UINT32 keyCode);
- /**
- * Populates the provided buffer with a MAC address of the first available adapter, if one exists. If no adapters
- * exist, returns false.
- */
- static bool getMACAddress(MACAddress& address);
- /** Creates a new universally unique identifier and returns it as a string. */
- static String generateUUID();
- /**
- * Opens the provided file or folder using the default application for that file type, as specified by the operating
- * system.
- *
- * @param[in] path Absolute path to the file or folder to open.
- */
- static void open(const Path& path);
- };
- /** Represents a MAC (ethernet) address. */
- struct MACAddress
- {
- UINT8 value[6];
- };
- /** @} */
- }
|