aboutsummaryrefslogtreecommitdiff
path: root/libdbusmenu-glib
Commit message (Collapse)AuthorAgeFilesLines
...
* Basic support for the sensitive property.Ted Gould2009-09-021-0/+1
|
* Making sure that type is not NULL. Comment from Neil.Ted Gould2009-08-271-0/+1
|
* Check the return of g_new0 for NULL. Comment by Neil.Ted Gould2009-08-271-5/+9
|
* Comment for Neil. Checking data.Ted Gould2009-08-271-0/+2
|
* Adding in a default type handler, incase it's configured, but not set by ↵Ted Gould2009-08-261-0/+2
| | | | clients.
* Adding some defines for some common property values.Ted Gould2009-08-261-0/+5
|
* Spelling fix.Ted Gould2009-08-261-1/+1
|
* Ah, bother. Check NULL. Brain fart.Ted Gould2009-08-251-1/+1
|
* It turns out that when you define functions in a header file, they don't ↵Ted Gould2009-08-251-0/+43
| | | | just write themselves from your thoughts. Who's supposed to tell me these things? Anyway, now we have a way to register type handlers, like the header file said we should.
* Forgot some signal documentation.Ted Gould2009-08-251-0/+1
|
* Switching the prototype for type handlers so that it passes the client as well.Ted Gould2009-08-252-2/+2
|
* Okay, building in some type handlers now.Ted Gould2009-08-251-0/+4
|
* Signaling the realized event after it has all it's parameters.Ted Gould2009-08-252-0/+3
|
* Creating a realized signal on the menu items.Ted Gould2009-08-252-1/+21
|
* Making things a little more type safe. Only one evil cast.Ted Gould2009-08-201-13/+21
|
* Makin' it so that if we have a type handler we use that, otherwise we pass ↵Ted Gould2009-08-202-3/+21
| | | | things up. Also making it so that type handlers can report an error.
* Switching the new signal to be after the properties are gotten and adding a ↵Ted Gould2009-08-202-5/+41
| | | | hashtable for type handlers.
* Heh, turns out we need to actually signal people across DBus or nothing ↵Ted Gould2009-07-201-0/+21
| | | | works. Who'd a thought.
* Bad prototype for dealing with the new items added signal which also has the ↵Ted Gould2009-07-011-2/+2
| | | | position in it. This made it so the server was the position, which causes bad stuff to happen.
* Hiding a debug messageTed Gould2009-06-261-1/+1
|
* Add the property of the menuitems to check to see if they're the root node ↵Ted Gould2009-06-263-0/+47
| | | | or not. Also set that when the layout is being parsed.
* Switching the loss of the proxies to be warnings instead of errors as we can ↵Ted Gould2009-06-261-2/+2
| | | | recover from it and handle it gracefully if we need to.
* Flipping arround the original update of the layout to be after building the ↵Ted Gould2009-06-261-3/+3
| | | | proxies, not something driven by new. Also ensuring that the callback pointer is reset when we're in it so that it doesn't get called recursively.
* Signaling on root changes.Ted Gould2009-06-231-1/+8
|
* Signaling the new menuitem.Ted Gould2009-06-231-4/+5
|
* Adding two new signals to the client. 'root-changed' and 'new-menuitem' to ↵Ted Gould2009-06-232-0/+39
| | | | make it so that this can go up the stack easier.
* Now we're also signalling when a child gets moved around.Ted Gould2009-06-232-1/+13
|
* Adding in the 'moved' signal and make it so that the 'added' signal has the ↵Ted Gould2009-06-233-6/+30
| | | | position in it.
* Updating to the latest from gtkmenuTed Gould2009-06-181-1/+2
|\
| * Updates from trunk with the properites branch.Ted Gould2009-06-051-1/+2
| |\
| | * Making the ID update function rebuild all of the properties. Result of a ↵Ted Gould2009-06-051-1/+2
| | | | | | | | | | | | code review comment by Cody Russell.
* | | Making it so that if we clear the menu structure by destroying the proxies ↵Ted Gould2009-06-181-0/+1
| | | | | | | | | | | | we also signal that to the callers.
* | | Handle the server removing itself from the bus and putting us into a dark ↵Ted Gould2009-06-181-2/+25
| | | | | | | | | | | | world waiting for it to rejoin the world.
* | | If we can't get a proxy on the stuff that we want, we're going to set up a ↵Ted Gould2009-06-181-0/+73
| | | | | | | | | | | | DBus one and just wait for it to show up. When it showes up, then we'll pounce
* | | Handling the concept of not having a property proxy.Ted Gould2009-06-181-1/+10
|/ /
* | Same cut and paste bug, you'd think I'd be smart enough to check this when I ↵Ted Gould2009-05-261-1/+1
| | | | | | | | fixed the last one. Dumbass.
* | Adding a reorder and prepend convience functions so that they emit the right ↵Ted Gould2009-05-262-0/+49
| | | | | | | | signals.
* | Too many values on signalTed Gould2009-05-261-1/+1
| |
* | Unref'ing root when we disposeTed Gould2009-05-251-0/+5
| |
* | Playing with debug stuffTed Gould2009-05-251-0/+4
| |
* | Unref'ing the children if we're being killed ourselvesTed Gould2009-05-251-0/+9
| |
* | Unref'ing the object put into the GValue as it gets reffed there.Ted Gould2009-05-251-0/+1
|/
* Disabling a large number of debug messages. Most aren't needed anymore.Ted Gould2009-05-193-10/+10
|
* Debug message on setting properties.Ted Gould2009-05-191-0/+1
|
* Recycle the server's marshaller and register it with DBus as we don't have ↵Ted Gould2009-05-191-0/+2
| | | | one for IdPropUpdate. The server and the client can use the same one.
* Now we're calling the get_properties function on every menuitem that we ↵Ted Gould2009-05-191-4/+28
| | | | build. Fun.
* Use the new proprties_copy function to make DBus work :)Ted Gould2009-05-191-0/+2
|
* A function to copy the properties off of a menuitem.Ted Gould2009-05-192-0/+36
|
* Ah, finally found the right prototype for dicts, whoo hoo, just love dynamic ↵Ted Gould2009-05-191-2/+2
| | | | typing in C.
* Adding a log domain, this fixes an issue with getting the error quark in the ↵Ted Gould2009-05-151-1/+1
| | | | server dbus interface.