ocarina/include/lib/colmgr.h
Anna Schumaker 3d067878f2 colmgr: Add a function for updating a specific path
On the gui end, call this function when a row in the "collected paths"
list is double-clicked.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2014-06-22 10:14:23 -04:00

24 lines
453 B
C++

/*
* Copyright 2014 (c) Anna Schumaker.
*/
#ifndef OCARINA_LIB_COLMGR_H
#define OCARINA_LIB_COLMGR_H
#include <gtkmm.h>
#include <string>
namespace colmgr
{
void init();
void add_path(const std::string &);
void del_path(const Gtk::TreePath &);
void update_path(const Gtk::TreePath &);
void update_paths();
Glib::ustring get_path(const Gtk::TreePath &);
void toggle_path_enabled(const Gtk::TreePath &);
};
#endif /* OCARINA_LIB_COLMGR_H */