summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Revamp the documentation to modernize and uniformize accross componentsRomain Bouvier2021-01-304-78/+23
| | | | - Also fixes some autohells deprecations
* Add missing functions to gtk-²docRomain B2017-07-201-0/+3
| | | | | | - Also uniformize titles names in docs Signed-off-by: Ali Abdallah <ali@xfce.org>
* Add missing API indicies, bump documentation dates and creditsRomain B2017-07-203-2/+48
| | | | Signed-off-by: Ali Abdallah <ali@xfce.org>
* Better documentation processingRomain B2017-06-2311-1034/+1
| | | | | - No more sgml things. - You only need to add new functions to docs/xfconf-sections.txt to add them to the doc.
* Add xfconf_g_property_bind_gdkrgba to docRomain B2017-06-231-0/+1
|
* Added xfconf-common-private.h to the list of ignored headers.Ali Abdallah2016-04-251-1/+2
|
* Get rid of all DBUS_GLIB_{CFLAGS,LIBS} and removeAli Abdallah2016-04-241-5/+4
| | | | | | all the #include of dbus-glib.h. Xfconfd does not depend on dbus-glib anymore!
* Autotools updates.Nick Schermer2013-01-061-1/+1
|
* Fix licenses and use new FSF address.Nick Schermer2011-03-251-0/+17
|
* Release 4.8.0!xfconf-4.8.0Jannis Pohlmann2011-01-166-0/+19
|
* Link the gtkdoc scanner to GObject and Glib (bug #6407).David Mohr2010-04-241-1/+3
|
* Add doc module to fixxref options (bug #6304).Nick Schermer2010-03-111-1/+1
|
* add -Wno-sign-compare to the gtk-doc Makefile.amBrian J. Tarricone2009-09-182-1/+7
| | | | there's a bug in gtk-doc's generated scanner .c file. lame.
* Add dist-hook: all to the API reference makefile. Required for gtk-doc.Jannis Pohlmann2009-09-181-0/+3
|
* remove xfconf_channel_remove_property() and _properties(). might asBrian Tarricone2008-11-063-20/+16
| | | | | | well get rid of them since i already bumped the lib version (Old svn revision: 28627)
* change xfconf gbinding API -- bind functions return a gulong id that canBrian Tarricone2008-10-272-5/+16
| | | | | | | be used to remove the binding. _unbind_all() now accepts either a channel or a bound gobject. libtool version number bumped. (Old svn revision: 28477)
* add xfconf_channel_new_with_property_base()Brian Tarricone2008-10-183-1/+17
| | | | (Old svn revision: 28290)
* rename RemoveProperty() to ResetProperty() all over the placeBrian Tarricone2008-09-283-3/+15
| | | | | | | | | might as well just bite the bullet and do this. no incompat library changes, but xfconfd will need to be restarted (usually) after installing this version. i just want everything to be as clean and legacy-free as possible when we get to 4.6.0 final... (Old svn revision: 27974)
* add and implement IsPropertyLocked() dbus method, add libxfconf getterBrian Tarricone2008-09-283-0/+12
| | | | | | | this is buggy right now because the perchannel-xml backend doesn't handle locking properly at all. bug fixes forthcoming. (Old svn revision: 27973)
* Remove xfsettingsd docsStephan Arts2008-09-253-55/+1
| | | | (Old svn revision: 27959)
* add xfconf_channel_get() and xfconf_channel_reset_property().Brian Tarricone2008-09-223-1/+22
| | | | | | | | deprecate xfconf_channel_remove_property() and xfconf_channel_remove_properties(). increase libtool interface version and age. (Old svn revision: 27926)
* add xfconf_g_property_bind_gdkcolor(), a nifty hackBrian Tarricone2008-08-272-0/+12
| | | | | | | | it binds the red/green/blue members of the GdkColor struct to an xfconf property without getting that pesky first 'pixel' struct member in the way (Old svn revision: 27590)
* Implement xfconf_g_property_unbind_all(GObject *object),Nick Schermer2008-07-292-0/+9
| | | | | | | see Bug #4252. (Old svn revision: 27399)
* add ListChannels() method to dbus iface and xfconf_list_channels()Brian Tarricone2008-07-292-1/+1
| | | | (Old svn revision: 27395)
* update docsBrian Tarricone2008-07-271-1/+4
| | | | (Old svn revision: 27391)
* make RemoveProperty and GetAllProperties interfaces easier to useBrian Tarricone2008-07-274-14/+33
| | | | | | | all removing multiple properties at once based on a subtree of the property tree. ditto for getting multiple properties at once (Old svn revision: 27376)
* * Fix make distcheck (renamed .txt file in Makefile.am), and increased the ↵Stephan Arts2008-07-141-1/+1
| | | | | | WAIT_TIMEOUT of the tests. (Old svn revision: 27288)
* fix missing dir in SUBDIRSBrian Tarricone2008-07-071-1/+2
| | | | (Old svn revision: 27224)
* Add an xfsettingsd section to the docsStephan Arts2008-06-142-0/+53
| | | | (Old svn revision: 27058)
* validate channel namesBrian Tarricone2008-04-281-0/+1
| | | | (Old svn revision: 26898)
* update docs, poBrian Tarricone2008-04-285-2/+50
| | | | (Old svn revision: 26896)
* treat uint16/int16 as uint32/int32 when sending data over dbusBrian Tarricone2008-04-202-3/+10
| | | | | | | | | | | | | annoyingly, dbus-glib doesn't support sending 16-bit signed or unsigned integers over the bus, since no 16-bit GTypes exist. the ability to expose custom GValue marshallers is not exposed in dbus-glib's API, so custom GTypes cannot be added. so, internally, we handle 16-bit values as if they were 32-bit values. the 16-bit types are kept so that the struct-related functions still work. (Old svn revision: 26874)
* remove libxfconf-gtk and move binding functionality to libxfconfBrian Tarricone2008-04-155-59/+55
| | | | | | | | binding functionality is not gobject-based (uses properties) and doesn't require gtk at all (Old svn revision: 26841)
* rename xfconf_gtk_widget_bind_property() s/widget/editable, fix some bugsBrian Tarricone2008-04-093-3/+13
| | | | | | | | | different widget types are going to have to be handled differently, with different parameters. check buttons will always be boolean types, radio buttons will need to have some sort of identifier associated with them, etc. (Old svn revision: 26804)
* add first pass at xfconf-gtk convenience libraryBrian Tarricone2008-04-094-1/+62
| | | | | | | it only supports widgets that implement GtkEditable, but more to come soon (Old svn revision: 26803)
* add missing api docBrian Tarricone2008-04-091-1/+3
| | | | (Old svn revision: 26799)
* make the PropertyChanged signal workBrian Tarricone2008-04-071-0/+1
| | | | (Old svn revision: 26786)
* update spec and docsBrian Tarricone2008-01-142-13/+8
| | | | (Old svn revision: 26775)
* make the array stuff work, in theory.Brian Tarricone2008-01-142-0/+9
| | | | | | | | | | | | | i think this should work now. GArrays of GValues don't seem to work, unfortunately, but GPtrArrays of GValues do. passing GValueArrays directly to dbus-glib works, but it's difficult if not impossible to figure out what they are on the other end. anyhow, so the array stuff works by passing a GPtrArray of GValues to dbus-glib (after stuffing the GPtrArray in its own GValue). (Old svn revision: 26774)
* add gnuc visibility stuffBrian Tarricone2007-11-061-2/+0
| | | | (Old svn revision: 26769)
* fix make distBrian Tarricone2007-10-271-1/+1
| | | | (Old svn revision: 26768)
* start migration to new library API with array types and struct serializers.Brian Tarricone2007-10-2510-31/+395
| | | | | | | | this isn't completely done and doesn't quite work (needs some more daemon backend work), but what's in svn doesn't work properly right now either (Old svn revision: 26766)
* * move XfconfBackendError to a more public place and rename it to XfconfErrorBrian Tarricone2007-10-035-10/+58
| | | | | | | | | * allow xfconfd to load multiple backends, the first of which is read/write, and the others are read-only * update docs (Old svn revision: 26762)
* implement most of the the perchannel-xml reading and parsing code. it's notBrian Tarricone2007-09-141-13/+35
| | | | | | | | | | | | | complete, and it completely differs from the write code (right now, it can't properly read the files it writes), and there are some problems parsing string lists (sometimes), which i know how to fix. also there's a new locking scheme that dupilcates the functionality currently in XfceKiosk. regardless, it's totally not usable right now, but i need to commit so i can work on this elsewhere. (Old svn revision: 26734)
* add some preliminary specs/behavior descriptionsBrian Tarricone2007-09-075-2/+133
| | | | (Old svn revision: 26733)
* whoops, forgot the makefileBrian Tarricone2007-09-061-0/+2
| | | | (Old svn revision: 26727)
* add prelim dtd for the perchannel-xml backendBrian Tarricone2007-09-062-1/+17
| | | | (Old svn revision: 26726)
* * add RemoveChannel() to the dbus interface and client libBrian Tarricone2007-09-062-0/+13
| | | | | | | * rename some dbus methods so it's more clear what they do (Old svn revision: 26722)
* add gtk-doc framework and fix up docs everywhereBrian Tarricone2007-09-0511-0/+627
(Old svn revision: 26717)