aboutsummaryrefslogtreecommitdiff
path: root/libindicate/server.c
Commit message (Collapse)AuthorAgeFilesLines
* Deleting everything only leaving libindicatorTed Gould2009-08-181-1516/+0
|
* Maintaining the count independent of the entires.Ted Gould2009-08-051-2/+2
|
* Fixing the other signal marshallersTed Gould2009-07-211-4/+4
|
* Using the server marshallerTed Gould2009-07-211-1/+2
|
* Fixing some documentation bugs.Ted Gould2009-04-301-2/+2
|
* Documenting most of the public visible functionsTed Gould2009-04-301-1/+133
|
* Adding in arguments on the signal docs.Ted Gould2009-04-301-0/+26
|
* Basic signals docs.Ted Gould2009-04-301-0/+50
|
* Fixes to the finalize functions.Ted Gould2009-04-131-0/+2
|\
| * Adding in call to the parent class' finalize function as well, this should ↵Ted Gould2009-04-131-0/+2
| | | | | | | | free all the way up to the top.
* | Some slight code cleanups to remove warningsTed Gould2009-04-121-3/+6
|\|
| * Fixing some pedantic little bugs to try and figure out what's causing 359018Ted Gould2009-04-111-3/+6
| |
* | Create the virtual function for checking interest.Ted Gould2009-04-101-0/+13
|/
* Patch from Eitan Isaacson to correct prototype. Had to be adjusted slightly ↵Ted Gould2009-04-071-4/+4
| | | | 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
|
* * Some debug messagesTed Gould2009-04-061-10/+16
| | | | | | | | * 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.
* Hiding all of the functions that part of the DBus interface in thatTed Gould2009-04-031-21/+21
| | | | | | | 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.
* 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-021-0/+62
|
* 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-021-25/+69
| | | | | | | | 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-011-0/+70
| | | | fill in the backend.
* Getting some interests in the game.Ted Gould2009-04-011-0/+1
|
* Bad truth in the hide function.Ted Gould2009-03-271-1/+1
|
* Adding a new signal in that handles the ID of zero, or null, commingTed Gould2009-02-151-5/+26
| | | | | | | 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.
* Adding in some debug messages and making the signal use the original key to ↵Ted Gould2009-02-121-0/+1
| | | | broadcast itself.
* Cleaning up some debug messages that aren't as useful anymoreTed Gould2009-02-111-2/+2
|
* Getting all the legal stuff in.Ted Gould2009-02-111-1/+29
|\
| * Adding a license to the top of all these files. LGPL 2/3Ted Gould2009-02-111-1/+29
| |
* | Adding to the convience functions for setting the desktop fileTed Gould2009-02-101-2/+9
| | | | | | | | | | and the type of the server.
* | Adding in functions to match the prototypes.Ted Gould2009-02-101-0/+21
|/
* Some formatting, reusing the private variable, making it so that hide sends ↵Ted Gould2009-02-091-11/+9
| | | | the type and only sending a message of finalize if we're still visible.
* Server hide function from NielTed Gould2009-02-091-0/+22
|\
| * Add the indicate_server_hide functionNeil Jagdish Patel2009-02-091-0/+22
| |
* | Changing the signals for show/hide to send the type correctly.Ted Gould2009-02-071-2/+2
|/
* Adding properties for doing type and desktopTed Gould2009-02-051-0/+84
|
* Changing the DBUS API slightly. Now there is no 'get_desktop' function as ↵Ted Gould2009-02-051-35/+21
| | | | desktop is a property. Added a property for type so that we can understand what kind of application this is. And finally adding show/hide signals on the server as they were already on the listener.
* Allow sub-classes of server to emit signals using three new public functionsNeil Jagdish Patel2009-02-031-0/+27
|
* Have the server pass along the property modified signalTed Gould2009-01-291-0/+8
|
* Making all of the server values move into a private section like all the ↵Ted Gould2009-01-291-29/+71
| | | | others. Generally a good thing and good clean up
* Cleaning up prototypes and type warnings.Ted Gould2009-01-141-12/+12
|