~ubuntu-branches/ubuntu/vivid/gnote/vivid-proposed

« back to all changes in this revision

Viewing changes to src/notemanager.hpp

  • Committer: Package Import Robot
  • Author(s): Vincent Cheng
  • Date: 2011-09-24 20:18:37 UTC
  • mfrom: (1.3.11 upstream)
  • Revision ID: package-import@ubuntu.com-20110924201837-39jpl1odhsub2956
Tags: 0.8.0-1
* New upstream release, featuring GTK+ 3 port.
  - Add versioned build dependency on libglibmm-2.4-dev (>= 2.28).
  - Replace build dependency on libgtkmm-2.4-dev with libgtkmm-3.0-dev.
  - Remove build dependencies on the following packages:
    - libdbus-c++-dev
    - libgconf2-dev
    - libgtkspell-dev (GtkSpell has yet to be ported to GTK+ 3)
    - libpanelappletmm-2.6-dev (Closes: #638108)
      - This removes support for the gnome-panel applet. (Closes: #566670)
      - Support for gnome-panel will be re-enabled once
        libpanel-applet-4-dev migrates from experimental to unstable.
* Re-format debian/copyright to fix lintian warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include <list>
28
28
#include <memory>
29
29
 
30
 
#include <gconf/gconf.h>
31
 
 
32
30
#include <sigc++/signal.h>
33
31
 
34
32
#include "preferences.hpp"
53
51
                const NoteChangedSlot & start_created = NoteChangedSlot());
54
52
    ~NoteManager();
55
53
 
56
 
    void on_setting_changed(Preferences*, GConfEntry*);
 
54
    void on_setting_changed(const Glib::ustring & key);
57
55
    const Note::List & get_notes() const
58
56
      { 
59
57
        return m_notes;
116
114
    void post_load();
117
115
    bool first_run() const;
118
116
    void create_notes_dir() const;
119
 
    bool on_exiting_event();
 
117
    void on_exiting_event();
120
118
    std::string make_new_file_name() const;
121
119
    std::string make_new_file_name(const std::string & guid) const;
122
120
    Note::Ptr create_new_note (std::string title, const std::string & guid);