~ubuntu-branches/ubuntu/precise/glom/precise

« back to all changes in this revision

Viewing changes to glom/mode_design/layout/dialog_layout_details.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-01-29 15:18:17 UTC
  • mfrom: (1.1.44 upstream)
  • Revision ID: james.westby@ubuntu.com-20100129151817-tzpjgd5tuw2pixa4
Tags: 1.13.2-0ubuntu1
* New upstream release.
* Update debian/copyright according to Debian DEP-5 spec.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
  Gtk::TreeModel::iterator get_selected_group_parent() const;
59
59
  sharedptr<LayoutItem_Button> offer_button_script_edit(const sharedptr<const LayoutItem_Button>& button);
60
60
 
 
61
  /** Get the table that the fields belong to.
 
62
   * This is usually the regular table name (m_table_name),
 
63
   * but for related records portals (Dialog_Layout_List_Related),
 
64
   * it's the to table of the relationship.
 
65
   */
 
66
  virtual Glib::ustring get_fields_table() const;
 
67
 
61
68
  //signal handlers:
62
69
  void on_button_up();
63
70
  void on_button_down();
70
77
  void on_button_add_button();
71
78
  void on_button_add_text();
72
79
  void on_button_add_image();
73
 
  void on_button_field_formatting();
 
80
  void on_button_formatting();
74
81
  virtual void on_button_edit(); //overridden in derived class
75
82
  void on_treeview_fields_selection_changed();
76
83
 
107
114
  Gtk::Button* m_button_add_text;
108
115
  Gtk::Button* m_button_add_image;
109
116
  Gtk::Button* m_button_field_delete;
110
 
  Gtk::Button* m_button_field_formatting;
 
117
  Gtk::Button* m_button_formatting;
111
118
  Gtk::Button* m_button_edit;
112
119
  Gtk::Label* m_label_table_name;
113
120