X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=blobdiff_plain;f=core%2Faccount.pxd;h=1f11147d1aed6314deb99cd4370f593b9a7fea14;hp=03b8333b4050c27fc5ea473ffd8291f5201bc844;hb=c2250da2a909481d87209e028fa5079377ba3519;hpb=e23f0f20a293c815facf83cd657d73e716d4818e diff --git a/core/account.pxd b/core/account.pxd index 03b8333..1f11147 100644 --- a/core/account.pxd +++ b/core/account.pxd @@ -1,21 +1,40 @@ -ctypedef enum gboolean: - FALSE, TRUE +# +# Copyright (c) 2008 INdT - Instituto Nokia de Tecnologia +# +# This file is part of python-purple. +# +# python-purple is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# python-purple is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# cdef extern from "libpurple/account.h": ctypedef struct PurpleAccount - cdef PurpleAccount *purple_account_new(char *username, char *protocol_id) + cdef PurpleAccount* purple_account_new(const_char_ptr username, const_char_ptr protocol_id) + cdef void c_purple_account_set_username "purple_account_set_username" (PurpleAccount *account, const_char_ptr username) + cdef void c_purple_account_set_password "purple_account_set_password" (PurpleAccount *account, const_char_ptr password) + cdef void c_purple_account_set_enabled "purple_account_set_enabled" (PurpleAccount *account, const_char_ptr ui, gboolean value) - cdef void purple_account_set_password(PurpleAccount *account, - char *password) - - cdef void purple_account_set_enabled(PurpleAccount *account, char *ui, - gboolean value) - -cdef extern from "libpurple/connection.h": - ctypedef struct PurpleConnection - - cdef PurpleAccount *purple_connection_get_account(PurpleConnection *gc) +class Account(object): + """ Account class """ + def __init__(self, username, protocol_id): + cdef PurpleAccount *self.purple_account = purple_account_new(username, protocol_id) + """ + def purple_account_set_password(self, account, password): + c_purple_account_set_password(account, password) + def purple_account_set_enabled(self, account, ui, value): + c_purple_account_set_enabled(account, ui, value) + """