mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-04-01 11:53:03 +03:00
[project @ 2003-01-12 17:48:44 by bursa]
Implement title element. svn path=/import/netsurf/; revision=94
This commit is contained in:
parent
ab483a9a25
commit
30c5f817ba
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* $Id: browser.c,v 1.21 2003/01/11 17:33:31 monkeyson Exp $
|
||||
* $Id: browser.c,v 1.22 2003/01/12 17:48:44 bursa Exp $
|
||||
*/
|
||||
|
||||
#include "netsurf/riscos/font.h"
|
||||
@ -114,21 +114,44 @@ void set_content_html(struct content* c)
|
||||
}
|
||||
|
||||
|
||||
char* content_html_reformat(struct content* c, int width)
|
||||
void content_html_title(struct content *c)
|
||||
{
|
||||
xmlNode *node = c->data.html.markup;
|
||||
|
||||
c->title = 0;
|
||||
|
||||
while (node != 0) {
|
||||
if (node->type == XML_ELEMENT_NODE) {
|
||||
if (stricmp(node->name, "html") == 0) {
|
||||
node = node->children;
|
||||
continue;
|
||||
}
|
||||
if (stricmp(node->name, "head") == 0) {
|
||||
node = node->children;
|
||||
continue;
|
||||
}
|
||||
if (stricmp(node->name, "title") == 0) {
|
||||
c->title = xmlNodeGetContent(node);
|
||||
return;
|
||||
}
|
||||
}
|
||||
node = node->next;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void content_html_reformat(struct content* c, int width)
|
||||
{
|
||||
char* file;
|
||||
char* title = NULL;
|
||||
struct css_selector* selector = xcalloc(1, sizeof(struct css_selector));
|
||||
|
||||
LOG(("Starting stuff"));
|
||||
|
||||
/* need to find title of page */
|
||||
|
||||
if (c->data.html.layout != NULL)
|
||||
{
|
||||
/* TODO: skip if width is unchanged */
|
||||
layout_document(c->data.html.layout->children, (unsigned long)width);
|
||||
return title;
|
||||
return;
|
||||
}
|
||||
|
||||
LOG(("Setting document to myDoc"));
|
||||
@ -140,7 +163,7 @@ char* content_html_reformat(struct content* c, int width)
|
||||
if (c->data.html.document == NULL)
|
||||
{
|
||||
LOG(("There is no document!"));
|
||||
return title;
|
||||
return;
|
||||
}
|
||||
for (c->data.html.markup = c->data.html.document->children;
|
||||
c->data.html.markup != 0 &&
|
||||
@ -151,17 +174,19 @@ char* content_html_reformat(struct content* c, int width)
|
||||
if (c->data.html.markup == 0)
|
||||
{
|
||||
LOG(("No markup"));
|
||||
return title;
|
||||
return;
|
||||
}
|
||||
if (strcmp((const char *) c->data.html.markup->name, "html"))
|
||||
{
|
||||
LOG(("Not html"));
|
||||
return title;
|
||||
return;
|
||||
}
|
||||
|
||||
// xfree(c->data.html.stylesheet);
|
||||
// xfree(c->data.html.style);
|
||||
|
||||
content_html_title(c);
|
||||
|
||||
LOG(("Loading CSS"));
|
||||
file = load("<NetSurf$Dir>.Resources.CSS"); /*!!! not portable! !!!*/
|
||||
c->data.html.stylesheet = css_new_stylesheet();
|
||||
@ -188,7 +213,7 @@ char* content_html_reformat(struct content* c, int width)
|
||||
|
||||
/* can tidy up memory here? */
|
||||
|
||||
return title;
|
||||
return;
|
||||
}
|
||||
|
||||
void browser_window_reformat(struct browser_window* bw)
|
||||
@ -208,7 +233,11 @@ void browser_window_reformat(struct browser_window* bw)
|
||||
LOG(("HTML content."));
|
||||
browser_window_set_status(bw, "Formatting page...");
|
||||
time0 = clock();
|
||||
gui_window_set_title(bw->window, content_html_reformat(bw->current_content, gui_window_get_width(bw->window)));
|
||||
content_html_reformat(bw->current_content, gui_window_get_width(bw->window));
|
||||
if (bw->current_content == 0)
|
||||
gui_window_set_title(bw->window, bw->url);
|
||||
else
|
||||
gui_window_set_title(bw->window, bw->current_content->title);
|
||||
time1 = clock();
|
||||
LOG(("Content reformatted"));
|
||||
if (bw->current_content->data.html.layout != NULL)
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* $Id: browser.h,v 1.5 2002/12/30 22:56:30 monkeyson Exp $
|
||||
* $Id: browser.h,v 1.6 2003/01/12 17:48:44 bursa Exp $
|
||||
*/
|
||||
|
||||
#ifndef _NETSURF_DESKTOP_BROWSER_H_
|
||||
@ -65,6 +65,7 @@ struct content
|
||||
} data;
|
||||
struct fetch* main_fetch;
|
||||
unsigned int ref_count;
|
||||
char *title;
|
||||
};
|
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* $Id: gui.c,v 1.15 2003/01/11 17:33:31 monkeyson Exp $
|
||||
* $Id: gui.c,v 1.16 2003/01/12 17:48:44 bursa Exp $
|
||||
*/
|
||||
|
||||
#include "netsurf/riscos/font.h"
|
||||
@ -19,7 +19,7 @@
|
||||
int gadget_subtract_x;
|
||||
int gadget_subtract_y;
|
||||
#define browser_menu_flags (wimp_ICON_TEXT | wimp_ICON_FILLED | (wimp_COLOUR_BLACK << wimp_ICON_FG_COLOUR_SHIFT) | (wimp_COLOUR_WHITE << wimp_ICON_BG_COLOUR_SHIFT))
|
||||
char* HOME_URL = "file:///<NetSurf$Dir>/Resources/intro.html\0";
|
||||
char* HOME_URL = "file:///%3CNetSurf$Dir%3E/Resources/intro.html\0";
|
||||
|
||||
wimp_MENU(2) netsurf_iconbar_menu =
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user