summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-09-12 22:48:18 +0200
committerjcid <devnull@localhost>2008-09-12 22:48:18 +0200
commit1289d19d8b8ccebb8a67adaece6ca8b6a92d2ac8 (patch)
treed9a88a546225e809ba4fedb6bb1d5437d02575a6 /src
parentb4a7fddab9a30824c5c2bdfdf24e969938e5ed4e (diff)
- Fixed a crash bug with repush and non-viewable content.
Diffstat (limited to 'src')
-rw-r--r--src/cache.c10
-rw-r--r--src/findbar.cc20
-rw-r--r--src/findbar.hh6
-rw-r--r--src/menu.cc10
-rw-r--r--src/pixmaps.h8
-rw-r--r--src/ui.cc138
-rw-r--r--src/ui.hh17
-rw-r--r--src/uicmd.cc111
-rw-r--r--src/uicmd.hh1
9 files changed, 192 insertions, 129 deletions
diff --git a/src/cache.c b/src/cache.c
index 36764b24..0aaa4b14 100644
--- a/src/cache.c
+++ b/src/cache.c
@@ -1123,10 +1123,12 @@ static void Cache_delayed_process_queue_callback(void *data)
while ((entry = (CacheEntry_t *)dList_nth_data(DelayedQueue, 0))) {
Cache_ref_data(entry);
Cache_process_queue(entry);
- Cache_unref_data(entry);
- /* note that if Cache_process_queue removes the entry,
- * the following dList_remove has no effect. */
- dList_remove(DelayedQueue, entry);
+ if (entry != dList_nth_data(DelayedQueue, 0)) {
+ /* Cache_process_queue() has removed the entry! */
+ } else {
+ Cache_unref_data(entry);
+ dList_remove(DelayedQueue, entry);
+ }
}
DelayedQueueIdleId = 0;
a_Timeout_remove();
diff --git a/src/findbar.cc b/src/findbar.cc
index 0807a4fa..78f55df1 100644
--- a/src/findbar.cc
+++ b/src/findbar.cc
@@ -10,13 +10,13 @@
*/
#include <fltk/events.h>
+#include <fltk/Window.h>
#include "findbar.hh"
#include "msg.h"
#include "pixmaps.h"
#include "uicmd.hh"
#include "bw.h"
-#include "ui.hh"
/*
* Local sub class
@@ -31,12 +31,12 @@ public:
int MyInput::handle(int e)
{
- _MSG("findbar NewInput::handle()\n");
+ _MSG("findbar MyInput::handle()\n");
int ret = 1, k = event_key();
unsigned modifier = event_state() & (SHIFT | CTRL | ALT | META);
if (modifier == 0) {
if (e == KEY && k == EscapeKey) {
- _MSG("findbar NewInput: caught EscapeKey\n");
+ _MSG("findbar CustInput: caught EscapeKey\n");
ret = 0;
}
}
@@ -55,7 +55,7 @@ void Findbar::search_cb(Widget *, void *vfb)
bool case_sens = fb->cb->value();
if (key[0] != '\0')
- a_UIcmd_findtext_search((BrowserWindow *) fb->ui->user_data(),
+ a_UIcmd_findtext_search((BrowserWindow *) fb->window()->user_data(),
key, case_sens);
}
@@ -83,7 +83,7 @@ void Findbar::hide_cb(Widget *, void *vfb)
/*
* Construct text search bar
*/
-Findbar::Findbar(int width, int height, UI *ui) :
+Findbar::Findbar(int width, int height) :
Group(0, 0, width, height)
{
int button_width = 70;
@@ -93,8 +93,7 @@ Findbar::Findbar(int width, int height, UI *ui) :
int x = border;
height -= 2 * border;
- this->ui = ui;
- this->hide();
+ Group::hide();
begin();
hidebutton = new HighlightButton(x, border, 16, height, 0);
@@ -113,7 +112,7 @@ Findbar::Findbar(int width, int height, UI *ui) :
i->callback(search_cb2, this);
// todo: search previous would be nice
- findb = new HighlightButton(x, border, button_width, height, "&Next");
+ findb = new HighlightButton(x, border, button_width, height, "Next");
x += button_width + gap;
findb->tooltip("Find next occurrence of the search phrase");
findb->add_shortcut(ReturnKey);
@@ -140,7 +139,7 @@ int Findbar::handle(int event)
int k = event_key();
unsigned modifier = event_state() & (SHIFT | CTRL | ALT | META);
- if (modifier == 0 && k == EscapeKey) {
+ if (event == KEY && modifier == 0 && k == EscapeKey) {
hide();
ret = 1;
}
@@ -170,6 +169,7 @@ void Findbar::hide()
BrowserWindow *bw;
Group::hide();
- if ((bw = (BrowserWindow *) ui->user_data()))
+ if ((bw = (BrowserWindow *) this->window()->user_data()))
a_UIcmd_findtext_reset(bw);
+ a_UIcmd_focus_main_area(bw);
}
diff --git a/src/findbar.hh b/src/findbar.hh
index db803140..b5591889 100644
--- a/src/findbar.hh
+++ b/src/findbar.hh
@@ -9,9 +9,6 @@
#include <fltk/Group.h>
#include <fltk/CheckButton.h>
-// simple declaration to avoid circular include
-class UI;
-
using namespace fltk;
/*
@@ -22,7 +19,6 @@ class Findbar : public Group {
Button *clrb;
HighlightButton *hidebutton;
xpmImage *hideImg;
- UI *ui;
Input *i;
CheckButton *cb;
@@ -31,7 +27,7 @@ class Findbar : public Group {
static void hide_cb (Widget *, void *);
public:
- Findbar(int width, int height, UI *ui);
+ Findbar(int width, int height);
~Findbar();
int handle(int event);
void show();
diff --git a/src/menu.cc b/src/menu.cc
index 111e6182..c6a4bb90 100644
--- a/src/menu.cc
+++ b/src/menu.cc
@@ -49,10 +49,10 @@ static int *history_list = NULL;
* Used to add the hint for history popup menus, and to remember
* the mouse button pressed over a menu item.
*/
-class NewItem : public Item {
+class CustItem : public Item {
int EventButton;
public:
- NewItem (const char* label) : Item(label) { EventButton = 0; };
+ CustItem (const char* label) : Item(label) { EventButton = 0; };
int button () { return EventButton; };
void draw();
int handle(int e) {
@@ -65,7 +65,7 @@ public:
* This adds a call to a_UIcmd_set_msg() to show the URL in the status bar
* TODO: erase the URL on popup close.
*/
-void NewItem::draw() {
+void CustItem::draw() {
DilloUrl *url;
if (flags() & SELECTED) {
@@ -217,7 +217,7 @@ static void Menu_bugmeter_about_cb(Widget* )
*/
static void Menu_history_cb(Widget *wid, void *data)
{
- int mb = ((NewItem*)wid)->button();
+ int mb = ((CustItem*)wid)->button();
int offset = history_direction * VOIDP2INT(data);
if (mb == 2) {
@@ -438,7 +438,7 @@ void a_Menu_history_popup(BrowserWindow *bw, int direction)
pm->begin();
for (i = 0; history_list[i] != -1; i += 1) {
// TODO: restrict title size
- it = new NewItem(a_History_get_title(history_list[i], 1));
+ it = new CustItem(a_History_get_title(history_list[i], 1));
it->callback(Menu_history_cb, (void*)(i+1));
}
pm->type(PopupMenu::POPUP123);
diff --git a/src/pixmaps.h b/src/pixmaps.h
index 43d2268b..3043ead4 100644
--- a/src/pixmaps.h
+++ b/src/pixmaps.h
@@ -1497,8 +1497,8 @@ static const char *const mini_ok_xpm[] = {
/* XPM */
static const char *const imgload_on_xpm[] = {
"15 15 2 1",
-" c #FFFFFFFFFFFF",
-". c #00000000CF3C",
+" c None",
+". c #00000000CF3C",
" ",
" . . . ... ",
" . .. .. . . ",
@@ -1518,8 +1518,8 @@ static const char *const imgload_on_xpm[] = {
/* XPM */
static const char *const imgload_off_xpm[] = {
"15 15 2 1",
-" c #FFFFFFFFFFFF",
-". c #CF3C00000000",
+" c None",
+". c #CF3C00000000",
" ",
" . . . ... ",
" . .. .. . . ",
diff --git a/src/ui.cc b/src/ui.cc
index 5ea592b8..b355400e 100644
--- a/src/ui.cc
+++ b/src/ui.cc
@@ -39,9 +39,9 @@ using namespace fltk;
* (Used to avoid certain shortcuts in the location bar)
*/
-class NewInput : public Input {
+class CustInput : public Input {
public:
- NewInput (int x, int y, int w, int h, const char* l=0) :
+ CustInput (int x, int y, int w, int h, const char* l=0) :
Input(x,y,w,h,l) {};
int handle(int e);
};
@@ -50,15 +50,15 @@ public:
* Disable: UpKey, DownKey, PageUpKey, PageDownKey and
* CTRL+{o,r,HomeKey,EndKey}
*/
-int NewInput::handle(int e)
+int CustInput::handle(int e)
{
int k = event_key();
- _MSG("NewInput::handle event=%d\n", e);
+ _MSG("CustInput::handle event=%d\n", e);
// Don't focus with arrow keys
if (e == FOCUS &&
- (k == UpKey || k == DownKey || k == LeftKey|| k == RightKey)) {
+ (k == UpKey || k == DownKey || k == LeftKey || k == RightKey)) {
return 0;
}
@@ -80,14 +80,14 @@ int NewInput::handle(int e)
/*
* Used to handle "paste" within the toolbar's Clear button.
*/
-class NewHighlightButton : public HighlightButton {
+class CustHighlightButton : public HighlightButton {
public:
- NewHighlightButton(int x, int y, int w, int h, const char *l=0) :
+ CustHighlightButton(int x, int y, int w, int h, const char *l=0) :
HighlightButton(x,y,w,h,l) {};
int handle(int e);
};
-int NewHighlightButton::handle(int e)
+int CustHighlightButton::handle(int e)
{
if (e == PASTE) {
const char* t = event_text();
@@ -105,9 +105,9 @@ int NewHighlightButton::handle(int e)
/*
* Used to resize the progress boxes automatically.
*/
-class NewProgressBox : public InvisibleBox {
+class CustProgressBox : public InvisibleBox {
public:
- NewProgressBox(int x, int y, int w, int h, const char *l=0) :
+ CustProgressBox(int x, int y, int w, int h, const char *l=0) :
InvisibleBox(x,y,w,h,l) {};
void update_label(const char *lbl) {
static int padding = 0;
@@ -138,14 +138,6 @@ public:
//
/*
- * Callback handler for the close window event.
- */
-static void close_window_cb(Widget *wid, void *data)
-{
- a_UIcmd_close_bw(data);
-}
-
-/*
* Callback for the search button.
*/
static void search_cb(Widget *wid, void *data)
@@ -281,15 +273,15 @@ static void fullscreen_cb(Widget *wid, void *data)
/*
* Callback for the bug meter button.
*/
-static void bugmeter_cb(Widget *w, void *data)
+static void bugmeter_cb(Widget *wid, void *data)
{
int k = event_key();
if (k && k <= 7)
MSG("[BugMeter], mouse button %d was pressed\n", k);
if (k == 1) {
- a_UIcmd_view_page_bugs(((UI*)data)->user_data());
+ a_UIcmd_view_page_bugs(wid->window()->user_data());
} else if (k == 3) {
- a_UIcmd_bugmeter_popup(((UI*)data)->user_data());
+ a_UIcmd_bugmeter_popup(wid->window()->user_data());
}
}
@@ -415,14 +407,14 @@ PackedGroup *UI::make_location()
Button *b;
PackedGroup *pg = new PackedGroup(0,0,0,0);
pg->begin();
- Clear = b = new NewHighlightButton(2,2,16,22,0);
+ Clear = b = new CustHighlightButton(2,2,16,22,0);
ImgClear = new xpmImage(new_s_xpm);
b->image(ImgClear);
b->tooltip("Clear the URL box.\nMiddle-click to paste a URL.");
b->callback(clear_cb, (void *)this);
b->clear_tab_to_focus();
- Input *i = Location = new NewInput(0,0,0,0,0);
+ Input *i = Location = new CustInput(0,0,0,0,0);
i->tooltip("Location");
i->color(CuteColor);
i->when(WHEN_ENTER_KEY);
@@ -451,12 +443,12 @@ PackedGroup *UI::make_progress_bars(int wide, int thin_up)
ProgBox = new PackedGroup(0,0,0,0);
ProgBox->begin();
// Images
- IProg = new NewProgressBox(0,0,0,0);
+ IProg = new CustProgressBox(0,0,0,0);
IProg->box(thin_up ? THIN_UP_BOX : EMBOSSED_BOX);
IProg->labelcolor(GRAY10);
IProg->update_label(wide ? "Images\n0 of 0" : "0 of 0");
// Page
- PProg = new NewProgressBox(0,0,0,0);
+ PProg = new CustProgressBox(0,0,0,0);
PProg->box(thin_up ? THIN_UP_BOX : EMBOSSED_BOX);
PProg->labelcolor(GRAY10);
PProg->update_label(wide ? "Page\n0.0KB" : "0.0KB");
@@ -476,14 +468,14 @@ static void menubar_cb(Widget *wid, void *data)
if (strcmp((char*)data, "nb") == 0) {
a_UIcmd_browser_window_new(wid->window()->w(), wid->window()->h(), ui);
} else if (strcmp((char*)data, "of") == 0) {
- a_UIcmd_open_file(ui->user_data());
+ a_UIcmd_open_file(wid->window()->user_data());
} else if (strcmp((char*)data, "ou") == 0) {
if (ui->get_panelmode() == UI_HIDDEN) {
ui->set_panelmode(UI_TEMPORARILY_SHOW_PANELS);
}
ui->focus_location();
} else if (strcmp((char*)data, "cw") == 0) {
- a_UIcmd_close_bw(ui->user_data());
+ a_UIcmd_close_bw(wid->window()->user_data());
} else if (strcmp((char*)data, "ed") == 0) {
a_UIcmd_close_all_bw();
}
@@ -609,11 +601,11 @@ Group *UI::make_panel(int ww)
* User Interface constructor
*/
UI::UI(int win_w, int win_h, const char* label, const UI *cur_ui) :
- Window(win_w, win_h, label)
+ Group(0, 0, win_w, win_h, label)
{
int s_h = 20;
- clear_double_buffer();
+ Tabs = NULL;
TopGroup = new PackedGroup(0, 0, win_w, win_h);
add(TopGroup);
resizable(TopGroup);
@@ -633,10 +625,6 @@ UI::UI(int win_w, int win_h, const char* label, const UI *cur_ui) :
}
- // Set handler for the close window event
- // (the argument is set later via user_data())
- callback(close_window_cb);
-
// Control panel
Panel = make_panel(win_w);
TopGroup->add(Panel);
@@ -655,7 +643,7 @@ UI::UI(int win_w, int win_h, const char* label, const UI *cur_ui) :
MainIdx = TopGroup->find(Main);
// Find text bar
- findbar = new Findbar(win_w, 30, this);
+ findbar = new Findbar(win_w, 30);
TopGroup->add(findbar);
// Status Panel
@@ -729,6 +717,7 @@ UI::UI(int win_w, int win_h, const char* label, const UI *cur_ui) :
*/
UI::~UI()
{
+ _MSG("UI::~UI()\n");
delete_panel_images();
delete_status_panel_images();
delete ImgFullScreenOn;
@@ -751,27 +740,22 @@ void UI::delete_status_panel_images()
*/
int UI::handle(int event)
{
- _MSG("UI::handle event=%d\n", event);
+ MSG("UI::handle event=%d (%d,%d)\n", event, event_x(), event_y());
+ _MSG("Panel->h()=%d Main->h()=%d\n", Panel->h() , Main->h());
+
int ret = 0, k = event_key();
- // We're only interested in some flags
- // (not whether numlock is on for example)
- unsigned modifier = event_state() & (SHIFT | CTRL | ALT | META);
+ // We're only interested in some flags
+ unsigned modifier = event_state() & (SHIFT | CTRL | ALT);
- // Let FLTK pass these events to child widgets.
if (event == KEY) {
- if (k == UpKey || k == DownKey || k == SpaceKey ||
- k == LeftKey || k == RightKey)
- return 0;
- // Ignore Escape for main window.
- if (k == EscapeKey)
- ret = 1;
+ return 0; // Receive as shortcut
} else if (event == SHORTCUT) {
- // Handle these shortcuts here.
+ // Handle keyboard shortcuts here.
if (modifier == CTRL) {
if (k == 'b') {
- a_UIcmd_book(user_data());
+ a_UIcmd_book(this->window()->user_data());
ret = 1;
} else if (k == 'f') {
set_findbar_visibility(1);
@@ -786,44 +770,48 @@ int UI::handle(int event)
a_UIcmd_browser_window_new(w(), h(), this);
ret = 1;
} else if (k == 'o') {
- a_UIcmd_open_file(user_data());
+ a_UIcmd_open_file(this->window()->user_data());
ret = 1;
} else if (k == 'q') {
- a_UIcmd_close_bw(user_data());
+ a_UIcmd_close_bw(this->window()->user_data());
ret = 1;
} else if (k == 'r') {
- a_UIcmd_reload(user_data());
+ a_UIcmd_reload(this->window()->user_data());
ret = 1;
} else if (k == 's') {
- a_UIcmd_search_dialog(user_data());
+ a_UIcmd_search_dialog(this->window()->user_data());
ret = 1;
} else if (k == ' ') {
panelmode_cb_i();
ret = 1;
}
+ } else {
+ // Back and Forward navigation shortcuts
+ if (modifier == 0 && (k == BackSpaceKey || k == ',')) {
+ a_UIcmd_back(this->window()->user_data());
+ ret = 1;
+ } else if ((modifier == 0 && k == '.') ||
+ (modifier == SHIFT && k == BackSpaceKey)) {
+ a_UIcmd_forw(this->window()->user_data());
+ ret = 1;
+ }
}
- if (event_key_state(LeftAltKey) && modifier == ALT && k == 'q') {
- a_UIcmd_close_all_bw();
- ret = 1;
- }
-
- // Back and Forward navigation shortcuts
- if ((modifier == 0 && k == BackSpaceKey) ||
- (modifier == 0 && k == ',')) {
- a_UIcmd_back(user_data());
- ret = 1;
- } else if ((modifier == SHIFT && k == BackSpaceKey) ||
- (modifier == 0 &&k == '.')) {
- a_UIcmd_forw(user_data());
- ret = 1;
- }
+ } else if (event == FOCUS_CHANGE) {
+ // The "bw" for this tab is stored in the parent window.
+ // Update "bw" each time we switch tabs.
+ window()->user_data(vbw());
+ ret = 0;
}
- if (ret == 0) {
- ret = Window::handle(event);
- }
+ if (!ret)
+ ret = Group::handle(event);
return ret;
+
+ // if (event_key_state(LeftAltKey) && modifier == ALT && k == 'q') {
+ // a_UIcmd_close_all_bw();
+ // ret = 1;
+ // }
}
@@ -859,6 +847,14 @@ void UI::focus_location()
}
/*
+ * Focus Main area.
+ */
+void UI::focus_main()
+{
+ Main->take_focus();
+}
+
+/*
* Set a new message in the status bar.
*/
void UI::set_status(const char *str)
@@ -1075,8 +1071,8 @@ void UI::set_page_title(const char *label)
char title[128];
snprintf(title, 128, "Dillo: %s", label);
- this->copy_label(title);
- this->redraw_label();
+ this->window()->copy_label(title);
+ this->window()->redraw_label();
}
/*
diff --git a/src/ui.hh b/src/ui.hh
index d99bfef4..b8dd5810 100644
--- a/src/ui.hh
+++ b/src/ui.hh
@@ -12,6 +12,7 @@
#include <fltk/Image.h>
#include <fltk/MultiImage.h>
#include <fltk/MenuBuild.h>
+#include <fltk/TabGroup.h>
#include "findbar.hh"
@@ -36,18 +37,21 @@ typedef enum {
} UIPanelmode;
// Private class
-class NewProgressBox;
+class CustProgressBox;
//
// UI class definition -------------------------------------------------------
//
-class UI : public fltk::Window {
+class UI : public fltk::Group {
+ void *Bw;
+ TabGroup *Tabs;
+
Group *TopGroup;
Button *Back, *Forw, *Home, *Reload, *Save, *Stop, *Bookmarks,
*Clear, *Search, *FullScreen, *ImageLoad, *BugMeter;
Input *Location;
PackedGroup *ProgBox;
- NewProgressBox *PProg, *IProg;
+ CustProgressBox *PProg, *IProg;
Image *ImgLeftIns, *ImgLeftSens, *ImgRightIns, *ImgRightSens,
*ImgStopIns, *ImgStopSens, *ImgFullScreenOn, *ImgFullScreenOff,
*ImgImageLoadOn, *ImgImageLoadOff, *ImgMeterOK, *ImgMeterBug,
@@ -84,6 +88,7 @@ public:
const char *get_location();
void set_location(const char *str);
void focus_location();
+ void focus_main();
void set_status(const char *str);
void set_page_prog(size_t nbytes, int cmd);
void set_img_prog(int n_img, int t_img, int cmd);
@@ -96,10 +101,14 @@ public:
void set_panelmode(UIPanelmode mode);
UIPanelmode get_panelmode();
void set_findbar_visibility(bool visible);
-
Widget *fullscreen_button() { return FullScreen; }
void fullscreen_toggle() { FullScreen->do_callback(); }
+ TabGroup *tabs() { return Tabs; }
+ void tabs(TabGroup *tabs) { Tabs = tabs; }
+ void *vbw() { return Bw; }
+ void vbw(void *v_bw) { Bw = v_bw; }
+
// Hooks to method callbacks
void panel_cb_i();
void color_change_cb_i();
diff --git a/src/uicmd.cc b/src/uicmd.cc
index 93f49adf..0fc47cee 100644
--- a/src/uicmd.cc
+++ b/src/uicmd.cc
@@ -16,6 +16,7 @@
#include <stdarg.h>
#include <math.h> /* for rint */
#include <fltk/Widget.h>
+#include <fltk/TabGroup.h>
#include "dir.h"
#include "ui.hh"
@@ -32,28 +33,53 @@
#include "nav.h"
+// Handy macro
+#define BW2UI(bw) ((UI*)(bw->ui))
+
// Platform idependent part
using namespace dw::core;
// FLTK related
using namespace dw::fltk;
-typedef struct {
- UI *ui;
- BrowserWindow *bw;
-} Uibw;
/*
* Local data
*/
-// A matching table for all open ui/bw pairs
-// BUG: must be dynamic.
-static Uibw uibws[32];
-static int uibws_num = 0, uibws_max = 32;
-
static char *save_dir = NULL;
using namespace fltk;
+//
+// For custom handling of keyboard
+//
+class CustTabGroup : public fltk::TabGroup {
+public:
+ CustTabGroup (int x, int y, int ww, int wh, const char *lbl=0) :
+ TabGroup(x,y,ww,wh,lbl) {};
+ int handle(int e) {
+ // Don't focus with arrow keys
+ printf("CustTabGroup::handle %d\n", e);
+ int k = event_key();
+ // We're only interested in some flags
+ unsigned modifier = event_state() & (SHIFT | CTRL | ALT);
+ if (e == KEY) {
+ if (k == UpKey || k == DownKey || k == TabKey) {
+ return 0;
+ } else if (k == LeftKey || k == RightKey) {
+ if (modifier == SHIFT) {
+ int i = value();
+ if (k == LeftKey) {i = i ? i-1 : children()-1;}
+ else {i++; if (i >= children()) i = 0;}
+ if (value(i)) do_callback();
+ return 1;
+ }
+ return 0;
+ }
+ }
+ return TabGroup::handle(e);
+ }
+};
+
/*
* Create a new UI and its associated BrowserWindow data structure.
@@ -61,24 +87,50 @@ using namespace fltk;
*/
BrowserWindow *a_UIcmd_browser_window_new(int ww, int wh, const void *v_ui)
{
+ static TabGroup *DilloTabs = NULL;
+ BrowserWindow *new_bw = NULL;
+
if (ww <= 0 || wh <= 0) {
// Set default geometry from dillorc.
ww = prefs.width;
wh = prefs.height;
}
+ if (!DilloTabs) {
+ {Window *o = new Window(ww, wh);
+ o->shortcut(0); // Ignore Escape
+ o->clear_double_buffer();
+ DilloTabs = new CustTabGroup(0, 0, ww, wh);
+ DilloTabs->selection_color(156);
+ //DilloTabs->clear_tab_to_focus();
+ o->add(DilloTabs);
+ }
+ wh -= 20;
+ }
+
+ fltk::Group* o = new fltk::Group(0, 20, ww, wh, "Label1");
+ o->clear_tab_to_focus();
+ o->clear_click_to_focus();
+ DilloTabs->add(o);
+
// Create and set the UI
- UI *new_ui = new UI(ww, wh, "Dillo: UI", (UI*) v_ui);
+ UI *new_ui = new UI(ww, wh, "", (UI*) v_ui);
new_ui->set_status("http://www.dillo.org/");
+ new_ui->tabs(DilloTabs);
//new_ui->set_location("http://dillo.org/");
//new_ui->customize(12);
+ o->add(new_ui);
+ DilloTabs->resizable(o);
+ DilloTabs->window()->resizable(new_ui);
+ DilloTabs->window()->show();
+
if (v_ui == NULL && prefs.xpos >= 0 && prefs.ypos >= 0) {
// position the first window according to preferences
fltk::Rectangle r;
- new_ui->borders(&r);
+ new_ui->window()->borders(&r);
// borders() gives x and y border sizes as negative values
- new_ui->position(prefs.xpos - r.x(), prefs.ypos - r.y());
+ new_ui->window()->position(prefs.xpos - r.x(), prefs.ypos - r.y());
}
// Now create the Dw render layout and viewport
@@ -93,23 +145,17 @@ BrowserWindow *a_UIcmd_browser_window_new(int ww, int wh, const void *v_ui)
viewport->setScrollStep((int) rint(14.0 * prefs.font_factor));
// Now, create a new browser window structure
- BrowserWindow *new_bw = a_Bw_new(ww, wh, 0);
+ new_bw = a_Bw_new(ww, wh, 0);
+
+ // Store new_bw for callback data inside UI
+ new_ui->vbw(new_bw);
- // Set new_bw as callback data for UI
- new_ui->user_data(new_bw);
// Reference the UI from the bw
new_bw->ui = (void *)new_ui;
// Copy the layout pointer into the bw data
new_bw->render_layout = (void*)layout;
- // insert the new ui/bw pair in the table
- if (uibws_num < uibws_max) {
- uibws[uibws_num].ui = new_ui;
- uibws[uibws_num].bw = new_bw;
- uibws_num++;
- }
-
- new_ui->show();
+ //new_ui->show();
return new_bw;
}
@@ -120,12 +166,19 @@ BrowserWindow *a_UIcmd_browser_window_new(int ww, int wh, const void *v_ui)
void a_UIcmd_close_bw(void *vbw)
{
BrowserWindow *bw = (BrowserWindow *)vbw;
- UI *ui = (UI*)bw->ui;
+ UI *ui = BW2UI(bw);
Layout *layout = (Layout*)bw->render_layout;
MSG("a_UIcmd_close_bw\n");
a_Bw_stop_clients(bw, BW_Root + BW_Img + Bw_Force);
delete(layout);
+ if (ui->tabs()) {
+ ui->tabs()->remove(ui);
+ if (ui->tabs()->value() != -1)
+ ui->tabs()->selected_child()->take_focus();
+ else
+ ui->tabs()->window()->hide();
+ }
delete(ui);
a_Bw_free(bw);
}
@@ -562,8 +615,6 @@ void a_UIcmd_nav_jump(BrowserWindow *bw, int offset, int new_bw)
// UI binding functions -------------------------------------------------------
-#define BW2UI(bw) ((UI*)(bw->ui))
-
/*
* Return browser window width and height
*/
@@ -757,3 +808,11 @@ void a_UIcmd_findtext_reset(BrowserWindow *bw)
a_UIcmd_set_msg(bw, "");
}
+/*
+ * Focus the rendered area.
+ */
+void a_UIcmd_focus_main_area(BrowserWindow *bw)
+{
+ BW2UI(bw)->focus_main();
+}
+
diff --git a/src/uicmd.hh b/src/uicmd.hh
index b469beef..ec1223ec 100644
--- a/src/uicmd.hh
+++ b/src/uicmd.hh
@@ -31,6 +31,7 @@ void a_UIcmd_fullscreen_toggle(BrowserWindow *bw);
void a_UIcmd_findtext_dialog(BrowserWindow *bw);
void a_UIcmd_findtext_search(BrowserWindow *bw, const char *key, int case_sens);
void a_UIcmd_findtext_reset(BrowserWindow *bw);
+void a_UIcmd_focus_main_area(BrowserWindow *bw);
void a_UIcmd_page_popup(void *vbw, const DilloUrl *url,
const char *bugs_txt, bool_t unloaded_imgs);
void a_UIcmd_link_popup(void *vbw, const DilloUrl *url);