~ubuntu-branches/ubuntu/natty/dee/natty

« back to all changes in this revision

Viewing changes to dee/dee-shared-model.xml

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-06-07 11:11:12 UTC
  • Revision ID: james.westby@ubuntu.com-20100607111112-hfpzyhy4o0rhps5a
Tags: upstream-0.2.4
ImportĀ upstreamĀ versionĀ 0.2.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<!--
 
3
This library defines a peer to peer based model which is exported over the bus.
 
4
 
 
5
Copyright 2009 Canonical Ltd.
 
6
 
 
7
Authors:
 
8
    Neil Jagdish Patel <neil.patel@canonical.com>
 
9
    Mikkel Kamstrup Erlandsen <mikkel.kamstrup@canonical.com>
 
10
 
 
11
This program is free software: you can redistribute it and/or modify it 
 
12
under the terms of either or both of the following licenses:
 
13
 
 
14
1) the GNU Lesser General Public License version 3, as published by the 
 
15
Free Software Foundation; and/or
 
16
2) the GNU Lesser General Public License version 2.1, as published by 
 
17
the Free Software Foundation.
 
18
 
 
19
This program is distributed in the hope that it will be useful, but 
 
20
WITHOUT ANY WARRANTY; without even the implied warranties of 
 
21
MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR 
 
22
PURPOSE.  See the applicable version of the GNU Lesser General Public 
 
23
License for more details.
 
24
 
 
25
You should have received a copy of both the GNU Lesser General Public 
 
26
License version 3 and version 2.1 along with this program.  If not, see 
 
27
<http://www.gnu.org/licenses/>
 
28
-->
 
29
<node>
 
30
  <interface name="com.canonical.Dee.Model">
 
31
    <annotation name="com.canonical.DBus.GLib.CSymbol" value="dee_shared_model"/>
 
32
 
 
33
    <!-- Methods -->
 
34
    <method name="Clone">
 
35
      <arg name="columns" type="s" direction="out" />
 
36
      <arg name="rows" type="aav" direction="out" />
 
37
      <arg name="seqnums" type="at" direction="out" />      
 
38
    </method>
 
39
 
 
40
    <method name="Invalidate"/>
 
41
 
 
42
    <!-- Signals -->
 
43
    <signal name="RowsRemoved">
 
44
      <arg name="positions"  type="au" />
 
45
      <arg name="seqnums"  type="at" />
 
46
    </signal>
 
47
 
 
48
    <signal name="RowsAdded">
 
49
      <arg name="rows"  type="aav" />
 
50
      <arg name="positions"  type="au" />
 
51
      <arg name="seqnums"  type="at" />
 
52
    </signal>
 
53
 
 
54
    <signal name="RowsChanged">
 
55
      <arg name="rows"  type="aav" />
 
56
      <arg name="positions"  type="au" />
 
57
      <arg name="seqnums"  type="at" />
 
58
    </signal>
 
59
 
 
60
    <!-- Properties -->
 
61
    <property name="Size" type="u" access="read"/>
 
62
 
 
63
    <property name="Seqnum" type="t" access="read"/>
 
64
 
 
65
    <property name="Columns" type="s" access="read"/>
 
66
    
 
67
  </interface>
 
68
</node>