Subversion Repositories Kolibri OS

Rev

Rev 5299 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5299 Rev 5323
Line 218... Line 218...
218
void drawWindow(string content, const char* title, string topline , string bottomline, bool usePagesForLongText = false) {
218
void drawWindow(string content, const char* title, string topline , string bottomline, bool usePagesForLongText = false) {
219
    cls();
219
    cls();
220
    int winWidth, winHeight;
220
    int winWidth, winHeight;
221
    getWinWH(winWidth, winHeight);
221
    getWinWH(winWidth, winHeight);
Line 222... Line 222...
222
 
222
 
223
#ifdef _WIN32
223
#if defined(_WIN32) && !defined(_KOS32)
224
    int deltaX = 0;
224
    int deltaX = 0;
225
#else 
225
#else 
226
    int deltaX = 1;
226
    int deltaX = 1;
Line 227... Line 227...
227
#endif
227
#endif
228
    
228
    
229
    // Total lines
229
    // Total lines
230
#ifdef _WIN32
230
#if defined(_WIN32) && !defined(_KOS32)
231
    int lines = 0;
231
    int lines = 0;
232
#else 
232
#else