~bkerensa/ubuntu/precise/easystroke/fix-for-966714

« back to all changes in this revision

Viewing changes to actions.h

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Jaeger, Thomas Jaeger, Benjamin Drung
  • Date: 2010-01-03 01:02:54 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20100103010254-dwczji4lkt8ldcwh
Tags: 0.5.2-0ubuntu1
[ Thomas Jaeger ]
* New upstream release (LP: #502366)
  - Fixes crash when the third axis is a relative one (LP: #466532)
  - Uses XI2 now, so upgrade Build-Depends accordingly

[ Benjamin Drung ]
* Wrap Build-Depends
* Bump Standards-Version to 3.8.3
* Add ${misc:Depends} to dependency list
* Switch to debhelper v7.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
        void on_cell_data_name(Gtk::CellRenderer* cell, const Gtk::TreeModel::iterator& iter);
55
55
        void on_cell_data_type(Gtk::CellRenderer* cell, const Gtk::TreeModel::iterator& iter);
56
56
        void on_cell_data_arg(Gtk::CellRenderer* cell, const Gtk::TreeModel::iterator& iter);
57
 
        bool on_row_separator(const Glib::RefPtr<Gtk::TreeModel> &model, const Gtk::TreeModel::iterator &iter);
58
57
        int compare_ids(const Gtk::TreeModel::iterator &a, const Gtk::TreeModel::iterator &b);
59
58
        class OnStroke;
60
59
        Gtk::TreeRow get_selected_row();
71
70
        void on_cell_data_apps(Gtk::CellRenderer* cell, const Gtk::TreeModel::iterator& iter);
72
71
        void update_action_list();
73
72
        void update_row(const Gtk::TreeRow &row);
 
73
        bool count_app_actions(const Gtk::TreeIter &i);
 
74
        void update_counts();
74
75
        void on_reset_actions();
75
76
        void on_remove_app();
76
77
 
125
126
 
126
127
        class Apps : public Gtk::TreeModel::ColumnRecord {
127
128
        public:
128
 
                Apps() { add(app); add(actions); }
 
129
                Apps() { add(app); add(actions); add(count); }
129
130
                Gtk::TreeModelColumn<Glib::ustring> app;
130
131
                Gtk::TreeModelColumn<ActionListDiff *> actions;
 
132
                Gtk::TreeModelColumn<int> count;
131
133
        };
132
134
        Apps ca;
133
135