forked from KolibriOS/kolibrios
8d15602e0a
webview: remove restriction of links count eolite: remove restriction of max elements in list + 6 times speed up the open of big folders! git-svn-id: svn://kolibrios.org@7972 a494cfbc-eb01-0410-851d-a64ba20cac60
44 lines
885 B
C
44 lines
885 B
C
|
|
struct _anchors {
|
|
char current[256];
|
|
collection anchor_name;
|
|
collection anchor_position;
|
|
void add();
|
|
int get_pos_by_name();
|
|
void clear();
|
|
void take_anchor_from();
|
|
} anchors=0;
|
|
|
|
void _anchors::add(dword _name, _pos)
|
|
{
|
|
anchor_name.add(_name);
|
|
anchor_position.add(itoa(_pos));
|
|
}
|
|
|
|
int _anchors::get_pos_by_name(dword _get_name)
|
|
{
|
|
dword pos_name = anchor_name.get_pos_by_name(_get_name);
|
|
if (ESBYTE[_get_name]==NULL) return 0;
|
|
if (pos_name==-1) {
|
|
return -1;
|
|
} else {
|
|
return atoi(anchor_position.get(pos_name));
|
|
}
|
|
}
|
|
|
|
void _anchors::clear()
|
|
{
|
|
anchor_name.drop();
|
|
anchor_position.drop();
|
|
}
|
|
|
|
void _anchors::take_anchor_from(dword _URL)
|
|
{
|
|
int anchor_pos;
|
|
if (!current) && (_URL) && (anchor_pos = strrchr(_URL, '#')) {
|
|
strncpy(#current, _URL+anchor_pos-1, sizeof(_anchors.current)-1);
|
|
ESBYTE[_URL+anchor_pos-1] = '\0';
|
|
}
|
|
}
|
|
|