00001 00002 00003 // 00004 // CLIPBOARD.H (c) YoY'01 WEB: www.aestesis.org 00005 // 00008 #ifndef _CLIPBOARD_H_ 00009 #define _CLIPBOARD_H_ 00012 #include <stdio.h> 00013 #include "types.h" 00016 00017 // If you use directly the variables in the class API, it's at your own risks. Prefer the methods... 00018 00021 00022 00023 class Aclipboard 00024 { 00025 public: 00026 00027 ADLL static bool setText(char *s); 00028 ADLL static bool setText(char *s, int first, int last); 00029 ADLL static char * getText(); 00030 00031 ADLL static bool setBitmap(class Abitmap *b); 00032 ADLL static class Abitmap * getBitmap(); 00033 }; 00034 00037 #endif //_CLIPBOARD_H_