Browse Source

save session page number and current tab activity status

CPP-GTK4
yggverse 2 months ago
parent
commit
aceef398bf
  1. 19
      src/app/browser/main/tab.cpp
  2. 2
      src/app/browser/main/tab.hpp

19
src/app/browser/main/tab.cpp

@ -25,6 +25,8 @@ Tab::Tab( @@ -25,6 +25,8 @@ Tab::Tab(
(
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
`time` INTEGER NOT NULL,
`number` INTEGER NOT NULL,
`current` INTEGER NOT NULL,
`request` VARCHAR(1024)
)
)SQL",
@ -56,7 +58,7 @@ Tab::Tab( @@ -56,7 +58,7 @@ Tab::Tab(
const int PREPARE = ::sqlite3_prepare_v3(
this->db,
R"SQL(
SELECT * FROM `app_browser_main_tab`
SELECT * FROM `app_browser_main_tab` ORDER BY `number` ASC
)SQL",
-1,
SQLITE_PREPARE_NORMALIZE,
@ -81,9 +83,12 @@ Tab::Tab( @@ -81,9 +83,12 @@ Tab::Tab(
)
);
set_current_page(
PAGE_NUMBER
);
if (::sqlite3_column_int(statement, DB::APP_BROWSER_MAIN_TAB::CURRENT) == 1)
{
set_current_page(
PAGE_NUMBER
);
}
}
}
@ -130,12 +135,18 @@ void Tab::shutdown() @@ -130,12 +135,18 @@ void Tab::shutdown()
R"SQL(
INSERT INTO `app_browser_main_tab` (
`time`,
`number`,
`current`,
`request`
) VALUES (
CURRENT_TIMESTAMP,
'%d',
'%d',
'%s'
)
)SQL",
page_number,
page_number == get_current_page() ? 1 : 0,
tabPage->get_navigation_request_text()
).c_str(),
nullptr,

2
src/app/browser/main/tab.hpp

@ -27,6 +27,8 @@ namespace app::browser::main @@ -27,6 +27,8 @@ namespace app::browser::main
{
ID,
TIME,
NUMBER,
CURRENT,
REQUEST
};
};

Loading…
Cancel
Save