use separated class files, use hpp header extension, update include model

This commit is contained in:
yggverse 2024-08-10 17:57:15 +03:00
parent 9b6dceddd8
commit 0f96ff851e
15 changed files with 235 additions and 145 deletions

View file

@ -0,0 +1,18 @@
#ifndef APP_BROWSER_HEADER_H
#define APP_BROWSER_HEADER_H
#include <gtkmm/headerbar.h>
namespace app::browser
{
class Header : public Gtk::HeaderBar
{
public:
const bool SHOW_TITLE_BUTTONS = true;
Header();
};
}
#endif // APP_BROWSER_HEADER_H