1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
|
;; -*- scheme -*-
; boxed definitions ...
; interface definitions ...
(define-interface DesktopEntry
(in-module "DesktopAgnosticFDO")
(c-name "DesktopAgnosticFDODesktopEntry")
(gtype-id "DESKTOP_AGNOSTIC_FDO_TYPE_DESKTOP_ENTRY")
(prerequisite "GObject")
)
; object definitions ...
; pointer definitions ...
;; Enumerations and Flags ...
(define-enum DesktopEntryLaunchFlags
(in-module "DesktopAgnosticFDO")
(c-name "DesktopAgnosticFDODesktopEntryLaunchFlags")
(gtype-id "DESKTOP_AGNOSTIC_FDO_TYPE_DESKTOP_ENTRY_LAUNCH_FLAGS")
(values
'("only-one" "DESKTOP_AGNOSTIC_FDO_DESKTOP_ENTRY_LAUNCH_FLAGS_ONLY_ONE")
'("use-cwd" "DESKTOP_AGNOSTIC_FDO_DESKTOP_ENTRY_LAUNCH_FLAGS_USE_CWD")
'("do-not-reap-child" "DESKTOP_AGNOSTIC_FDO_DESKTOP_ENTRY_LAUNCH_FLAGS_DO_NOT_REAP_CHILD")
)
)
(define-enum DesktopEntryType
(in-module "DesktopAgnosticFDO")
(c-name "DesktopAgnosticFDODesktopEntryType")
(gtype-id "DESKTOP_AGNOSTIC_FDO_TYPE_DESKTOP_ENTRY_TYPE")
(values
'("unknown" "DESKTOP_AGNOSTIC_FDO_DESKTOP_ENTRY_TYPE_UNKNOWN")
'("application" "DESKTOP_AGNOSTIC_FDO_DESKTOP_ENTRY_TYPE_APPLICATION")
'("link" "DESKTOP_AGNOSTIC_FDO_DESKTOP_ENTRY_TYPE_LINK")
'("directory" "DESKTOP_AGNOSTIC_FDO_DESKTOP_ENTRY_TYPE_DIRECTORY")
)
)
;; Untyped enumerations and flags ...
(define-enum DesktopEntryError
(in-module "DesktopAgnosticFDO")
(c-name "DesktopAgnosticFDODesktopEntryError")
(values
'("invalid-file" "DESKTOP_AGNOSTIC_FDO_DESKTOP_ENTRY_ERROR_INVALID_FILE")
'("not-launchable" "DESKTOP_AGNOSTIC_FDO_DESKTOP_ENTRY_ERROR_NOT_LAUNCHABLE")
)
)
;; From fdo.h
(define-function desktop_entry_launch_flags_get_type
(c-name "desktop_agnostic_fdo_desktop_entry_launch_flags_get_type")
(return-type "GType")
)
(define-function desktop_entry_type_get_type
(c-name "desktop_agnostic_fdo_desktop_entry_type_get_type")
(return-type "GType")
)
(define-function desktop_entry_error_quark
(c-name "desktop_agnostic_fdo_desktop_entry_error_quark")
(return-type "GQuark")
)
(define-function desktop_entry_type_to_string
(c-name "desktop_agnostic_fdo_desktop_entry_type_to_string")
(return-type "char*")
(parameters
'("DesktopAgnosticFDODesktopEntryType" "entry_type")
)
)
(define-function desktop_entry_get_type
(c-name "desktop_agnostic_fdo_desktop_entry_get_type")
(return-type "GType")
)
(define-method key_exists
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_key_exists")
(return-type "gboolean")
(parameters
'("const-char*" "key")
)
)
(define-method get_boolean
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_get_boolean")
(return-type "gboolean")
(parameters
'("const-char*" "key")
)
)
(define-method set_boolean
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_set_boolean")
(return-type "none")
(parameters
'("const-char*" "key")
'("gboolean" "value")
)
)
(define-method get_string
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_get_string")
(return-type "char*")
(parameters
'("const-char*" "key")
)
)
(define-method set_string
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_set_string")
(return-type "none")
(parameters
'("const-char*" "key")
'("const-char*" "value")
)
)
(define-method get_localestring
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_get_localestring")
(return-type "char*")
(parameters
'("const-char*" "key")
'("const-char*" "locale" (default "NULL") (null-ok))
)
)
(define-method set_localestring
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_set_localestring")
(return-type "none")
(parameters
'("const-char*" "key")
'("const-char*" "locale")
'("const-char*" "value")
)
)
(define-method exists
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_exists")
(return-type "gboolean")
)
(define-method launch
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_launch")
(return-type "GPid")
(parameters
'("DesktopAgnosticFDODesktopEntryLaunchFlags" "flags")
'("GSList*" "documents")
'("GError**" "error")
)
)
(define-method save
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_save")
(return-type "none")
(parameters
'("DesktopAgnosticVFSFile*" "new_file")
'("GError**" "error")
)
)
(define-method get_file
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_get_file")
(return-type "DesktopAgnosticVFSFile*")
)
(define-method set_file
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_set_file")
(return-type "none")
(parameters
'("DesktopAgnosticVFSFile*" "value")
)
)
(define-method get_keyfile
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_get_keyfile")
(return-type "GKeyFile*")
)
(define-method set_keyfile
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_set_keyfile")
(return-type "none")
(parameters
'("GKeyFile*" "value")
)
)
(define-method set_data
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_set_data")
(return-type "none")
(parameters
'("const-char*" "value")
)
)
(define-method get_entry_type
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_get_entry_type")
(return-type "DesktopAgnosticFDODesktopEntryType")
)
(define-method set_entry_type
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_set_entry_type")
(return-type "none")
(parameters
'("DesktopAgnosticFDODesktopEntryType" "value")
)
)
(define-method get_name
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_get_name")
(return-type "char*")
)
(define-method set_name
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_set_name")
(return-type "none")
(parameters
'("const-char*" "value")
)
)
(define-method get_icon
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_get_icon")
(return-type "char*")
)
(define-method set_icon
(of-object "DesktopAgnosticFDODesktopEntry")
(c-name "desktop_agnostic_fdo_desktop_entry_set_icon")
(return-type "none")
(parameters
'("const-char*" "value")
)
)
(define-function get_type
(c-name "desktop_agnostic_fdo_get_type")
(return-type "GType")
(parameters
'("GError**" "error")
)
)
(define-function desktop_entry_new
(c-name "desktop_agnostic_fdo_desktop_entry_new")
(is-constructor-of "DesktopAgnosticFDODesktopEntry")
(return-type "DesktopAgnosticFDODesktopEntry*")
(parameters
'("GError**" "error")
)
)
(define-function desktop_entry_new_for_file
(c-name "desktop_agnostic_fdo_desktop_entry_new_for_file")
(return-type "DesktopAgnosticFDODesktopEntry*")
(parameters
'("DesktopAgnosticVFSFile*" "file")
'("GError**" "error")
)
)
(define-function desktop_entry_new_for_keyfile
(c-name "desktop_agnostic_fdo_desktop_entry_new_for_keyfile")
(return-type "DesktopAgnosticFDODesktopEntry*")
(parameters
'("GKeyFile*" "keyfile")
'("GError**" "error")
)
)
(define-function desktop_entry_new_for_data
(c-name "desktop_agnostic_fdo_desktop_entry_new_for_data")
(return-type "DesktopAgnosticFDODesktopEntry*")
(parameters
'("const-char*" "data")
'("GError**" "error")
)
)
|