00001 /* *********************************************************************************** 00002 Writer: Sebastien Bloc 00003 Copyright: 2003-2004 00004 eMail: sebastien.bloc@free.fr 00005 URL: http://mignonsoft.free.fr 00006 00007 This program is free software; you can redistribute it and/or 00008 modify it under the terms of the GNU General Public License 00009 as published by the Free Software Foundation; either version 2 00010 of the License, or (at your option) any later version. 00011 00012 This program is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 GNU General Public License for more details. 00016 http://www.gnu.org/copyleft/gpl.html 00017 *********************************************************************************** */ 00018 00023 #ifndef INCLUDE_TOOLSTIP_H 00024 #define INCLUDE_TOOLSTIP_H 00025 00026 #include "control.h" 00027 00033 class Tip : public Control 00034 { 00035 public: 00036 // varaible membre 00037 Text3D text; 00038 00039 Tip(); 00040 ~Tip(); 00041 00042 void Create(); 00043 void operator=(char *newCaption); 00044 void SetText(char *newCaption); 00045 void ToString(MyString &str); 00046 }; 00047 00048 #endif