mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:48:10 +00:00
Browser: Open links with target="_blank" in new tab
This commit is contained in:
parent
061205b3b3
commit
896decd4d5
3 changed files with 28 additions and 21 deletions
|
@ -24,9 +24,9 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "WindowActions.h"
|
||||
#include "InspectorWidget.h"
|
||||
#include "Tab.h"
|
||||
#include "WindowActions.h"
|
||||
#include <LibCore/File.h>
|
||||
#include <LibGUI/Application.h>
|
||||
#include <LibGUI/BoxLayout.h>
|
||||
|
@ -75,6 +75,8 @@ int main(int argc, char** argv)
|
|||
|
||||
auto window = GUI::Window::construct();
|
||||
window->set_rect(100, 100, 640, 480);
|
||||
window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/filetype-html.png"));
|
||||
window->set_title("Browser");
|
||||
|
||||
auto& widget = window->set_main_widget<GUI::Widget>();
|
||||
widget.set_fill_with_background_color(true);
|
||||
|
@ -91,7 +93,8 @@ int main(int argc, char** argv)
|
|||
|
||||
Browser::WindowActions window_actions(*window);
|
||||
|
||||
auto create_new_tab = [&](bool activate = true) {
|
||||
Function<void(URL url, bool activate)> create_new_tab;
|
||||
create_new_tab = [&](auto url, auto activate) {
|
||||
auto& new_tab = tab_widget.add_tab<Browser::Tab>("New tab");
|
||||
|
||||
new_tab.on_title_change = [&](auto title) {
|
||||
|
@ -100,6 +103,10 @@ int main(int argc, char** argv)
|
|||
window->set_title(String::format("%s - Browser", title.characters()));
|
||||
};
|
||||
|
||||
new_tab.on_tab_open_request = [&](auto& url) {
|
||||
create_new_tab(url, true);
|
||||
};
|
||||
|
||||
new_tab.on_tab_close_request = [&](auto& tab) {
|
||||
tab_widget.deferred_invoke([&](auto&) {
|
||||
tab_widget.remove_tab(tab);
|
||||
|
@ -108,27 +115,20 @@ int main(int argc, char** argv)
|
|||
});
|
||||
};
|
||||
|
||||
window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/filetype-html.png"));
|
||||
new_tab.load(url);
|
||||
|
||||
window->set_title("Browser");
|
||||
window->show();
|
||||
|
||||
URL url_to_load = home_url;
|
||||
|
||||
if (app.args().size() >= 1) {
|
||||
url_to_load = URL::create_with_url_or_path(app.args()[0]);
|
||||
}
|
||||
|
||||
new_tab.load(url_to_load);
|
||||
|
||||
dbg() << "Added new tab " << &new_tab << ", loading " << url_to_load;
|
||||
dbg() << "Added new tab " << &new_tab << ", loading " << url;
|
||||
|
||||
if (activate)
|
||||
tab_widget.set_active_widget(&new_tab);
|
||||
};
|
||||
|
||||
URL default_url = home_url;
|
||||
if (app.args().size() >= 1)
|
||||
default_url = URL::create_with_url_or_path(app.args()[0]);
|
||||
|
||||
window_actions.on_create_new_tab = [&] {
|
||||
create_new_tab();
|
||||
create_new_tab(default_url, true);
|
||||
};
|
||||
|
||||
window_actions.on_next_tab = [&] {
|
||||
|
@ -139,7 +139,8 @@ int main(int argc, char** argv)
|
|||
tab_widget.activate_previous_tab();
|
||||
};
|
||||
|
||||
create_new_tab();
|
||||
create_new_tab(default_url, true);
|
||||
window->show();
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue