forked from KolibriOS/kolibrios
trying to fix build
git-svn-id: svn://kolibrios.org@7853 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
f3fcde3a95
commit
77815b3f9e
@ -39,9 +39,7 @@ bool _tag::parse_params()
|
|||||||
bool result = false;
|
bool result = false;
|
||||||
if (!name) return false;
|
if (!name) return false;
|
||||||
if (debug_mode) {
|
if (debug_mode) {
|
||||||
debugln(" ");
|
debug("\n\ntag: "); debugln(#name);
|
||||||
debugln(" ");
|
|
||||||
debug("tag: "); debugln(#name);
|
|
||||||
debug("params: "); debugln(#params);
|
debug("params: "); debugln(#params);
|
||||||
debugln(" ");
|
debugln(" ");
|
||||||
}
|
}
|
||||||
|
@ -3,10 +3,14 @@
|
|||||||
<meta charset="uft">
|
<meta charset="uft">
|
||||||
<title>WebView Help</title>
|
<title>WebView Help</title>
|
||||||
</head>
|
</head>
|
||||||
<body><pre><h1>WebView Help</h1>
|
<body>
|
||||||
|
|
||||||
|
<h1>WebView Text-Based Browser</h1>
|
||||||
|
|
||||||
|
It is free and open-source. If you have any suggestions or want to help improving it please visit its topic at <a href="http://board.kolibrios.org/viewtopic.php?f=40&t=1075">board.kolibrios.org</a><pre>
|
||||||
|
|
||||||
<b>Shortcut keys</b>
|
<b>Shortcut keys</b>
|
||||||
|
|
||||||
<font bg="#C7CEE4">[CTRL + N or CTRL + T]</font> New window
|
<font bg="#C7CEE4">[CTRL + N or CTRL + T]</font> New window
|
||||||
<font bg="#C7CEE4">[CTRL + R or F5]</font> Refresh the current page
|
<font bg="#C7CEE4">[CTRL + R or F5]</font> Refresh the current page
|
||||||
<font bg="#C7CEE4">[CTRL + O]</font> Start OpenDialog to open local file
|
<font bg="#C7CEE4">[CTRL + O]</font> Start OpenDialog to open local file
|
||||||
|
@ -62,7 +62,7 @@ int kfont_char_width[255];
|
|||||||
void ApplySmooth();
|
void ApplySmooth();
|
||||||
int WriteIntoWindow();
|
int WriteIntoWindow();
|
||||||
int WriteIntoWindowCenter();
|
int WriteIntoWindowCenter();
|
||||||
void WriteIntoBuffer();
|
dword WriteIntoBuffer();
|
||||||
void ShowBuffer();
|
void ShowBuffer();
|
||||||
void ShowBufferPart();
|
void ShowBufferPart();
|
||||||
} kfont;
|
} kfont;
|
||||||
@ -241,7 +241,7 @@ inline fastcall dword b32(EAX) { return DSDWORD[EAX]; }
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
:void KFONT::WriteIntoBuffer(int x,y,w,h; dword _background, _color; byte font_size; dword text1)
|
:dword KFONT::WriteIntoBuffer(int x,y,w,h; dword _background, _color; byte font_size; dword text1)
|
||||||
{
|
{
|
||||||
dword new_raw_size;
|
dword new_raw_size;
|
||||||
if(!text1)return;
|
if(!text1)return;
|
||||||
@ -273,7 +273,7 @@ inline fastcall dword b32(EAX) { return DSDWORD[EAX]; }
|
|||||||
if(bold)x+=math.ceil(size.pt/17);
|
if(bold)x+=math.ceil(size.pt/17);
|
||||||
text1++;
|
text1++;
|
||||||
}
|
}
|
||||||
return;
|
return x;
|
||||||
}
|
}
|
||||||
|
|
||||||
:int KFONT::WriteIntoWindow(int x,y; dword _background, _color; byte font_size; dword text1)
|
:int KFONT::WriteIntoWindow(int x,y; dword _background, _color; byte font_size; dword text1)
|
||||||
|
Loading…
Reference in New Issue
Block a user