~elementary-apps/cable/pastebin

« back to all changes in this revision

Viewing changes to src/Irc/Client.vala

  • Committer: eduardgotwig at gmail
  • Author(s): Julien Spautz
  • Date: 2013-08-12 16:44:37 UTC
  • mfrom: (79.1.37 model-view)
  • Revision ID: eduardgotwig@gmail.com-20130812164437-wlojp66wpptckn96
Merged  lp:~julien-spautz/cable/model-view 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***
 
2
    Copyright (C) 2013 Cable Developers
 
3
 
 
4
    This program or library is free software; you can redistribute it
 
5
    and/or modify it under the terms of the GNU Lesser General Public
 
6
    License as published by the Free Software Foundation; either
 
7
    version 3 of the License, or (at your option) any later version.
 
8
 
 
9
    This library is distributed in the hope that it will be useful,
 
10
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 
12
    Lesser General Public License for more details.
 
13
 
 
14
    You should have received a copy of the GNU Lesser General
 
15
    Public License along with this library; if not, write to the
 
16
    Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
17
    Boston, MA 02110-1301 USA.
 
18
***/
 
19
 
 
20
class Cable.Irc.Client : GLib.Object {
 
21
 
 
22
    /**
 
23
     * Names of the servers we are currently connected to.
 
24
     */
 
25
    public static string[] server_names {
 
26
        owned get {
 
27
            try {
 
28
                return client.servers ();
 
29
            } catch (GLib.IOError e) {
 
30
                warning (e.message);
 
31
            }
 
32
            
 
33
            return {};
 
34
        }
 
35
    }
 
36
    
 
37
    /**
 
38
     * All known servers.
 
39
     */
 
40
    public static string[] known_server_names {
 
41
        owned get {
 
42
            try {
 
43
                return client.server_list ("", "");
 
44
            } catch (GLib.IOError e) {
 
45
                warning (e.message);
 
46
            }
 
47
            
 
48
            return {};
 
49
        }
 
50
    }
 
51
 
 
52
    /*public static string config_get (string group, string key) throws GLib.IOError {
 
53
        return client.config_get (group, key);
 
54
    }
 
55
 
 
56
    public static void config_set (string group, string key, string value) throws GLib.IOError {
 
57
        client.action (group, key, value);
 
58
    }*/
 
59
}