~ubuntu-branches/debian/sid/steadyflow/sid

« back to all changes in this revision

Viewing changes to Steadyflow/IAppService.vala

  • Committer: Package Import Robot
  • Author(s): Maia Kozheva
  • Date: 2012-06-30 19:40:42 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120630194042-0dl4f8wjed5q76sg
Tags: 0.2.0-1
* New upstream release.
  - Now uses vala 0.16. (Closes: #675666)
  - Fixes broken Dutch translation. (Closes: #677465)
  - Clicking the tray icon shows the application window. (Closes: #642669)
* debian/control:
  - Updated dependencies (Vala 0.16, GTK3, GLib 2.30, removed libunique).
* Dropped all patches, merged upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    IAppService.vala
 
3
    Copyright (C) 2012 Maia Kozheva <sikon@ubuntu.com>
 
4
 
 
5
    This program is free software: you can redistribute it and/or modify
 
6
    it under the terms of the GNU General Public License as published by
 
7
    the Free Software Foundation, either version 3 of the License, or
 
8
    (at your option) any later version.
 
9
 
 
10
    This program is distributed in the hope that it will be useful,
 
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
    GNU General Public License for more details.
 
14
 
 
15
    You should have received a copy of the GNU General Public License
 
16
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
*/
 
18
 
 
19
namespace Steadyflow {
 
20
 
 
21
// D-Bus public API for the application
 
22
[DBus (name = "net.launchpad.steadyflow.App")]
 
23
public interface IAppService: GLib.Object {
 
24
        public abstract void add_file (string url) throws IOError;
 
25
        
 
26
        public abstract void set_visible (bool visible) throws IOError;
 
27
}
 
28
 
 
29
}