003
06.02.2007, 16:40 Uhr
derphilipder
|
C++: |
#ifndef _DIAGNAMESPACE_ #define _DIAGNAMESPACE_
#include <string>
namespace Diag { struct DiagColor { DiagColor(){} DiagColor(int r, int g, int b) : red(r), green(g), blue(b){} int red, green, blue; //RGB-Werte 0-255 } white(255, 255, 255), black(0, 0, 0), red, green, blue, yellow, lightGray; //Vordefinierte Farben struct DrawLine//Linie { DrawLine(){} DrawLine(int xs, int ys, int xe, int ye, DiagColor c) : xstart(xs), ystart(ys), xend(xe), yend(ye), color(c) {} int xstart, ystart, xend, yend; DiagColor color; };
struct Text{std::string text; int xpos, ypos; DiagColor color;}; //Textfeld
} #endif
|
-- Konfuzius says: "A man who goes to bed with an itchy asshole is a man who wakes up with stinky finger!" Dieser Post wurde am 06.02.2007 um 16:49 Uhr von derphilipder editiert. |