| | 1 | = Clipboard = |
| | 2 | [[TracNav(TracNav/TOC_Development)]] |
| | 3 | |
| | 4 | The clipboard differs in every operating system, therefore we need different implementations for each OS.[[br]] |
| | 5 | Clipboard.h provides two functions: |
| | 6 | * '''toClipboard('''text''')''': Copies text to the clipboard |
| | 7 | * '''fromClipboard()''': Returns text from the clipboard |
| | 8 | where text is an std::string. |
| | 9 | |
| | 10 | If there is an implementation for an OS, the clipboard works between Orxonox and every other program. If there is no implementation for a specific OS, the clipboard works only within Orxonox. |
| | 11 | |
| | 12 | Please try to add an implementation for your OS if not already existing. |