TreeEdges now connect to fixed anchors instead of closest anchors.
[av.git] / gtk / src / list_view.hpp
blobe76ea4b169064241b150d635fe54b444f28adcaa
1 /**
2 * \file list_view.hpp
4 * Encapsulates the ListView class.
5 */
7 #ifndef __LIST_VIEW_HPP__
8 #define __LIST_VIEW_HPP__
10 #include <gtkmm/treeview.h>
11 #include <libglademm.h>
13 #include "list.hpp"
15 /**
16 * \ingroup Views
17 * \{
20 /**
21 * \brief The ListView class which displays the List contents.
23 class ListView : public Gtk::TreeView
25 public:
26 /**
27 * \brief Constructor.
28 * \param cobject The C object.
29 * \param glade The glade object.
31 ListView(GtkTreeView *cobject, Glib::RefPtr<Gnome::Glade::Xml> &glade);
33 /**
34 * \brief Destructor.
36 ~ListView(void);
39 /**
40 * \}
43 #endif