summaryrefslogtreecommitdiff
path: root/gio/src/icon.hg
Commit message (Collapse)AuthorAgeFilesLines
* Strip trailing whitespace.Mark Vender2012-10-291-1/+1
| | | | | | | * gio/giomm/*.[h|cc]: * gio/src/*.[hg|ccg]: * glib/glibmm/*.[h|cc]: * glib/src/*.[hg|ccg]: Strip trailing whitespace. Bug #681072.
* Remove the reduced API options and code, as discussed on mailing list.Murray Cumming2010-05-311-4/+0
| | | | | | | | | * configure.ac: Removed the --enable-api-exceptions, --enable-api-properties, --enable-api-vfuncs and --enable-api-default-signal-handlers options. * build/reduced.m4: Removed. * tools/m4/*.m4: * tools/pm/Output.pm: Remove any use of ifdefs and auto_ptr for reduced API. * *.[hg|ccg|h|cc]: Remove the idefed code.
* Rename @since back to @newinDaniel Elstner2009-08-201-1/+1
| | | | | | | | | | | | * docs/reference/Doxyfile.in (ALIASES): Rename the @since alias back to its old name @newin, but otherwise keep the parameters. Apparently there is a @since command predefined in Doxygen which I hadn't noticed. It does seem to get overridden silently, but it is better not to rely on this. * tools/pm/DocsParser.pm (convert_tags_to_doxygen): Output @newin instead of @since. * {glib,gio}/src/*.hg, {glib,gio}/{glib,gio}mm/*.h: Replace all uses of @since with @newin.
* Implement parametric Doxygen alias @since{m,n}Daniel Elstner2009-08-181-1/+1
| | | | | | | | | | | | * docs/reference/Doxyfile.in (ALIASES): Define a parametrized alias @since{major,minor} to replace the old @newin?p?* aliases which had to be defined manually for every version number used. (PREDEFINED): Predefine G_GNUC_NORETURN, G_GNUC_NULL_TERMINATED and G_GNUC_PURE to the empty expansion. Remove GTKMM_* macros. * tools/pm/DocsParser.pm (convert_tags_to_doxygen): Change "Since:" substitution to output the new generic @since alias. * {glib,gio}/src/*.hg, {glib,gio}/{glib,gio}mm/*.h: Change all uses of @newin?p?* to @since{major,minor}.
* Change license header to mention Lesser General Public License version 2.1Deng Xiyue2009-01-191-4/+4
| | | | | | | | | | 2009-01-20 Deng Xiyue <manphiz@gmail.com> * Change license header to mention Lesser General Public License version 2.1 instead of Library General Public License, to be consistent with COPYING. svn path=/trunk/; revision=779
* Add a bunch of new / missed APIJonathon Jongsma2008-12-121-0/+10
| | | | svn path=/trunk/; revision=754
* Comment out _WRAP_VFUNC() lines because we decided that they are notMurray Cumming2008-02-201-1/+1
| | | | | | | | | | | | | | | | | | 2008-02-20 Murray Cumming <murrayc@murrayc.com> * gio/src/appinfo.hg: * gio/src/bufferedinputstream.hg: * gio/src/drive.hg: * gio/src/file.hg: * gio/src/filemonitor.hg: * gio/src/icon.hg: * gio/src/seekable.hg: * gio/src/volume.hg: * gio/src/volumemonitor.hg: Comment out _WRAP_VFUNC() lines because we decided that they are not useful (people will not create new implementations with giomm) and are a potential source of errors. svn path=/trunk/; revision=606
* Do not include gio.h from our public headers, to avoid polluting theMurray Cumming2008-01-271-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-01-27 Murray Cumming <murrayc@murrayc.com> * gio/src/appinfo.hg: * gio/src/asyncresult.hg: * gio/src/cancellable.hg: * gio/src/drive.hg: * gio/src/error.hg: * gio/src/file.hg: * gio/src/fileattribute.hg: * gio/src/fileenumerator.hg: * gio/src/fileicon.hg: * gio/src/fileinfo.hg: * gio/src/fileinputstream.hg: * gio/src/fileoutputstream.hg: * gio/src/filterinputstream.hg: * gio/src/icon.hg: * gio/src/inputstream.hg: * gio/src/loadableicon.hg: * gio/src/mount.hg: * gio/src/mountoperation.hg: * gio/src/outputstream.hg: * gio/src/seekable.hg: * gio/src/simpleasyncresult.hg: * gio/src/volume.hg: Do not include gio.h from our public headers, to avoid polluting the namespace. svn path=/trunk/; revision=544
* Removed operator= and operator!= for these RefPtr<> specializations,Murray Cumming2008-01-171-15/+0
| | | | | | | | | | | 2008-01-18 Murray Cumming <murrayc@murrayc.com> * gio/src/appinfo.hg: * gio/src/icon.hg: Removed operator= and operator!= for these RefPtr<> specializations, because they are unobvious and conflict with the generic ones. svn path=/trunk/; revision=520
* Added class documentation.Murray Cumming2008-01-111-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-01-11 Murray Cumming <murrayc@murrayc.com> * gio/src/appinfo.hg: Added class documentation. * gio/src/asyncresult.hg: * gio/src/cancellable.hg: * gio/src/drive.hg: * gio/src/file.hg: * gio/src/fileattribute.hg: * gio/src/fileenumerator.hg: * gio/src/fileicon.hg: * gio/src/fileinfo.hg: * gio/src/fileinputstream.hg: * gio/src/fileoutputstream.hg: * gio/src/icon.hg: * gio/src/inputstream.hg: * gio/src/loadableicon.hg: * gio/src/mountoperation.hg: * gio/src/outputstream.hg: * gio/src/seekable.hg: * gio/src/simpleasyncresult.hg: * gio/src/volume.hg: Added @newin2p16 to the documentation. * glib/src/Makefile_list_of_hg.am_fragment: * glib/src/uriutils.ccg: * glib/src/uriutils.hg: Added wrappers of (some) of these new g_uri_* functions. Not yet documented. svn path=/trunk/; revision=506
* Added the Seekable interface, though it has not methods yet.Murray Cumming2008-01-111-0/+13
| | | | | | | | | | | | | | | | | | | | | 2008-01-11 Murray Cumming <murrayc@murrayc.com> * gio/src/Makefile_list_of_hg.am_fragment: * gio/src/seekable.ccg: * gio/src/seekable.hg: Added the Seekable interface, though it has not methods yet. * gio/src/fileinputstream.hg: * gio/src/fileoutputstream.hg: Derive/implement Seekable. * gio/src/icon.hg: * gio/src/inputstream.hg: * gio/src/loadableicon.hg: * gio/src/mountoperation.hg: * gio/src/outputstream.hg: * gio/src/simpleasyncresult.hg: * gio/src/volume.hg: Added class documentation, based on the C documentation. svn path=/trunk/; revision=504
* Made some whitespace more consistent with the rest of glibmm. InMurray Cumming2008-01-081-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-01-08 Murray Cumming <murrayc@murrayc.com> * gio/src/asyncresult.hg: * gio/src/cancellable.hg: * gio/src/fileattribute.hg: * gio/src/fileenumerator.hg: * gio/src/fileinputstream.hg: * gio/src/fileoutputstream.hg: * gio/src/icon.hg: * gio/src/inputstream.hg: * gio/src/mountoperation.hg: * gio/src/outputstream.hg: * gio/src/simpleasyncresult.hg: Made some whitespace more consistent with the rest of glibmm. In particular, white space alignment in .hg files will often be even worse when seen in the generated .h files. * gio/src/drive.hg: get_icon(), * gio/src/file.hg: read(), * gio/src/fileicon.hg: get_file(), * gio/src/fileinfo.hg: get_icon(), * gio/src/volume.hg: get_drive(), get_icon(): For the const versions, actually return a const RefPtr. svn path=/trunk/; revision=491
* Added files missing from the import.Marko Anastasov2007-12-281-0/+58
2007-12-28 Marko Anastasov <marko.anastasov@gmail.com> * gio/src/icon.ccg: * gio/src/icon.hg: * gio/src/inputstream.ccg: * gio/src/inputstream.hg: * gio/src/Makefile_list_of_hg.am_fragment: Added files missing from the import. Set svn:ignore properties for gio. svn path=/trunk/; revision=487