remove extra access level definition

This commit is contained in:
yggverse 2024-08-17 00:50:24 +03:00
parent 5fff73f17b
commit 09542c5134
12 changed files with 50 additions and 74 deletions

View File

@ -19,10 +19,8 @@ namespace app
class Browser : public Gtk::ApplicationWindow
{
private:
app::browser::Header * header;
app::browser::Main * main;
app::browser::Header * header;
app::browser::Main * main;
public:

View File

@ -13,10 +13,8 @@ namespace app::browser
class Header : public Gtk::HeaderBar
{
private:
app::browser::header::Menu * menu;
app::browser::header::Tab * tab;
app::browser::header::Menu * menu;
app::browser::header::Tab * tab;
public:

View File

@ -9,12 +9,10 @@ namespace app::browser::header
{
class Menu : public Gtk::MenuButton
{
private:
Glib::RefPtr<Gio::Menu> tab,
tab_close,
tool,
main;
Glib::RefPtr<Gio::Menu> tab,
tab_close,
tool,
main;
public:

View File

@ -12,9 +12,7 @@ namespace app::browser
class Main : public Gtk::Box
{
private:
app::browser::main::Tab * tab;
app::browser::main::Tab * tab;
public:

View File

@ -9,12 +9,10 @@ namespace app::browser::main
{
class Tab : public Gtk::Notebook
{
private:
void on_switch(
Gtk::Widget * page,
guint page_num
);
void on_switch(
Gtk::Widget * page,
guint page_num
);
public:

View File

@ -10,15 +10,13 @@ namespace app::browser::main::tab
{
class Label : public Gtk::Label
{
private:
Glib::RefPtr<Gtk::GestureClick> controller;
Glib::RefPtr<Gtk::GestureClick> controller;
void on_click(
int n,
double x,
double y
);
void on_click(
int n,
double x,
double y
);
public:

View File

@ -22,16 +22,14 @@ namespace app::browser::main::tab
class Page : public Gtk::Box
{
private:
char buffer[0xfffff];
char buffer[0xfffff];
Glib::RefPtr<Gio::SimpleActionGroup> action_group;
Glib::RefPtr<Gio::SocketClient> socket_client;
Glib::RefPtr<Gio::SocketConnection> socket_connection;
Glib::RefPtr<Gio::SimpleActionGroup> action_group;
Glib::RefPtr<Gio::SocketClient> socket_client;
Glib::RefPtr<Gio::SocketConnection> socket_connection;
page::Navbar * navbar;
page::Content * content;
page::Navbar * navbar;
page::Content * content;
public:

View File

@ -20,21 +20,19 @@ namespace app::browser::main::tab::page
class Navbar : public Gtk::Box
{
private:
// Actions
Glib::RefPtr<Gio::SimpleActionGroup> action_group;
// Actions
Glib::RefPtr<Gio::SimpleActionGroup> action_group;
// Components
navbar::Base * base;
navbar::Bookmark * bookmark;
navbar::History * history;
navbar::Request * request;
navbar::Update * update;
// Components
navbar::Base * base;
navbar::Bookmark * bookmark;
navbar::History * history;
navbar::Request * request;
navbar::Update * update;
// Defaults
const int SPACING = 8;
const int MARGIN = 8;
// Defaults
const int SPACING = 8;
const int MARGIN = 8;
public:

View File

@ -14,10 +14,8 @@ namespace app::browser::main::tab::page::navbar
class History : public Gtk::Box
{
private:
history::Back * back;
history::Forward * forward;
history::Back * back;
history::Forward * forward;
public:

View File

@ -11,15 +11,13 @@ namespace app::browser::main::tab::page::navbar
{
class Request : public Gtk::Entry
{
private:
std::string scheme,
host,
port,
path,
query;
std::string scheme,
host,
port,
path,
query;
void parse();
void parse();
public:

View File

@ -12,13 +12,11 @@ namespace lib
class Database
{
private:
int status;
int status;
char * error;
char * error;
sqlite3 * connection;
sqlite3 * connection;
public:

View File

@ -7,13 +7,11 @@ namespace lib::database
{
class Session
{
private:
int status;
int status;
char * error;
char * error;
sqlite3 * connection;
sqlite3 * connection;
public: