aboutsummaryrefslogtreecommitdiff
path: root/libindicate
Commit message (Collapse)AuthorAgeFilesLines
* Adding in call to the parent class' finalize function as well, this should ↵Ted Gould2009-04-133-0/+4
| | | | free all the way up to the top.
* Fixing some pedantic little bugs to try and figure out what's causing 359018Ted Gould2009-04-113-9/+12
|
* Clearing another warning. Shame gdk doesn't do this one for us.Ted Gould2009-04-071-1/+1
|
* Patch from Eitan Isaacson to correct prototype. Had to be adjusted slightly ↵Ted Gould2009-04-072-5/+5
| | | | as the prototypes had moved.
* Patch from Eitan Isaacson to remove a ref/unref infinite loop that ↵Ted Gould2009-04-071-3/+7
| | | | effectively made it so that we kept our objects forever. While we love them, at some point we need to say goodbye.
* Making it so that we don't register the object twice. This is reallyTed Gould2009-04-071-3/+9
| | | | | | a work around, but it's atleast fixes the crasher. Which sucked. We need to work with the dbus folks to make this better.
* Hiding some debugging messages.Ted Gould2009-04-071-6/+6
|
* Simplifying error messageTed Gould2009-04-071-1/+1
|
* * Some debug messagesTed Gould2009-04-062-17/+24
| | | | | | | | * Making the comparison of interests detect changings properly * Correctly use g_list_remove in several cases making for long lists * Using g_list_prepend instead of append because it's faster. * Checking whether we've got proxies before destroying them.
* Moving private interests out of the public header file.Ted Gould2009-04-032-1/+2
|
* Hiding all of the functions that part of the DBus interface in thatTed Gould2009-04-034-28/+32
| | | | | | | now they're all prefixed with '_' so that they don't get exported as part of the library symbols. This should simplify everything a little bit for implementors.
* Getting rid of everything starting with 'd'. This gets rid of the dbus ↵Ted Gould2009-04-031-1/+1
| | | | stuff that isn't set up to be static, which is silly.
* Hiding the marshsallers from the libraries in the symbols by adding a _ in ↵Ted Gould2009-04-032-8/+8
| | | | front of them.
* Cleaning up the exported symbols, make sure that 'get_type_cb' isn't exportedTed Gould2009-04-031-2/+2
|
* Fleshing out the functions in the listener to set interests.Ted Gould2009-04-032-2/+60
|
* Putting in some protection from crazy valuesTed Gould2009-04-021-0/+8
|
* Hiding debugTed Gould2009-04-021-7/+7
|
* Adding a bunch of debugging messages and fixing the lifecycle for the folk ↵Ted Gould2009-04-021-8/+24
| | | | pointer. Lots'o'fun. But things seem to be working.
* Filling in the dbus owner changing code. Now we should catch those.Ted Gould2009-04-021-0/+38
|
* Connecting in the DBus messaging that we need.Ted Gould2009-04-021-4/+40
|
* Fleshing out the interest setting and removing functions.Ted Gould2009-04-021-5/+56
|
* Adding in folks support.Ted Gould2009-04-022-1/+63
|
* Adding the interest removed and interest added signals in.Ted Gould2009-04-021-0/+16
|
* Woot! Now we have some real functions to call!Ted Gould2009-04-021-0/+29
|
* I can't believe I messed up this one. Luckily it doesn't seem to haveTed Gould2009-04-021-11/+11
| | | | | caused any bugs. Man.
* Switching around the show_interest and remove_interest functions so thatTed Gould2009-04-023-39/+74
| | | | | | | | they are now asyncronous. Not that being asynchronous is important but more that now they get the Method Invocation interface that we can use to find out the sender of the message. Changed various APIs as a result of this, and moved the DBus functions to be internal.
* Adding new functions show_interest and remove_interest into the API. Now to ↵Ted Gould2009-04-014-6/+86
| | | | fill in the backend.
* Adding a remove and show interestTed Gould2009-04-011-4/+8
|
* Change the API so it's more like we're keeping a list of what, and who are ↵Ted Gould2009-04-011-2/+7
| | | | interested in. This'll make it easier for us to manage all the DBus nastyness.
* MisspellingTed Gould2009-04-011-1/+1
|
* Getting some interests in the game.Ted Gould2009-04-016-3/+112
|
* Switch to searching on the connection, which is really what we care about ↵Ted Gould2009-04-011-3/+5
| | | | and the proxy is a poor sustitute for.
* First pass at the pretty meag-change to make it so that we can detect people ↵Ted Gould2009-04-012-46/+88
| | | | on the system vs. the session bus. Basically reworking a bunch of structures. Fun.
* Bad truth in the hide function.Ted Gould2009-03-271-1/+1
|
* Making it so that the GIR stuff autodetects and only builds if available.Ted Gould2009-03-171-0/+3
|
* Fixes for distcheck0.1.2Ted Gould2009-03-121-0/+2
|
* Fix doubling of prototypes, patch from EitanTed Gould2009-03-091-3/+0
|
* Linking in the build interfaces, needed a temporary function to get linking ↵Ted Gould2009-02-252-0/+10
| | | | right
* Forgot to put these in built sourcesTed Gould2009-02-251-0/+2
|
* true is TRUETed Gould2009-02-251-2/+2
|
* Adding build instructions for the listener interfaceTed Gould2009-02-251-0/+14
|
* Merging in changes to put back in the GObject introspection and to have ↵Ted Gould2009-02-251-24/+28
|\ | | | | | | better build characteristics.
| * Adding back in the GIR files and some distclean improvements to get back to ↵Ted Gould2009-02-251-0/+4
| | | | | | | | NULL.
| * releasing version 0.1.1-0ubuntu3~ppa1Ted Gould2009-02-251-24/+24
| |
* | Adding in the listeners interfaceTed Gould2009-02-251-0/+1
| |
* | An interface to get the list of servers from another listenerTed Gould2009-02-221-0/+41
| |
* | Adding information on how the server was added, but not really usingTed Gould2009-02-221-4/+12
|/ | | | | it for anything yet. I'm not sure that we can -- bother.
* Oops, should get the screw up right...Ted Gould2009-02-161-1/+1
|
* Adding a couple of files to the distribution to pass distcheckTed Gould2009-02-161-1/+3
|
* Adding a new signal in that handles the ID of zero, or null, commingTed Gould2009-02-152-5/+38
| | | | | | | back from a listener and uses that to show the server. Or atleast signal it to figure out how to do that. Also cleaning up the signals a little to use defines.