Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Initial Version and Version 1 of code/doc/Clipboard


Ignore:
Timestamp:
Sep 22, 2008, 4:30:46 PM (16 years ago)
Author:
landauf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/doc/Clipboard

    v1 v1  
     1= Clipboard =
     2[[TracNav(TracNav/TOC_Development)]]
     3
     4The clipboard differs in every operating system, therefore we need different implementations for each OS.[[br]]
     5Clipboard.h provides two functions:
     6 * '''toClipboard('''text''')''': Copies text to the clipboard
     7 * '''fromClipboard()''': Returns text from the clipboard
     8where text is an std::string.
     9
     10If 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
     12Please try to add an implementation for your OS if not already existing.