123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- #ifndef Schrift_H
- #define Schrift_H
- #include "Critical.h"
- #include "Punkt.h"
- #include <functional>
- namespace Framework
- {
- class Bild;
- class Text;
- class Buchstabe;
- class Alphabet;
- class Schrift;
-
-
- class Buchstabe
- {
- private:
- Punkt size;
- unsigned char *alpha;
- int schriftSize;
- int ref;
- public:
-
- __declspec( dllexport ) Buchstabe();
-
- __declspec( dllexport ) ~Buchstabe();
-
-
- __declspec( dllexport ) void NeuBuchstabe( Punkt &size );
-
-
-
- __declspec( dllexport ) void setPixel( Punkt &pos, unsigned char alpha );
-
-
-
-
- __declspec( dllexport ) void setPixel( int x, int y, unsigned char alpha );
-
-
-
- __declspec( dllexport ) void setPixel( int i, unsigned char alpha );
-
-
- __declspec( dllexport ) void setSchriftSize( int sg );
-
- __declspec( dllexport ) int getSchriftSize() const;
-
- __declspec( dllexport ) unsigned char *getBuff() const;
-
- __declspec( dllexport ) const Punkt &getSize() const;
-
- __declspec( dllexport ) int getBreite() const;
-
- __declspec( dllexport ) int getHeight() const;
-
-
- __declspec( dllexport ) Buchstabe *getThis();
-
-
- __declspec( dllexport ) Buchstabe *release();
- };
-
-
- class Alphabet
- {
- private:
- Buchstabe **zeichen;
- int schriftSize;
- int ref;
- public:
-
- __declspec( dllexport ) Alphabet();
-
- __declspec( dllexport ) ~Alphabet();
-
- __declspec( dllexport ) void NeuAlphabet();
-
-
-
-
- __declspec( dllexport ) void setBuchstabe( unsigned char i, Buchstabe *buchstabe );
-
-
- __declspec( dllexport ) void setSchriftSize( int gr );
-
-
-
- __declspec( dllexport ) Buchstabe *getBuchstabe( unsigned char i ) const;
-
-
-
- __declspec( dllexport ) Buchstabe *zBuchstabe( unsigned char i ) const;
-
-
-
- __declspec( dllexport ) bool hatBuchstabe( unsigned char b ) const;
-
- __declspec( dllexport ) int getSchriftSize() const;
-
-
- __declspec( dllexport ) Alphabet *getThis();
-
-
- __declspec( dllexport ) Alphabet *release();
- };
-
-
- class AlphabetArray
- {
- private:
- AlphabetArray *next;
- Alphabet *This;
- public:
-
- __declspec( dllexport ) AlphabetArray();
-
- __declspec( dllexport ) ~AlphabetArray();
-
-
-
-
- __declspec( dllexport ) bool addAlphabet( Alphabet *alphabet );
-
-
-
- __declspec( dllexport ) bool removeAlphabet( int sg );
-
- __declspec( dllexport ) void setNext0();
-
-
-
- __declspec( dllexport ) Alphabet *getAlphabet( unsigned char sg ) const;
-
-
-
- __declspec( dllexport ) Alphabet *zAlphabet( unsigned char sg ) const;
-
-
-
-
- __declspec( dllexport ) Alphabet *getAlphabetI( int index, int count ) const;
-
-
-
-
- __declspec( dllexport ) Alphabet *zAlphabetI( int index, int count ) const;
-
- __declspec( dllexport ) AlphabetArray *getNext() const;
- };
-
- class Schrift
- {
- private:
- unsigned char alphabetAnzahl;
- AlphabetArray *alphabet;
- int ref;
- public:
-
- __declspec( dllexport ) Schrift();
-
- __declspec( dllexport ) ~Schrift();
-
-
-
- __declspec( dllexport ) bool addAlphabet( Alphabet *alphabet );
-
-
- __declspec( dllexport ) void removeAlphabet( int sg );
-
-
-
- __declspec( dllexport ) Alphabet *getAlphabet( int sg ) const;
-
-
-
- __declspec( dllexport ) Alphabet *zAlphabet( int sg ) const;
-
-
-
- __declspec( dllexport ) Alphabet *getAlphabetI( int index ) const;
-
-
-
- __declspec( dllexport ) Alphabet *zAlphabetI( int index ) const;
-
- __declspec( dllexport ) unsigned char getAlphabetAnzahl() const;
-
-
- __declspec( dllexport ) Schrift *getThis();
-
-
- __declspec( dllexport ) Schrift *release();
- };
- class TextRenderer
- {
- protected:
- Schrift *s;
- int schriftSize;
- int zeilenAbstand;
- int zeichenAbstand;
- int ref;
- public:
- __declspec( dllexport ) TextRenderer();
- __declspec( dllexport ) TextRenderer( Schrift *schrift );
- __declspec( dllexport ) virtual ~TextRenderer();
- __declspec( dllexport ) void setSchriftZ( Schrift *schrift );
- __declspec( dllexport ) Schrift *getSchrift();
- __declspec( dllexport ) Schrift *zSchrift();
-
-
- __declspec( dllexport ) void setSchriftSize( int sg );
-
-
- __declspec( dllexport ) void setZeilenAbstand( int za );
-
-
- __declspec( dllexport ) void setZeichenAbstand( int za );
-
-
-
- __declspec( dllexport ) virtual void textFormatieren( Text *zText, int maxBreite );
-
-
-
-
-
-
-
-
-
-
-
- __declspec( dllexport ) virtual void renderText( int x, int y, const char *txt, Bild &zRObj, std::function< int( int, int, int ) > f, int cpos = -1, int cf = 0, int fbeg = -1, int ff = 0 );
-
-
-
-
-
-
-
-
-
-
-
- __declspec( dllexport ) virtual void renderText( int x, int y, const char *txt, Bild &zRObj, int f, int cpos = -1, int cf = 0, int fbeg = -1, int ff = 0 );
-
-
-
-
-
-
-
-
-
- __declspec( dllexport ) virtual void renderChar( int &x, int y, char c, Bild &zRObj, bool selected, int ff, int f );
-
- __declspec( dllexport ) int getSchriftSize() const;
-
- __declspec( dllexport ) int getZeilenabstand() const;
-
-
- __declspec( dllexport ) virtual int getTextBreite( const char *txt ) const;
-
-
- __declspec( dllexport ) virtual int getTextHeight( const char *txt ) const;
-
-
- __declspec( dllexport ) virtual int getCharWidth( const char c ) const;
-
-
- __declspec( dllexport ) virtual int getCharHeight( const char c ) const;
-
- __declspec( dllexport ) int getZeilenAbstand() const;
-
- __declspec( dllexport ) int getZeilenHeight() const;
-
-
-
-
- __declspec( dllexport ) virtual int textPos( const char *txt, int mausX, int mausY ) const;
-
-
- __declspec( dllexport ) TextRenderer *getThis();
-
-
- __declspec( dllexport ) virtual TextRenderer *release();
- };
- class GravurTextRenderer : public TextRenderer
- {
- public:
- __declspec( dllexport ) GravurTextRenderer();
- __declspec( dllexport ) GravurTextRenderer( Schrift *schrift );
- __declspec( dllexport ) virtual ~GravurTextRenderer();
-
-
-
-
-
-
-
-
-
- __declspec( dllexport ) virtual void renderChar( int &x, int y, char c, Bild &zRObj, bool selected, int ff, int f );
-
-
- __declspec( dllexport ) virtual int getCharWidth( const char c ) const;
-
-
- __declspec( dllexport ) virtual int getCharHeight( const char c ) const;
-
-
- __declspec( dllexport ) virtual TextRenderer *release();
- };
- }
- #endif
|