mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-16 01:29:57 +00:00
18 lines
291 B
C++
18 lines
291 B
C++
|
#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
|