Initial functional release
This commit is contained in:
parent
09c62aebfd
commit
8faf826f2f
@ -15,7 +15,128 @@
|
||||
|
||||
|
||||
|
||||
#include <webkit/webkitwebview.h>
|
||||
#include "ghtml.h"
|
||||
|
||||
|
||||
/* public */
|
||||
/* functions */
|
||||
/* ghtml_new */
|
||||
GtkWidget * ghtml_new(Surfer * surfer)
|
||||
{
|
||||
return webkit_web_view_new();
|
||||
}
|
||||
|
||||
|
||||
/* accessors */
|
||||
gboolean ghtml_can_go_back(GtkWidget * ghtml)
|
||||
{
|
||||
return webkit_web_view_can_go_back(WEBKIT_WEB_VIEW(ghtml));
|
||||
}
|
||||
|
||||
|
||||
gboolean ghtml_can_go_forward(GtkWidget * ghtml)
|
||||
{
|
||||
return webkit_web_view_can_go_forward(WEBKIT_WEB_VIEW(ghtml));
|
||||
}
|
||||
|
||||
|
||||
char const * ghtml_get_link_message(GtkWidget * ghtml)
|
||||
{
|
||||
/* FIXME implement */
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
char const * ghtml_get_location(GtkWidget * ghtml)
|
||||
{
|
||||
/* FIXME implement */
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
char const * ghtml_get_title(GtkWidget * ghtml)
|
||||
{
|
||||
/* FIXME implement */
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
int ghtml_set_base(GtkWidget * ghtml, char const * url)
|
||||
{
|
||||
/* FIXME implement */
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
/* useful */
|
||||
gboolean ghtml_go_back(GtkWidget * ghtml)
|
||||
{
|
||||
if(ghtml_can_go_back(ghtml) == FALSE)
|
||||
return FALSE;
|
||||
webkit_web_view_go_back(WEBKIT_WEB_VIEW(ghtml));
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
gboolean ghtml_go_forward(GtkWidget * ghtml)
|
||||
{
|
||||
if(ghtml_can_go_forward(ghtml) == FALSE)
|
||||
return FALSE;
|
||||
webkit_web_view_go_forward(WEBKIT_WEB_VIEW(ghtml));
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
void ghtml_load_url(GtkWidget * ghtml, char const * url)
|
||||
{
|
||||
webkit_web_view_open(WEBKIT_WEB_VIEW(ghtml), url);
|
||||
}
|
||||
|
||||
|
||||
void ghtml_refresh(GtkWidget * ghtml)
|
||||
{
|
||||
webkit_web_view_reload(WEBKIT_WEB_VIEW(ghtml));
|
||||
}
|
||||
|
||||
|
||||
void ghtml_reload(GtkWidget * ghtml)
|
||||
{
|
||||
return ghtml_refresh(ghtml);
|
||||
}
|
||||
|
||||
|
||||
void ghtml_stop(GtkWidget * ghtml)
|
||||
{
|
||||
webkit_web_view_stop_loading(WEBKIT_WEB_VIEW(ghtml));
|
||||
}
|
||||
|
||||
|
||||
void ghtml_select_all(GtkWidget * ghtml)
|
||||
{
|
||||
webkit_web_view_select_all(WEBKIT_WEB_VIEW(ghtml));
|
||||
}
|
||||
|
||||
|
||||
void ghtml_unselect_all(GtkWidget * ghtml)
|
||||
{
|
||||
/* FIXME implement */
|
||||
}
|
||||
|
||||
|
||||
void ghtml_zoom_in(GtkWidget * ghtml)
|
||||
{
|
||||
webkit_web_view_zoom_in(WEBKIT_WEB_VIEW(ghtml));
|
||||
}
|
||||
|
||||
|
||||
void ghtml_zoom_out(GtkWidget * ghtml)
|
||||
{
|
||||
webkit_web_view_zoom_out(WEBKIT_WEB_VIEW(ghtml));
|
||||
}
|
||||
|
||||
|
||||
void ghtml_zoom_reset(GtkWidget * ghtml)
|
||||
{
|
||||
webkit_web_view_set_zoom_level(WEBKIT_WEB_VIEW(ghtml), 1.0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user