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

« back to all changes in this revision

Viewing changes to glom/libglom/data_structure/layout/layoutitem_portal.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:
46
46
  virtual void change_field_item_name(const Glib::ustring& table_name, const Glib::ustring& field_name, const Glib::ustring& field_name_new);
47
47
  virtual void change_related_field_item_name(const Glib::ustring& table_name, const Glib::ustring& field_name, const Glib::ustring& field_name_new);
48
48
 
 
49
  ///A helper method to avoid extra ifs to avoid null dereferencing.
 
50
  Glib::ustring get_from_table() const;
 
51
 
49
52
  //virtual void debug(guint level = 0) const;
50
53
 
51
54
  sharedptr<UsesRelationship> get_navigation_relationship_specific(bool& main_relationship);
52
55
  sharedptr<const UsesRelationship> get_navigation_relationship_specific(bool& main_relationship) const;
53
56
  void set_navigation_relationship_specific(bool main_relationship, const sharedptr<UsesRelationship>& relationship);
54
57
 
 
58
  /// This is used only for the print layouts.
 
59
  double get_print_layout_row_height() const;
 
60
 
 
61
  /// This is used only for the print layouts.
 
62
  void set_print_layout_row_height(double row_height);
 
63
 
55
64
protected:
56
65
 
57
66
  //If no navigation relationship has been specified then it will be automatically chosen: 
58
67
  bool m_navigation_relationship_specific_main;
59
 
  sharedptr<UsesRelationship> m_navigation_relationship_specific; 
 
68
  sharedptr<UsesRelationship> m_navigation_relationship_specific;
 
69
 
 
70
  // This is used only for the print layouts.
 
71
  double m_print_layout_row_height;
60
72
};
61
73
 
62
74
} //namespace Glom