~ubuntu-branches/ubuntu/lucid/tomboy/lucid-proposed

« back to all changes in this revision

Viewing changes to Tomboy/IRemoteControl.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-11-24 22:19:43 UTC
  • mfrom: (1.3.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20091124221943-m7xof5252wx3a700
Tags: 1.1.0-0ubuntu1
* New upstream version:
  - Add support for Ubuntu One and others using OAuth 1.0a 
  - Fix printing in Windows Vista and Windows 7 
  - Various Windows bug fixes 
  - Add CreateNamedNoteWithUri method to dbus interface 
  - Add dbus methods for working with notebooks 
  - Always show icons for note items in recent notes menu 
  - Add Sync menu item to panel applet 
  - Stop cutting off message text in the Sync dialog 
  - Other fixes: #596416, #596395, #597139
  - Translation updates
* debian/patches/02_support_oauth_1.0a.patch:
  - the change is in the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
using System;
 
1
using System;
2
2
 
3
3
namespace Tomboy
4
4
{
5
5
        public interface IRemoteControl
6
6
        {
 
7
                bool AddNotebook (string notebook_name);
 
8
                bool AddNoteToNotebook (string uri, string notebook_name);
7
9
                bool AddTagToNote (string uri, string tag_name);
8
10
                string CreateNamedNote (string linked_title);
 
11
                string CreateNamedNoteWithUri (string linked_title, string uri);
9
12
                string CreateNote ();
10
13
                bool DeleteNote (string uri);
11
14
                bool DisplayNote (string uri);
14
17
                void DisplaySearchWithText (string search_text);
15
18
                string FindNote (string linked_title);
16
19
                string FindStartHereNote ();
17
 
                string [] GetAllNotesWithTag (string tag_name);
 
20
                string [] GetAllNotesInNotebook (string notebook_name);
 
21
                string [] GetAllNotesWithTag (string tag_name);
 
22
                string GetNotebookForNote (string uri);
18
23
                long GetNoteChangeDate (string uri);
19
24
                string GetNoteCompleteXml (string uri);
20
25
                string GetNoteContents (string uri);