~ubuntu-branches/ubuntu/trusty/ricochet/trusty

« back to all changes in this revision

Viewing changes to ricochet-0.1/debian/ricochet/usr/share/ricochet/client-window.5c

  • Committer: Package Import Robot
  • Author(s): Keith Packard
  • Date: 2012-05-30 15:19:02 UTC
  • Revision ID: package-import@ubuntu.com-20120530151902-z47w0cxilb0p6wmi
Tags: 0.2
* Rename 'rrclient' to 'ricochet'
* Add name/host selection dialog
* Add build dependency on 'nickle'. Closes: #674302.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2012 Keith Packard <keithp@keithp.com>
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; version 2 of the License.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
 * General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
15
 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
 
16
 */
 
17
 
 
18
autoload Cairo;
 
19
autoload Nichrome;
 
20
autoload Nichrome::Button;
 
21
autoload Nichrome::Box;
 
22
autoload Nichrome::Label;
 
23
autoload Nichrome::Toggle;
 
24
autoload Nichrome::RRboard;
 
25
 
 
26
autoload RR;
 
27
autoload Client;
 
28
autoload Client::SVG;
 
29
 
 
30
extend namespace Client {
 
31
        public namespace Window {
 
32
                import Nichrome;
 
33
 
 
34
                void play() {
 
35
                }
 
36
        }
 
37
}