28 lines
498 B
C++
28 lines
498 B
C++
#pragma once
|
|
#include <gtkmm.h>
|
|
|
|
#include <print>
|
|
|
|
namespace larra {
|
|
|
|
struct Application : Gtk::Application {
|
|
Application() : Gtk::Application("org.larra.larra") {
|
|
Glib::set_application_name("Larra");
|
|
}
|
|
static auto create() -> Glib::RefPtr<Application>;
|
|
auto on_startup() -> void final;
|
|
|
|
auto on_activate() -> void final;
|
|
|
|
private:
|
|
auto OnClickPreferences() -> void {
|
|
}
|
|
|
|
auto OnClickManageAccounts() -> void {
|
|
}
|
|
|
|
auto OnClickAbout() -> void {
|
|
}
|
|
};
|
|
|
|
} // namespace larra
|