~ubuntu-branches/ubuntu/quantal/glom/quantal

« back to all changes in this revision

Viewing changes to glom/mode_data/dialog_layout_details.h

  • Committer: Bazaar Package Importer
  • Author(s): Iain Lane
  • Date: 2009-01-11 17:12:01 UTC
  • mfrom: (1.1.39 upstream)
  • Revision ID: james.westby@ubuntu.com-20090111171201-0ov9zh1fxfueshxc
Tags: 1.8.5-0ubuntu1
* New upstream release (LP: #256701), fixes LP bugs: 
  + Clear the text in property dialogs for text items (LP: #309147)
  + Don't crash when showing and then hiding the grid (LP: #303453)
  + Temporarily remember the sort order so it is the same when navigating 
    away and back (LP: #303422)
  + Use the list's sort order for the top-level records in the report 
    (LP: #303425)
  + Users/Groups: Disable drag-and-drop for the treeview, because it is
    useless and confusing (LP: #299573)
  + Import: Sort the fields list alphabetically (LP: #306593)
  + delete primary key make unusuable the database (LP: #299549)
  + Spanish translate incomplete (LP: #299556)
  + import date format error (LP: #299591)
  + can't delete data from table list view (LP: #299853)
  + Field definition: default value not saved (LP: #299896)
  + reports crashing (LP: #300054)
  + Year error with date fields (LP: #300057)
  + list view: 2 records added instead of 1 (LP: #300819)
* debian/control: Refreshed dependencies for libglom-dev.
* debian/control: Updated build-deps to match configure checks. goocavnasmm
  build-dep bumped to version without .la files.
* debian/rules: Don't delete the directory containing the templates.
* debian/control, debian/rules, debian/glom-doc.*: Split out
  arch-independent manual and examples into separate package glom-doc, which
  is now recommended by glom (glom will still work if they're not available)
* debian/copyright: Rewritten to new machine-readable format. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
  sharedptr<LayoutItem_Button> offer_button_script_edit(const sharedptr<const LayoutItem_Button>& button);
59
59
 
60
60
  //signal handlers:
61
 
  void on_button_field_up();
62
 
  void on_button_field_down();
 
61
  void on_button_up();
 
62
  void on_button_down();
63
63
  void on_button_field_delete();
64
 
  virtual void on_button_field_add(); //overridden in derived class. 
65
 
  void on_button_field_add_group();
 
64
  virtual void on_button_add_field(); //overridden in derived class. 
 
65
  void on_button_add_group();
66
66
  void on_button_add_notebook();
67
67
  void on_button_add_related();
 
68
  void on_button_add_related_calendar();
68
69
  void on_button_add_button();
69
70
  void on_button_add_text();
70
71
  void on_button_add_image();
74
75
 
75
76
  void on_cell_data_name(Gtk::CellRenderer* renderer, const Gtk::TreeModel::iterator& iter);
76
77
  void on_cell_data_title(Gtk::CellRenderer* renderer, const Gtk::TreeModel::iterator& iter);
77
 
  void on_cell_data_columns_count(Gtk::CellRenderer* renderer, const Gtk::TreeModel::iterator& iter);
 
78
  void on_cell_data_group_columns(Gtk::CellRenderer* renderer, const Gtk::TreeModel::iterator& iter);
 
79
  void on_cell_data_column_width(Gtk::CellRenderer* renderer, const Gtk::TreeModel::iterator& iter);
78
80
 
79
81
  void on_treeview_cell_edited_name(const Glib::ustring& path_string, const Glib::ustring& new_text);
80
82
  void on_treeview_cell_edited_title(const Glib::ustring& path_string, const Glib::ustring& new_text);
81
 
  void on_treeview_cell_edited_columns_count(const Glib::ustring& path_string, const Glib::ustring& new_text);
 
83
  void on_treeview_cell_edited_group_columns(const Glib::ustring& path_string, const Glib::ustring& new_text);
 
84
  void on_treeview_cell_edited_column_width(const Glib::ustring& path_string, const Glib::ustring& new_text);
82
85
 
83
86
  Gtk::TreeModel::iterator append_appropriate_row();
84
87
 
85
88
  Gtk::TreeView* m_treeview_fields;
86
89
  Gtk::TreeView::Column* m_treeview_column_title;
 
90
  Gtk::TreeView::Column* m_treeview_column_group_columns;
 
91
  Gtk::TreeView::Column* m_treeview_column_column_width;
87
92
 
88
93
  // Only one of these boxes should be shown:
89
94
  Gtk::Box* m_box_table_widgets;
90
95
  Gtk::Box* m_box_related_table_widgets;
91
96
  Gtk::Frame* m_box_related_navigation;
92
97
 
93
 
  Gtk::Button* m_button_field_up;
94
 
  Gtk::Button* m_button_field_down;
95
 
  Gtk::Button* m_button_field_add;
96
 
  Gtk::Button* m_button_field_add_group;
 
98
  Gtk::Button* m_button_up;
 
99
  Gtk::Button* m_button_down;
 
100
  Gtk::Button* m_button_add_field;
 
101
  Gtk::Button* m_button_add_group;
97
102
  Gtk::Button* m_button_add_notebook;
98
103
  Gtk::Button* m_button_add_related;
 
104
  Gtk::Button* m_button_add_related_calendar;
99
105
  Gtk::Button* m_button_add_button;
100
106
  Gtk::Button* m_button_add_text;
101
107
  Gtk::Button* m_button_add_image;