-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProjectMgrTables.hpp
46 lines (31 loc) · 988 Bytes
/
ProjectMgrTables.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef WAYROUND_I2P_20241125_061830_589939
#define WAYROUND_I2P_20241125_061830_589939
#include <filesystem>
#include <gtkmm.h>
#include "forward_declarations.hpp"
namespace wayround_i2p::ccedit
{
class ProjectTableRow : public Glib::Object
{
public:
std::string proj_name();
void proj_name(std::string);
std::filesystem::path proj_path();
void proj_path(std::filesystem::path);
// Controller_shared controller;
ProjectCtl_shared proj_ctl;
static Glib::RefPtr<ProjectTableRow> create();
sigc::signal<void()> &signal_proj_name_changed();
sigc::signal<void()> &signal_proj_path_changed();
protected:
ProjectTableRow();
public:
~ProjectTableRow();
private:
std::string priv_proj_name;
std::filesystem::path priv_proj_path;
sigc::signal<void()> priv_signal_proj_name_changed;
sigc::signal<void()> priv_signal_proj_path_changed;
};
} // namespace wayround_i2p::ccedit
#endif