~ubuntu-branches/ubuntu/intrepid/gparted/intrepid

« back to all changes in this revision

Viewing changes to include/DialogFeatures.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-18 09:24:46 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070518092446-qog6ipxs9ah78q0c
Tags: 0.3.3-2ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/control:
    - Maintainer: Ubuntu Core Developers
      <ubuntu-devel-discuss@lists.ubuntu.com> 
    - don't depend on menu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <gtkmm/dialog.h>
24
24
#include <gtkmm/treeview.h>
25
25
#include <gtkmm/liststore.h>
 
26
#include <gtkmm/image.h>
26
27
 
27
28
namespace GParted
28
29
{
38
39
private:
39
40
        void show_filesystem( const FS & fs ) ;
40
41
 
 
42
        Gtk::HBox *hbox ;
 
43
        Gtk::Image *image ;
41
44
        Gtk::TreeView treeview_filesystems;
42
45
        Gtk::TreeRow treerow;
43
46
        Glib::RefPtr<Gtk::ListStore> liststore_filesystems;
53
56
                Gtk::TreeModelColumn< Glib::RefPtr<Gdk::Pixbuf> > move ;
54
57
                Gtk::TreeModelColumn< Glib::RefPtr<Gdk::Pixbuf> > copy ;
55
58
                Gtk::TreeModelColumn< Glib::RefPtr<Gdk::Pixbuf> > check ;
 
59
                Gtk::TreeModelColumn< Glib::RefPtr<Gdk::Pixbuf> > read_label ;
56
60
                                
57
61
                treeview_filesystems_Columns() 
58
62
                { 
65
69
                        add( move ) ;
66
70
                        add( copy ) ;
67
71
                        add( check ) ;
 
72
                        add( read_label ) ;
68
73
                }
69
74
        };
70
75