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

« back to all changes in this revision

Viewing changes to glom/box_withbuttons.h

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2009-10-09 16:50:36 UTC
  • mfrom: (1.1.42 upstream)
  • Revision ID: james.westby@ubuntu.com-20091009165036-orinvwmohk838xxl
Tags: 1.12.2-0ubuntu1
* New upstream version:
  - FFE LP: #391664
* debian/control:
  - Bump python-gnome2-extras-dev build-dep to >= 2.25.3.
  - Bump libgdamm3.0-dev build-dep to libgdamm4.0-dev >= 3.99.14.
  - Change libgda3-dev build-dep to libgda-4.0-dev.
  - Change libgda3-postgres dependency to libgda-4.0-postgres.
  - Bump libgtkmm-2.4-dev build-dep to >= 2.14.
  - Add build-dep on libgconfmm-2.6-dev.
  - Bump libgoocanvasmm-dev build-dep to >= 0.14.0.
  - Remove build-dep on libbakery-2.6-dev.
  - Bump postgresql-8.3 dependency to postgresql-8.4.
  - Change scrollkeeper build-dep to rarian-compat.
  - Rename libglom{0,-dev} -> libglom-1.12-{0,dev}. Upstream include
    APIVER in the library name now.
* debian/rules:
  - Update --with-postgres-utils configure flag to point to the new
    path.
  - Drop deprecated --disable-scrollkeeper configure flag.
  - Update DEB_SHLIBDEPS_INCLUDE with new libglom-1.12-0 package name.
  - Don't include /usr/share/cdbs/1/rules/simple-patchsys.mk - there
    are currently no patches.
* debian/libglom-1.12-0.install:
  - Updated for new version.
* debian/libglom-1.12-dev.install:
  - Install pc and header files.
* debian/glom-doc.install:
  - Updated for new version.
* debian/glom.install:
  - Updated for new version.
* Fix debian/watch.
* Dropped obsolete 10-distro-install-postgres-change.patch.
* Built against latest libgoocanvasmm (LP: #428445).
* Also closes LP: #230007, LP: #393229, LP: #393231, LP: #394507,
  LP: #394887, LP: #394894, LP: #397409, LP: #381563.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <gtkmm.h>
25
25
#include "utility_widgets/adddel/adddel_withbuttons.h"
26
26
 
27
 
#include <glom/libglom/document/document_glom.h>
28
 
#include <glom/libglom/connectionpool.h>
29
 
#include <glom/libglom/appstate.h>
30
 
#include "base_db.h"
31
 
#include <bakery/Utilities/BusyCursor.h>
32
 
#include <libglademm.h>
 
27
#include <libglom/document/document.h>
 
28
#include <libglom/connectionpool.h>
 
29
#include <libglom/appstate.h>
 
30
#include <glom/base_db.h>
 
31
#include <gtkmm/builder.h>
33
32
 
34
33
namespace Glom
35
34
{
36
35
 
37
36
/** A Gtk::VBox base widget class, 
38
37
 * with some extra signals to allow derived classes to be used generically in 
39
 
 * Dialog_Glom, allowing the dialog to respond to buttons in the box.
 
38
 * Window_BoxHolder, allowing the dialog to respond to buttons in the box.
40
39
 */
41
40
class Box_WithButtons :
42
41
  public Gtk::VBox
43
42
{
44
43
public: 
45
44
  Box_WithButtons();
46
 
  Box_WithButtons(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade);
 
45
 
 
46
  Box_WithButtons(BaseObjectType* cobject, const Glib::RefPtr<Gtk::Builder>& builder);
47
47
 
48
48
  ///For use with libglademm's get_widget_derived():
49
49
  Box_WithButtons(BaseObjectType* cobject);
67
67
  virtual Gtk::Widget* get_default_button();
68
68
 
69
69
 
70
 
protected:
 
70
private:
71
71
 
72
72
  //virtual void hint_set(const Glib::ustring& strText);
73
73