Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5106 in orxonox.OLD for trunk/src/util/shell.h


Ignore:
Timestamp:
Aug 23, 2005, 8:09:58 PM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: top-down shell, as proposed by patrick. This makes sense, becuase the general people knows only shells comming top down

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/util/shell.h

    r5105 r5106  
    3636
    3737
    38     void setBufferSize(unsigned int bufferSize) { this->bufferSize = bufferSize; };
     38    void activate();
     39    void deactivate();
    3940
    40     void setBufferDisplaySize(unsigned int bufferDisplaySize);
     41    void setTextSize(unsigned int textSize, unsigned int lineSpacing = 1);
     42    void rebuildText();
    4143
    4244    // BUFFER //
     45    void setBufferSize(unsigned int bufferSize) { this->bufferSize = bufferSize; };
     46    void setBufferDisplaySize(unsigned int bufferDisplaySize);
    4347    void flushBuffers();
    4448    static bool addBufferLineStatic(const char* line, ...);
     
    96100    unsigned int           textSize;               //!< The size of the text.
    97101    unsigned int           lineSpacing;            //!< The Spacing between lines.
     102    unsigned int           shellHeight;            //!< The hight of the Shell in Pixels
    98103
    99104    char                   bufferArray[10000];     //!< a BUFFER for fast writing
Note: See TracChangeset for help on using the changeset viewer.