Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6152 → Rev 6151

/programs/cmm/aelia/favicon.h
File deleted
\ No newline at end of file
/programs/cmm/aelia/aelia.c
59,7 → 59,6
CustomCursor CursorPointer;
dword CursorFile = FROM "pointer.cur";
 
#include "favicon.h"
#include "ini.h"
#include "gui.h"
#include "label.h"
244,7 → 243,6
void EventOpenAddress(dword _new_address)
{
char temp[UML];
char favicon_address[UML];
if (!ESBYTE[_new_address]) return;
debugln("====================================");
debug("address: ");
263,7 → 261,6
*/
 
io.buffer_data = 0;
favicon.get(NULL);
 
// - build in page
if (!strncmp(#address,"aelia:",6)) {
300,8 → 297,6
strcpy(#address,downloader.url);
DrawAddressBox();
io.buffer_data = downloader.bufpointer;
get_absolute_url(#favicon_address, #address, "/favicon.ico");
favicon.get(#favicon_address);
}
}
 
311,7 → 306,6
}
 
history.add(#address);
favicon.draw(address_box.left-18, address_box.top-1);
 
/*
Great! So we have the page in our buffer.
444,14 → 438,12
 
void DrawAddressBox()
{
address_box.left = 97+19;
address_box.left = 97;
address_box.top = 11;
address_box.width = Form.cwidth - address_box.left - 138;
DrawRectangle(address_box.left-4-19, address_box.top-5, address_box.width+6+19, 23, 0x8C8C8C);
DrawWideRectangle(address_box.left-3-19, address_box.top-3, address_box.width+5+19, 21, 4, address_box.color);
DrawRectangle(address_box.left-4, address_box.top-5, address_box.width+6, 23, 0x8C8C8C);
DrawWideRectangle(address_box.left-3, address_box.top-3, address_box.width+5, 21, 4, address_box.color);
address_box.size = address_box.pos = address_box.shift = address_box.shift_old = strlen(#address);
address_box.offset = 0;
edit_box_draw stdcall(#address_box);
favicon.draw(address_box.left-18, address_box.top-1);
DrawBar(address_box.left-2, address_box.top+1, 2, 13, 0xFFFfff);
}
/programs/cmm/aelia/buidin_pages/about.htm
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/programs/cmm/aelia/prepare_page.h
187,8 → 187,8
label_draw_bar(stroka_x, stroka_y+label.size.pt+1, get_label_len(text.start), style.color);
}
WriteTextIntoBuf(stroka_x, stroka_y, style.color, text.start);
stroka_x+=char_width[' '];
}
stroka_x+=char_width[' '];
ESBYTE[line_break] >< zeroch; //restore line
text.start = line_break;
stroka_x = HTML_PADDING_X;
200,8 → 200,8
label_draw_bar(stroka_x, stroka_y+label.size.pt+1, get_label_len(text.start), style.color);
}
WriteTextIntoBuf(stroka_x, stroka_y, style.color, text.start);
stroka_x+=char_width[' '];
}
stroka_x+=char_width[' '];
stroka_x += get_label_len(text.start);
}
if (ch=='>') {
/programs/cmm/lib/debug.h
40,8 → 40,7
inline fastcall void debugln( EDX)
{
debug( EDX);
debugch(10);
debugch(13);
debugch('\n');
}
 
inline void debugi(dword d_int)
/programs/cmm/pixie/pixie.c
316,7 → 316,7
char item_path[4096];
char notify_message[512];
StopPlayingMp3();
if (!list.count) { NotifyAndBackFocus("'Pixie Player\nPress O key to open MP3 file' -St"); return; }
if (!list.count) { NotifyAndBackFocus("'Pixie Player\nPress O key to open file' -St"); return; }
if (current_playing_file_n > list.count) { current_playing_file_n = list.count; return; }
if (current_playing_file_n < 0) { current_playing_file_n = 0; return; }
playback_mode = PLAYBACK_MODE_PLAYING;